:root {
  --brand-pink: #da0063;
  --brand-pink-deep: #ad004d;
  --soft-pink: #fff0f5;
  --brand-green: #4caf50;
  --soft-green: #f1f8e9;
  --ink: #37474f;
  --paper: #ffffff;
  --pico-font-family: "Inter", sans-serif;
  --pico-color: var(--ink);
  --pico-background-color: #f9fcf6;
  --pico-primary: var(--brand-pink);
  --pico-primary-hover: var(--brand-pink-deep);
  --pico-primary-focus: rgba(218, 0, 99, 0.2);
  --pico-primary-inverse: #ffffff;
  --pico-muted-color: #6a7679;
  --pico-card-background-color: rgba(255, 255, 255, 0.88);
  --pico-card-border-color: rgba(55, 71, 79, 0.08);
  --pico-border-radius: 1.25rem;
  --pico-border-color: rgba(55, 71, 79, 0.12);
  --pico-form-element-spacing-vertical: 0.85rem;
  --pico-form-element-spacing-horizontal: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top left, rgba(218, 0, 99, 0.1), transparent 34%),
    radial-gradient(circle at top right, rgba(76, 175, 80, 0.12), transparent 28%),
    #f9fcf6;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-brand strong,
.hero-kicker,
.section-kicker,
.footer-kicker {
  color: #18272e;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

a {
  color: var(--brand-pink);
}

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

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.25rem;
}

.site-main {
  overflow: clip;
}

.utility-ribbon {
  background: linear-gradient(90deg, rgba(218, 0, 99, 0.95), rgba(173, 0, 77, 0.95));
  color: #fff;
  font-size: 0.85rem;
}

.ribbon-grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  min-height: 2.7rem;
}

.utility-ribbon a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(249, 252, 246, 0.88);
  border-bottom: 1px solid rgba(55, 71, 79, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-shell {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr) auto;
  padding-bottom: 0.9rem;
  padding-top: 0.9rem;
}

.site-brand {
  color: inherit;
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
}

.site-brand__eyebrow {
  color: var(--brand-pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-brand strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.site-brand small {
  color: #617176;
  font-size: 0.88rem;
}

.site-nav ul,
.breadcrumbs ul,
.footer-links,
.sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.site-nav a,
.nav-dropdown summary {
  border-radius: 999px;
  color: #253238;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown summary:hover {
  background: rgba(218, 0, 99, 0.1);
  color: var(--brand-pink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown__menu {
  background: #fff;
  border: 1px solid rgba(55, 71, 79, 0.08);
  border-radius: 1rem;
  box-shadow: 0 18px 48px rgba(22, 39, 46, 0.14);
  margin-top: 0.6rem;
  min-width: 12rem;
  padding: 0.5rem;
  position: absolute;
}

.header-cta,
.primary-link,
.secondary-link {
  border-radius: 999px;
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
}

.header-cta,
.primary-link {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  box-shadow: 0 16px 30px rgba(218, 0, 99, 0.18);
  color: #fff;
}

.secondary-link {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(55, 71, 79, 0.12);
  color: #1f3137;
}

.hero-section {
  min-height: 42rem;
  overflow: hidden;
  position: relative;
}

.hero-backdrop {
  inset: 0;
  position: absolute;
}

.hero-backdrop::after {
  background: linear-gradient(90deg, rgba(249, 252, 246, 0.95) 15%, rgba(249, 252, 246, 0.7) 44%, rgba(249, 252, 246, 0.16) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  min-height: 42rem;
  padding-bottom: 4rem;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-kicker,
.footer-kicker {
  color: var(--brand-pink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.hero-lead,
.page-lead {
  color: #4c5e64;
  font-size: 1.08rem;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-card,
.mini-card,
.story-card,
.info-card,
.sidebar-card,
.prose-card,
.article-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(55, 71, 79, 0.08);
  border-radius: 1.6rem;
  box-shadow: 0 24px 54px rgba(25, 39, 46, 0.08);
}

.hero-card {
  overflow: hidden;
}

.hero-card__media img,
.feature-card__visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-card__body,
.mini-card,
.story-card,
.info-card,
.sidebar-card,
.prose-card,
.article-card__body {
  padding: 1.5rem;
}

.hero-card__body h2,
.feature-card__copy h2,
.section-heading h2,
.info-card h2 {
  margin-top: 0;
}

.hero-card__hours {
  background: var(--soft-green);
  border-radius: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.section-shell {
  padding: 4.75rem 0;
}

.section-shell--soft {
  background: linear-gradient(180deg, rgba(255, 240, 245, 0.76), rgba(255, 255, 255, 0));
}

.section-shell--mint {
  background: linear-gradient(180deg, rgba(241, 248, 233, 0.85), rgba(255, 255, 255, 0.4));
}

.section-shell--blush {
  background: linear-gradient(180deg, rgba(255, 240, 245, 0.9), rgba(255, 240, 245, 0.66));
}

.split-layout,
.feature-layout,
.info-grid,
.closing-grid {
  display: grid;
  gap: 1.5rem;
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.copy-panel {
  align-self: start;
}

.copy-panel .content-list {
  columns: 2;
  gap: 1.25rem;
}

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

.promo-band {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin-bottom: 1.5rem;
}

.promo-band__content,
.promo-band__sidebar {
  display: grid;
  gap: 1rem;
}

.story-grid,
.dual-gallery,
.info-grid,
.closing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-layout {
  gap: 1.5rem;
}

.feature-card {
  align-items: stretch;
  background: linear-gradient(135deg, rgba(241, 248, 233, 0.9), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(76, 175, 80, 0.16);
  border-radius: 2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  overflow: hidden;
}

.feature-card__copy {
  padding: 2rem;
}

.story-card--accent {
  background: linear-gradient(180deg, rgba(218, 0, 99, 0.07), rgba(255, 255, 255, 0.95));
}

.story-card--visual {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.gallery-grid__item {
  background: #fff;
  border: 1px solid rgba(55, 71, 79, 0.08);
  border-radius: 1.15rem;
  margin: 0;
  overflow: hidden;
}

.gallery-grid__item img,
.media-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.content-list {
  color: #203038;
  padding-left: 1.2rem;
}

.rich-paragraph,
.content-list li,
.article-card p,
.footer-shell p {
  color: #42535a;
}

.inline-link {
  color: var(--brand-pink);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.info-card {
  min-height: 100%;
}

.info-card--contact {
  background: linear-gradient(180deg, rgba(255, 240, 245, 0.96), rgba(255, 255, 255, 0.94));
}

.article-layout {
  margin-bottom: 4rem;
}

.article-layout--with-aside {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) 18rem;
}

.toc-side {
  align-self: start;
  position: sticky;
  top: 7rem;
}

.toc-mobile {
  display: none;
  margin-bottom: 1rem;
}

.page-hero {
  padding-bottom: 2rem;
  padding-top: 3rem;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.meta-row {
  color: #6a7679;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-main-image {
  float: right;
  margin: 0 0 1rem 1rem;
  max-width: min(32%, 18rem);
}

.category-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

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

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

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

.article-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.breadcrumbs ul {
  color: #6a7679;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
  color: #9aa6aa;
  content: "/";
  margin-left: 0.5rem;
}

.site-footer {
  background: #1f2e35;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  padding: 3.5rem 0;
}

.site-footer h2,
.site-footer h3,
.site-footer a,
.site-footer .footer-kicker {
  color: #fff;
}

.footer-shell {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.75fr));
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.footer-links li + li {
  margin-top: 0.6rem;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .header-shell,
  .hero-layout,
  .split-layout,
  .promo-band,
  .feature-card,
  .footer-shell,
  .article-layout--with-aside {
    grid-template-columns: 1fr;
  }

  .site-nav ul {
    justify-content: flex-start;
  }

  .header-cta {
    justify-self: start;
  }

  .story-grid,
  .dual-gallery,
  .info-grid,
  .closing-grid,
  .category-grid--2,
  .category-grid--3,
  .category-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toc-side {
    display: none;
  }

  .toc-mobile {
    display: block;
  }
}

@media (max-width: 720px) {
  .ribbon-grid,
  .header-shell {
    gap: 0.8rem;
  }

  .hero-layout {
    min-height: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .copy-panel .content-list {
    columns: 1;
  }

  .story-grid,
  .dual-gallery,
  .info-grid,
  .closing-grid,
  .category-grid--2,
  .category-grid--3,
  .category-grid--4 {
    grid-template-columns: 1fr;
  }

  .article-main-image {
    float: none;
    margin: 0 0 1rem;
    max-width: 100%;
  }
}

@media print {
  .utility-ribbon,
  .site-header,
  .site-footer,
  .hero-actions {
    display: none !important;
  }

  body {
    background: #ffffff;
  }
}
