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

:root {
  --burgundy:    #7B2431;
  --burgundy-deep: #5A1A25;
  --blush:       #F2D0D9;
  --blush-light: #FDF0F3;
  --cream:       #FDF8F7;
  --neutral:     #1A1A1A;
  --neutral-mid: #3D3D3D;
  --neutral-light: #F5F0EF;
  --white:       #FFFFFF;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--neutral);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--burgundy); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 9999; font-weight: 500;
}
.skip-link:focus { top: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--burgundy);
}
.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-mid);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--neutral);
  border: 1.5px solid var(--neutral);
}
.btn-ghost:hover { background: var(--neutral); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-accent {
  background: var(--white);
  color: var(--burgundy);
  font-weight: 600;
}
.btn-accent:hover { background: var(--blush); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 248, 247, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,36,49,.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral);
}
.logo-text em {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--neutral-mid);
}

/* Nav */
.nav-menu {
  display: flex; align-items: center; gap: 32px;
}
.nav-menu a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--neutral-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--burgundy); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  align-items: center; justify-content: center;
}
.hamburger {
  width: 20px; height: 14px;
  position: relative;
  display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--neutral);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { top: 12px; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 6px; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(242,208,217,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123,36,49,.06) 0%, transparent 50%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  flex: 1;
}
.hero-content { padding-right: 16px; }
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--burgundy);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--neutral);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--neutral-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
}
.stat-label {
  font-size: .8rem;
  color: var(--neutral-mid);
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(123,36,49,.2);
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-img-primary {
  width: 100%;
  aspect-ratio: 560/720;
}
.hero-img-primary img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-secondary {
  position: absolute;
  bottom: -40px; left: -60px;
  width: 55%;
  aspect-ratio: 400/300;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent {
  position: absolute;
  top: -24px; right: -24px;
  width: 120px; height: 120px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .15;
}

/* Hero Band */
.hero-band {
  height: 6px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--blush) 50%, var(--burgundy) 100%);
}

/* ── Services ───────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,36,49,.1);
  background: var(--white);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--blush-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--burgundy);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--burgundy); color: var(--white); }
.service-icon svg { width: 28px; height: 28px; }
.service-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--neutral);
}
.service-desc {
  font-size: .95rem;
  color: var(--neutral-mid);
  line-height: 1.7;
}

/* ── About ──────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/700;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -32px; right: -32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
  aspect-ratio: 280/200;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 4px;
}
.about-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .badge-text {
  font-size: .75rem;
  line-height: 1.4;
  opacity: .9;
}
.about-content { max-width: 500px; }
.about-text {
  font-size: 1.05rem;
  color: var(--neutral-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.value-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--neutral);
}
.value-check {
  width: 24px; height: 24px;
  background: var(--blush-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.about-content .btn { margin-top: 8px; }

/* ── Gallery ────────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item--tall { grid-column: span 4; }
.gallery-item:not(.gallery-item--tall) { grid-column: span 4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: var(--burgundy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(242,208,217,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(0,0,0,.2) 0%, transparent 60%);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.1rem;
  opacity: .85;
  line-height: 1.7;
  max-width: 440px;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
}

/* ── Visit ──────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; }
.visit-address {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 28px 0;
  color: var(--neutral-mid);
}
.visit-address strong { color: var(--neutral); font-size: 1.2rem; }
.visit-contact { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.visit-link {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral);
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(123,36,49,.1);
  transition: var(--transition);
}
.visit-link:hover { border-color: var(--burgundy); color: var(--burgundy); transform: translateX(4px); }
.visit-link svg { color: var(--burgundy); flex-shrink: 0; }
.hours-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--neutral);
}
.hours-note {
  font-size: .9rem;
  color: var(--neutral-mid);
  font-style: italic;
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--neutral);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-mark { background: var(--blush); color: var(--burgundy); }
.footer-tagline {
  margin-top: 16px;
  font-size: .95rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: .9rem; line-height: 1.7; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .8rem;
  opacity: .6;
}

/* ── Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .hero-content { padding-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall,
  .gallery-item:not(.gallery-item--tall) { grid-column: span 6; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { justify-content: flex-start; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(253,248,247,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .hero-grid { padding-top: 24px; }
  .hero-img-secondary { left: -16px; bottom: -24px; width: 50%; }
  .hero-stats { gap: 16px; }
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { padding: 72px 0; }
  .gallery-item--tall,
  .gallery-item:not(.gallery-item--tall) { grid-column: span 12; }
  .about { padding: 72px 0; }
  .about-img-float { right: -16px; bottom: -16px; }
  .about-badge { top: -12px; left: -12px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-img-secondary { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
}
