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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --blush: #F2D9D4;
  --blush-light: #FAF0EE;
  --cream: #FDF8F7;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --line: rgba(123, 45, 59, 0.12);
  --line-strong: rgba(123, 45, 59, 0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.85rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(123, 45, 59, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--burgundy); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-line {
  width: 22px;
  height: 1px;
  background: var(--text-dark);
  transition: all 0.3s var(--ease);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--burgundy);
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: color 0.3s;
}

.mobile-menu-link:hover { color: var(--burgundy); }

.mobile-menu-cta {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: 14px 28px;
  border-radius: 100px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  padding-bottom: 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hero-headline-accent {
  font-style: italic;
  color: var(--burgundy);
}

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.hero-trust-dot { color: var(--blush); }

/* Hero images */
.hero-image-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-img {
  overflow: hidden;
  border-radius: 12px;
}

.hero-img--main {
  aspect-ratio: 3/4;
}

.hero-img--accent {
  aspect-ratio: 4/5;
  margin-top: -80px;
  margin-left: 40px;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-img:hover img { transform: scale(1.03); }

.hero-line {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 1px;
  background: var(--line);
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.service-card:hover {
  background: var(--blush-light);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--burgundy);
  display: block;
  margin-bottom: 16px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

.about-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 8/10;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img:hover img { transform: scale(1.03); }

.about-content .section-title { margin-bottom: 24px; }

.about-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.about-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--line-strong);
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-header {
  margin-bottom: 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 3; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* ── VISIT ── */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .section-title { margin-bottom: 40px; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--burgundy);
}

.visit-detail-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.visit-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.visit-detail-value a {
  color: var(--burgundy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.visit-detail-value a:hover { border-bottom-color: var(--burgundy); }

.visit-map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.08);
}

/* ── FOOTER ── */
.footer {
  padding: 64px 0 40px;
  background: var(--burgundy);
  color: var(--white);
}

.footer-top {
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .nav-logo-mark {
  background: rgba(255,255,255,0.15);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-bottom a {
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--white); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 3; }
  .gallery-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 3 / 7; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 1 / 4; grid-row: 3; }
  .gallery-item:nth-child(6) { grid-column: 4 / 7; grid-row: 3; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-content { max-width: 100%; }

  .hero-image-col {
    flex-direction: row;
    gap: 12px;
  }

  .hero-img--main { flex: 1; aspect-ratio: 3/4; }
  .hero-img--accent {
    margin-top: 0;
    margin-left: 0;
    flex: 1;
    aspect-ratio: 3/4;
    box-shadow: none;
  }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 4/3; }

  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 3/4; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1; }
  .gallery-item:nth-child(5) { grid-column: 2; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; aspect-ratio: 16/9; }

  .visit { padding: 80px 0; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-image-col { flex-direction: column; }
  .hero-img--accent { margin-left: 0; }

  .services-grid { border-radius: 12px; }
  .service-card { padding: 28px 24px; }
}
