/* ─────────────────────────────────────────
   Reset & Custom Properties
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:      #1c1c1c;
  --charcoal-mid:  #252525;
  --rose:          #c9a0a0;
  --rose-light:    #e8d5d5;
  --rose-pale:     #f7f0f0;
  --offwhite:      #f4f0ed;
  --cream:         #faf8f6;
  --text:          #222222;
  --text-muted:    #7a6e6e;
  --white:         #ffffff;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --ease: .25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

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

/* ─────────────────────────────────────────
   Utilities
───────────────────────────────────────── */
.container {
  width: min(90%, 1120px);
  margin-inline: auto;
}

.section { padding: 7rem 0; }

em {
  font-style: italic;
  color: var(--rose);
}

/* ─────────────────────────────────────────
   Typography
───────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.12;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); color: var(--offwhite); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--text); }
h3 { font-size: 1.2rem; color: var(--text); }

h2.light, .section-header h2.light { color: var(--offwhite); }

.section-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.section-eyebrow.light { color: var(--rose-light); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: .6rem;
}

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: #b48888;
  border-color: #b48888;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,160,160,.3);
}

.btn-ghost {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(244,240,237,.3);
}
.btn-ghost:hover {
  border-color: var(--offwhite);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
}

.btn-lg { padding: .95rem 2.4rem; font-size: .82rem; }

/* ─────────────────────────────────────────
   Header — Anniversary Bar + Nav
───────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(28,28,28,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.anniversary-bar {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: .45rem 1rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 160px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--ease);
}
.logo:hover .logo-img { opacity: .75; }

.footer-logo-img {
  height: 120px;
  opacity: .6;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,240,237,.65);
  text-decoration: none;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--rose-light); }

.nav-cta {
  color: var(--rose-light) !important;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rose);
}
.nav-cta:hover {
  color: var(--white) !important;
  border-color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: all .3s;
}

/* ─────────────────────────────────────────
   Hero
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  /* push content below the fixed header (bar ~28px + nav ~72px) */
  padding-top: 100px;
}

/* Big decorative "40" watermark */
.hero-bg-num {
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-family: var(--ff-serif);
  font-size: clamp(14rem, 28vw, 22rem);
  font-weight: 700;
  color: rgba(201,160,160,.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Soft rose glow top-left */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(201,160,160,.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 6rem;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2rem;
}

.hero-content h1 { margin-bottom: 1.75rem; }

.hero-sub {
  color: rgba(244,240,237,.55);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,160,160,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: translateX(-50%) scaleY(.6); }
  50%       { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* ─────────────────────────────────────────
   Milestone — 40 Years
───────────────────────────────────────── */
.milestone {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 5.5rem 0;
}

.milestone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.milestone-left .section-eyebrow { color: var(--rose-light); }

.milestone-left h2 {
  color: var(--offwhite);
  margin-bottom: 1.25rem;
}

.milestone-left p {
  color: rgba(244,240,237,.5);
  font-size: .95rem;
  line-height: 1.85;
  max-width: 420px;
}

.milestone-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 4rem;
}

.mstat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mstat:first-child { padding-top: 0; }
.mstat:last-child { border-bottom: none; padding-bottom: 0; }

.mstat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  color: var(--rose-light);
  line-height: 1;
}

.mstat-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244,240,237,.35);
}

/* ─────────────────────────────────────────
   Pillars
───────────────────────────────────────── */
.pillars {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,160,160,.04); }

.pillar-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: .85rem;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.pillar h3 {
  color: var(--offwhite);
  margin-bottom: .75rem;
}

.pillar p {
  color: rgba(244,240,237,.5);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.pillar-link {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none;
  transition: color var(--ease);
}
.pillar-link:hover { color: var(--rose-light); }

/* ─────────────────────────────────────────
   About
───────────────────────────────────────── */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--charcoal);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: var(--shadow-lg);
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  color: var(--rose-light);
  line-height: 1;
}

.stat-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,240,237,.4);
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}

.badge {
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border: 1px solid var(--rose-light);
  color: var(--text-muted);
  border-radius: 100px;
  background: var(--white);
}

/* ─────────────────────────────────────────
   Services
───────────────────────────────────────── */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rose-light);
  border: 1px solid var(--rose-light);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background var(--ease);
}
.service-card:hover { background: var(--rose-pale); }

.service-num {
  font-family: var(--ff-serif);
  font-size: .8rem;
  color: var(--rose);
  margin-bottom: 1.25rem;
  display: block;
  letter-spacing: .05em;
}

.service-card h3 { margin-bottom: .55rem; font-size: 1.05rem; }
.service-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   Photo Break
───────────────────────────────────────── */
.photo-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.photo-break-img {
  overflow: hidden;
}

.photo-break-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo-break-img:hover img { transform: scale(1.03); }

.photo-break-text {
  background: var(--charcoal-mid);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.photo-break-text .section-eyebrow { color: var(--rose-light); }
.photo-break-text h2 { color: var(--offwhite); }
.photo-break-text p { color: rgba(244,240,237,.55); font-size: .95rem; line-height: 1.85; }

/* ─────────────────────────────────────────
   Testimonials
───────────────────────────────────────── */
.testimonials { background: var(--charcoal); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-wide {
  display: flex;
  justify-content: center;
}

.testimonial-wide .testimonial-card {
  max-width: 660px;
  text-align: center;
}

.testimonial-card {
  border: 1px solid rgba(201,160,160,.18);
  padding: 2.25rem 2rem;
  transition: border-color var(--ease), background var(--ease);
}
.testimonial-card:hover {
  border-color: rgba(201,160,160,.5);
  background: rgba(201,160,160,.04);
}
.testimonial-card.featured {
  border-color: var(--rose);
  background: rgba(201,160,160,.06);
}

.stars {
  color: var(--rose);
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
  display: block;
}

.testimonial-card p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244,240,237,.7);
  margin-bottom: 1.5rem;
}

.reviewer {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rose-light);
  border: 1px solid var(--rose-light);
}

.faq-item {
  background: var(--white);
  padding: 2rem 2rem;
  transition: background var(--ease);
}
.faq-item:hover { background: var(--rose-pale); }

.faq-item summary {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--ff-sans);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Hours & Location
───────────────────────────────────────── */
.hours { background: var(--offwhite); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.hours-text h2 { margin-bottom: 1.25rem; }

.hours-address {
  font-style: normal;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.95;
  margin-bottom: 2rem;
}
.hours-address a {
  color: var(--rose);
  text-decoration: none;
}
.hours-address a:hover { text-decoration: underline; }

.hours-card {
  background: var(--white);
  border: 1px solid var(--rose-light);
  padding: 2.5rem;
}

.hours-list { list-style: none; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid var(--rose-pale);
  font-size: .9rem;
  gap: 1rem;
}
.hours-list li:first-child { border-top: 1px solid var(--rose-pale); }

.hours-list .day { color: var(--text); font-weight: 500; }
.hours-list .time { color: var(--rose); }
.hours-list .closed .day,
.hours-list .closed .time { color: var(--text-muted); font-weight: 300; }

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,160,160,.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.cta-section h2 { color: var(--offwhite); margin-bottom: 1.1rem; }
.cta-section > .cta-inner > p {
  color: rgba(244,240,237,.5);
  margin-bottom: 2.75rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.footer {
  background: #111;
  padding: 4rem 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 280px;
}

.footer-brand .logo { display: block; }

.footer-address {
  font-style: normal;
  font-size: .82rem;
  line-height: 2;
  color: rgba(244,240,237,.4);
}
.footer-address strong { color: rgba(244,240,237,.65); }
.footer-address a {
  color: var(--rose);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-address a:hover { color: var(--rose-light); }

.footer-tagline {
  font-size: .72rem;
  line-height: 1.9;
  color: rgba(244,240,237,.25);
}

.footer-nav {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col-heading {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,240,237,.5);
  margin-bottom: .5rem;
}

.footer-col a {
  color: rgba(244,240,237,.3);
  text-decoration: none;
  font-size: .8rem;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--rose-light); }

.footer-bottom {
  padding: 1.25rem 0;
  font-size: .68rem;
  color: rgba(244,240,237,.15);
  text-align: center;
}

/* ─────────────────────────────────────────
   Scroll Animations
───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   Responsive — Tablet
───────────────────────────────────────── */
@media (max-width: 960px) {
  .milestone-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .milestone-right {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-left: 0;
    padding-top: 2.5rem;
    gap: 2rem;
  }
  .mstat { padding: 0; border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap { max-width: 400px; }
  .about-stat-card { right: 0; }

  .photo-break { grid-template-columns: 1fr; }
  .photo-break-img { aspect-ratio: 4/3; }
  .photo-break-text { padding: 4rem 3rem; }

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

  .footer-nav { gap: 2.5rem; }

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

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

  .hours-grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .pillar:last-child { border-bottom: none; }
}

/* ─────────────────────────────────────────
   Responsive — Mobile
───────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .milestone { padding: 3.5rem 0; }

  h1 { font-size: 2.6rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(28,28,28,.98);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions  { flex-direction: column; align-items: center; }

  .milestone-right { flex-direction: column; gap: 1.5rem; }

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

  .footer-inner { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 2rem; }
  .footer-brand { max-width: 100%; }
}
