:root {
  --pink: #ffb4e5;
  --hot-pink: #ff2ab4;
  --blush: #fff2fb;
  --ink: #211521;
  --muted: #6f5670;
  --line: rgba(255, 42, 180, 0.24);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(255, 42, 180, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 246, 253, 0.9)),
    url("../images/anjelacaitlinbg2.jpg") center / 520px repeat;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem max(1rem, 4vw);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(255, 42, 180, 0.18);
}

.brand span {
  overflow-wrap: anywhere;
  font-size: 1.1rem;
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav {
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--hot-pink);
}

.hero {
  min-height: min(64vh, 560px);
  display: grid;
  place-items: center;
  padding: 4rem 1rem;
  background:
    linear-gradient(rgba(255, 180, 229, 0.2), rgba(255, 255, 255, 0.42)),
    url("../images/anjelacaitlinbg1.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(980px, calc(100vw - 2rem));
  text-align: center;
}

.hero-logo {
  width: min(360px, 80vw);
  max-height: 260px;
  margin: 0 auto 0.85rem;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(255, 42, 180, 0.2));
}

.page-hero {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
  text-align: center;
}

.page-hero h1,
.hero h1 {
  margin-bottom: 1rem;
  font-size: 4.15rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero p,
.hero-copy {
  width: min(100%, 620px);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: #4f354f;
  font-size: 1.18rem;
  font-weight: 650;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--hot-pink);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
}

.actions {
  justify-content: center;
}

.card-actions {
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border: 2px solid var(--hot-pink);
  border-radius: 32px;
  background: var(--hot-pink);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 42, 180, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--hot-pink);
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-header h2 {
  margin-bottom: 0;
  font-size: 2.75rem;
  line-height: 1;
}

.section-header p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.feature-grid,
.link-grid,
.portfolio-grid,
.catalogue-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}

.category-nav a,
.item-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--hot-pink);
  font-size: 0.82rem;
  font-weight: 900;
}

.category-nav a {
  padding: 0.45rem 0.75rem;
}

.feature-card,
.info-card,
.catalogue-card,
.portfolio-card,
.contact-panel,
.contact-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 168px;
  display: grid;
  align-content: end;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.24), rgba(255, 42, 180, 0.2)),
    var(--tile);
  background-size: cover;
  background-position: center;
  opacity: 0.82;
}

.feature-shop {
  --tile: url("../images/anjelacaitlinbg1.jpg");
}

.feature-links {
  --tile: url("../images/anjelacaitlinbg2.jpg");
}

.feature-portfolio {
  --tile: url("../images/IMG_9765.jpg");
}

.feature-contact {
  --tile: url("../images/ACFlower.png");
}

.feature-card h3,
.feature-card p {
  position: relative;
  margin-bottom: 0;
}

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 900;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.info-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.15rem;
}

.info-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 242, 251, 0.94)),
    url("../images/anjelacaitlinbg1.jpg") center / cover no-repeat;
}

.info-card h2,
.catalogue-card h2,
.portfolio-card h2,
.contact-detail h2 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.info-card p,
.catalogue-card p,
.portfolio-card p,
.contact-detail p,
.info-list li {
  color: var(--muted);
  font-weight: 650;
}

.info-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-list li {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.info-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.text-link {
  color: var(--hot-pink);
  font-weight: 900;
}

.portfolio-card {
  overflow: hidden;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.catalogue-media {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 180, 229, 0.2)),
    url("../images/anjelacaitlinbg2.jpg") center / cover no-repeat;
}

.catalogue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.catalogue-card:hover .catalogue-media img,
.catalogue-card:focus-within .catalogue-media img {
  transform: scale(1.025);
}

.catalogue-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.catalogue-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 900;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.item-tags span {
  padding: 0.2rem 0.5rem;
}

.status-pill {
  flex: 0 0 auto;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blush);
  color: var(--hot-pink);
  font-size: 0.78rem;
}

.portfolio-card .product-media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter: none;
}

.product-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 180, 229, 0.2)),
    url("../images/anjelacaitlinbg2.jpg") center / cover no-repeat;
}

.product-media img {
  width: 76%;
  border-radius: 16px;
  filter: drop-shadow(0 12px 24px rgba(255, 42, 180, 0.2));
}

.portfolio-card-content {
  padding: 1rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: 2rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 242, 251, 0.92)),
    url("../images/anjelacaitlinbg1.jpg") center / cover no-repeat;
}

.contact-panel h2 {
  margin-bottom: 0.35rem;
  font-size: 2.4rem;
}

.contact-panel p {
  max-width: 560px;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-weight: 650;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-detail {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.fine-print {
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem max(1rem, 4vw);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .feature-grid,
  .link-grid,
  .portfolio-grid,
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card.featured {
    grid-column: span 2;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 0.65rem;
  }

  .brand span {
    font-size: 1rem;
  }

  .page-hero h1,
  .hero h1 {
    font-size: 2.1rem;
  }

  .page-hero p,
  .hero-copy {
    font-size: 1rem;
  }

  .section-header h2,
  .contact-panel h2 {
    font-size: 2rem;
  }
}

@media (max-width: 540px) {
  .feature-grid,
  .link-grid,
  .portfolio-grid,
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .info-card.featured {
    grid-column: auto;
  }

  .actions,
  .contact-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-logo {
    width: min(260px, 72vw);
  }

  .hero-copy {
    width: min(100%, 280px);
    max-width: 280px;
  }

  .hero .actions,
  .contact-panel .actions {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .button {
    width: 100%;
  }
}

/* Live Square catalogue states. The original label remains as a fallback. */
.status-pill[data-state="out-of-stock"] {
  border-color: rgba(80, 65, 80, 0.25);
  background: rgba(245, 241, 245, 0.95);
  color: #665566;
}

.status-pill[data-state="check-square"] {
  border-color: rgba(255, 42, 180, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
}
