:root {
  --pink: #ec4d76;
  --pink-dark: #c9365d;
  --pink-soft: #fde8ee;
  --blush: #fff7f9;
  --cream: #fffdf9;
  --gold: #c9912d;
  --ink: #201a1c;
  --muted: #6e6266;
  --border: #efd9df;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(104, 51, 68, .12);
  --radius: 24px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--white);
  padding: 12px 16px;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 217, 223, .8);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-script {
  font-family: "Pacifico", cursive;
  color: var(--pink);
  font-size: 2rem;
  line-height: 1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: .09em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .96rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover { color: var(--pink-dark); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 9px 14px;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(32,26,28,.72), rgba(32,26,28,.24)),
    url("assets/hero.png") center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,12,.08), rgba(15,10,12,.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 120px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .78rem;
  font-weight: 700;
}

.eyebrow { color: #ffe2e9; }

.hero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

.button-primary {
  background: var(--pink);
  color: var(--white);
}

.button-primary:hover { background: var(--pink-dark); }

.button-secondary {
  background: rgba(255,255,255,.9);
  color: var(--ink);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-badges span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.section { padding: 96px 0; }

.section-soft { background: var(--blush); }

.section-pink {
  background: linear-gradient(180deg, #fff2f6, #fde5ec);
}

.intro { text-align: center; }

.section-kicker { color: var(--pink-dark); }

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 10px 0 18px;
}

h3 { line-height: 1.2; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 38px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.text-link {
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 20px;
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-card-wide { grid-row: 1 / 3; }

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-card-wide img { min-height: 560px; }

.gallery-card figcaption {
  padding: 16px 18px;
  font-weight: 700;
}

.gallery-note {
  margin: 24px auto 0;
  max-width: 780px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}

.pricing-note { color: var(--muted); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(104,51,68,.07);
}

.price-card.featured {
  border: 2px solid var(--pink);
  transform: translateY(-8px);
}

.popular {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--pink);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-size {
  font-weight: 700;
  font-size: 1.1rem;
}

.price {
  margin: 10px 0;
  color: var(--pink-dark);
  font-size: 3rem;
  font-weight: 700;
}

.price-card p:last-child { color: var(--muted); }

.addons {
  margin-top: 52px;
  padding: 34px;
  background: var(--blush);
  border-radius: var(--radius);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.addon-grid > div {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.addon-grid span {
  color: var(--muted);
  font-size: .9rem;
  margin: 6px 0 14px;
}

.addon-grid b {
  color: var(--pink-dark);
  font-size: 1.2rem;
  margin-top: auto;
}

.policy-box {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 5px solid var(--gold);
  background: #fffaf0;
  border-radius: 0 16px 16px 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.steps li {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(239,217,223,.9);
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
}

.steps h3 { margin: 18px 0 8px; }

.steps p { color: var(--muted); }

.center { text-align: center; }

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 20px 34px 20px 0;
  position: relative;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 17px;
  color: var(--pink);
  font-size: 1.5rem;
}

details[open] summary::after { content: "–"; }

details p {
  margin-top: 0;
  color: var(--muted);
}

.contact-section {
  background: #231b1e;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}

.contact-card a,
.contact-card > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-card a:last-child,
.contact-card > div:last-child { border-bottom: 0; }

.contact-card span { color: rgba(255,255,255,.65); }

.site-footer {
  background: #171214;
  color: rgba(255,255,255,.76);
  padding: 36px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand { color: var(--white); }

@media (max-width: 980px) {
  .price-grid,
  .addon-grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .menu-button { display: block; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }

  .hero {
    min-height: 650px;
    background-position: 54% center;
  }

  .hero-content { padding-block: 90px; }

  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-card-wide { grid-row: auto; }

  .gallery-card-wide img,
  .gallery-card img { min-height: 280px; }

  .price-grid,
  .addon-grid,
  .steps { grid-template-columns: 1fr; }

  .price-card.featured { transform: none; }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card a,
  .contact-card > div {
    flex-direction: column;
    gap: 4px;
  }
}


.hero-subhead {
  max-width: 690px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,.94);
  margin: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 600;
  font-size: .92rem;
}

.meet-amy {
  background: var(--white);
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.meet-art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blush);
}

.meet-art img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.meet-copy p {
  color: var(--muted);
}

@media (max-width: 820px) {
  .meet-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .meet-art img {
    min-height: 300px;
  }
}


.availability-bar {
  background: #231b1e;
  color: #fff;
  font-size: .92rem;
}

.availability-bar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.availability-bar span {
  color: rgba(255,255,255,.76);
}

.availability-bar a {
  color: #ffdce5;
  font-weight: 700;
  text-decoration: none;
}


.local-section {
  background: #fffaf3;
}

.local-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: center;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.local-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #eddcc7;
  font-size: .9rem;
  font-weight: 600;
}

.local-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid #eddcc7;
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(112,83,45,.08);
}

.local-card strong {
  display: block;
  font-size: 1.4rem;
}

@media (max-width: 820px) {
  .local-grid {
    grid-template-columns: 1fr;
  }

  .availability-bar .container {
    padding-block: 8px;
  }
}


.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-card figcaption {
  display: grid;
  gap: 3px;
}

.gallery-card figcaption strong {
  font-size: 1rem;
}

.gallery-card figcaption span {
  color: var(--pink-dark);
  font-size: .86rem;
  font-weight: 700;
}

.gallery-lightbox {
  width: min(1100px, calc(100% - 28px));
  max-height: 92vh;
  padding: 18px;
  border: 0;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.gallery-lightbox::backdrop {
  background: rgba(20,14,16,.82);
}

.gallery-lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-lightbox p {
  margin: 12px 42px 0 0;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #231b1e;
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
}
