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

:root {
  --burgundy:    #7B2D3B;
  --burgundy-d:  #5C1F2B;
  --burgundy-l:  #A04052;
  --blush:       #F5D0C5;
  --blush-l:     #FBEEE9;
  --blush-xl:    #FDF6F3;
  --cream:       #FDF9F7;
  --white:       #FFFFFF;
  --text:        #2A1F21;
  --text-mid:    #5C4A4E;
  --text-light:  #8A7076;
  --line:        #E8D6D0;
  --line-l:      #F0E0DA;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Outfit', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(123,45,59,.06);
  --shadow-md:  0 4px 20px rgba(123,45,59,.08);
  --shadow-lg:  0 8px 40px rgba(123,45,59,.12);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--text);
  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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--burgundy); color: var(--white);
  padding: 8px 16px; z-index: 200; font-size: .875rem;
}
.skip-link:focus { left: 0; }

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

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 400; line-height: 1.2; color: var(--text); }

.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 20px;
}

.section-line {
  width: 48px; height: 1px;
  background: var(--burgundy);
  margin-bottom: 32px;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-size: .875rem; font-weight: 400;
  letter-spacing: .04em; padding: 14px 28px;
  border-radius: 100px; transition: var(--transition);
}

.btn-primary {
  background: var(--burgundy); color: var(--white);
  border: 1px solid var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-d); border-color: var(--burgundy-d); }

.btn-ghost {
  background: transparent; color: var(--burgundy);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--burgundy); background: var(--blush-l); }

.btn-white {
  background: var(--white); color: var(--burgundy);
  border: 1px solid var(--white);
}
.btn-white:hover { background: var(--blush-l); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-nav {
  background: var(--burgundy); color: var(--white);
  padding: 10px 22px; border-radius: 100px;
  font-size: .8125rem; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--burgundy-d); }

.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,249,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-l);
  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: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-serif); font-size: 1.375rem;
  font-weight: 500; color: var(--burgundy);
  letter-spacing: -.01em;
}
.logo-icon { color: var(--burgundy); }

.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn-nav) {
  font-size: .875rem; font-weight: 400; color: var(--text-mid);
  letter-spacing: .02em; transition: var(--transition);
  position: relative;
}
.main-nav a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--burgundy);
  transition: var(--transition);
}
.main-nav a:not(.btn-nav):hover { color: var(--burgundy); }
.main-nav a:not(.btn-nav):hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 24px; padding: 4px 0;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 100%; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { top: -5px; }
.hamburger::after  { top: 5px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 60px 0;
}

.hero-content { padding-right: 16px; }

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 24px; color: var(--text);
}
.hero-title .accent {
  font-style: italic;
  color: var(--burgundy);
}

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

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

.hero-details { display: flex; gap: 32px; flex-wrap: wrap; }
.detail-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: var(--text-light);
  letter-spacing: .02em;
}
.detail-item svg { color: var(--burgundy); opacity: .7; }

.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/750;
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent {
  position: absolute; bottom: -24px; left: -24px;
  width: 120px; height: 120px;
  background: var(--blush); border-radius: var(--r-md);
  z-index: -1;
}

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

.section-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.section-header .section-line { margin: 0 auto 32px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line-l);
  border-radius: var(--r-md);
  padding: 40px 32px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  color: var(--burgundy); margin-bottom: 24px; opacity: .85;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.375rem; font-weight: 400;
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9375rem; line-height: 1.7;
  color: var(--text-mid);
}

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

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

.about-image { position: relative; }
.about-img-main {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/640;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -32px; right: -32px;
  width: 240px; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--cream);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 16px;
}

.about-stats {
  display: flex; align-items: center; gap: 24px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 400; color: var(--burgundy);
}
.stat-label { font-size: .8125rem; color: var(--text-light); letter-spacing: .02em; }
.stat-divider { width: 1px; height: 40px; background: var(--line); }

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

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

.gallery-item {
  border-radius: var(--r-sm); overflow: hidden;
  aspect-ratio: 400/300;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── CTA Banner ─────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--burgundy);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-eyebrow {
  font-family: var(--ff-sans);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,.75); margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

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

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

.contact-info .section-title { margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  color: var(--burgundy); flex-shrink: 0;
  margin-top: 2px; opacity: .8;
}
.contact-label {
  display: block; font-size: .75rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.contact-value {
  display: block; font-size: .9375rem; color: var(--text);
  line-height: 1.6;
}
.contact-value:hover { color: var(--burgundy); }

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--line-l);
  border-radius: var(--r-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 400;
  margin-bottom: 28px; color: var(--text);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .8125rem; font-weight: 400;
  color: var(--text-mid); margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--ff-sans); font-size: .9375rem;
  color: var(--text); background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; }

.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 16px;
  background: var(--blush-l); border-radius: var(--r-sm);
  font-size: .875rem; color: var(--burgundy-d);
}
.form-success svg { flex-shrink: 0; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--text); color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo { color: var(--blush); margin-bottom: 16px; }
.footer-brand .logo-icon { color: var(--blush); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.5); }

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blush); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--blush); }
.footer-contact span { font-size: .875rem; color: rgba(255,255,255,.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .8125rem; color: rgba(255,255,255,.35); text-align: center;
}

/* ─── Scroll to Top ──────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--burgundy); color: var(--white);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; z-index: 90;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.scroll-top:hover { background: var(--burgundy-d); transform: translateY(-2px); }
.scroll-top svg { color: var(--white); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253,249,247,.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-l);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0); opacity: 1;
    pointer-events: all;
  }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .main-nav a:not(.btn-nav) { font-size: 1rem; }
  .btn-nav { display: inline-flex; text-align: center; justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; padding: 40px 0 60px; }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image { order: 0; max-width: 400px; margin: 0 auto; }
  .hero-img-wrapper { aspect-ratio: 400/500; }
  .hero-accent { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

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

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { width: 160px; bottom: -20px; right: -16px; }

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

  .cta-banner { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrapper { padding: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 2.125rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── Scroll Reveal (progressive enhancement) ────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
}
