@import url('https://fonts.googleapis.com/css2?family=Canela:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Montserrat:wght@200;300;400;500;600&family=Neue+Haas+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Warm Luxury Color Harmony */
  --luxury-bg: #FAF8F6;
  --noir: #1A1A1A;
  --espresso: #1A1A1A;
  --gold: #D8C7A1;
  --champagne: #D8C7A1;
  --blush: #F0E6E2;
  --bronze: #B09B89;
  --text-light: rgba(26,26,26,0.85);
  --text-mid: rgba(26,26,26,0.8);
  --divider: rgba(216,199,161,0.25);
  --burgundy: #5C0612;
  --burgundy-hover: #40040C;
  --taupe-light: #E5DDD8;

  /* ── Accent Color: Soft Rose-Gold ──
     Used sparingly for CTAs, underlines, and hover states only.
     Complements the warm neutral luxury palette. */
  --accent: #D4A89A;

  /* ── Luxury Typography Design System ──
     Primary Serif: Playfair Display → high-contrast editorial display
     Secondary Serif: Canela        → elegant luxury headings  
     Tertiary Serif: Cormorant      → refined body serif
     Sans:  Neue Haas Grotesk      → premium geometric body
     Sans:  Montserrat             → supporting sans-serif
     Label: Inter                  → refined, clean micro-typography
   */
  --font-main: 'Neue Haas Grotesk', 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-display: 'Playfair Display', 'Canela', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-label: 'Inter', 'Neue Haas Grotesk', sans-serif;

  /* Body */
  --body-size: 1rem;
  --body-leading: 1.7;
  --body-tracking: 0.02em;
  --body-weight: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: var(--body-weight);
  background: var(--luxury-bg);
  color: var(--noir);
  font-size: var(--body-size);
  line-height: var(--body-leading);
  letter-spacing: var(--body-tracking);
  overflow-x: hidden;
  margin-bottom: 120px;
  position: relative;
  
  /* Micro-typography rendering engine */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  
  /* Smooth Page Entrance */
  opacity: 0;
  animation: fadeInPage 1.2s cubic-bezier(0.33, 0, 0.2, 1) forwards;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 1. Grain Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ── Type Scale Tokens ──────────────────────────────────────────
   t-48  →  section headings, service titles, page heroes (inner)
   t-60  →  brand statement, experience headline, CTA headline
   t-72  →  page hero h1 (about, services, portfolio, contact)
   t-96  →  hero h1 on mid-size viewports
   t-120 →  hero h1 at full desktop
   ─────────────────────────────────────────────────────────────── */
:root {
  --t-48: clamp(1.875rem, 4vw, 3rem); /* 30px-48px */
  --t-60: clamp(2.25rem, 5vw, 3.75rem); /* 36px-60px */
  --t-72: clamp(2.625rem, 6vw, 4.5rem); /* 42px-72px */
  --t-96: clamp(3.25rem, 8vw, 5.5rem); /* 52px-88px */
  --t-120: clamp(4rem, 10vw, 6.5rem); /* 64px-104px */

  /* Dior / Tilbury-grade rhythm */
  --head-tracking-serif: -0.02em;
  --head-tracking-sans: 0.15em;
  --head-leading: 1.18;
  --head-leading-loose: 1.4;
}

/* ── 1. Display Serif ── */
h1,
h2,
h3,
h4,
h5,
h6,
.type-luxury-serif {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--head-tracking-serif);
  line-height: var(--head-leading);
  font-style: italic;
  color: var(--noir);
  text-wrap: balance;
}

h1 { font-weight: 600; }
h2 { font-weight: 600; }

/* ── 2. Modern Sans (labels, sub-heads, nav) ── */
h3,
h4,
h5,
.type-modern-sans {
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: var(--head-tracking-sans);
  text-transform: uppercase;
  line-height: 1.5;
  font-style: normal;
  color: var(--noir);
}

/* Body copy */
p {
  max-width: 65ch; /* Optimal 60-70 character line width */
  font-family: var(--font-main);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-tracking);
  line-height: var(--body-leading);
  color: var(--text-light);
  hanging-punctuation: first last; /* Optical margin alignment */
  text-wrap: pretty; /* Prevents typographic widows/orphans on paragraphs */
}

/* ── 3. Weddingday Accent Word ── */
.headline-impact {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.04em;
  /* Aggressive editorial tracking */
  text-transform: none;
}

.headline-script {
  font-family: 'Weddingday', 'Cursive', sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.25em;
  vertical-align: middle;
}

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

/* ── Navbar ── */
/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between; /* maintain logo left and nav centered */
  padding: 1.5rem 6%;
  background: rgba(26, 26, 26, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.8s cubic-bezier(0.33, 0, 0.2, 1), border-color 0.8s, padding 0.6s, backdrop-filter 0.8s, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(-20px);
}
.navbar.is-visible {
  opacity: 1;
  transform: none;
}

.brand-logo {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  /* Expansive brand tracking */
  color: var(--gold);
  text-transform: uppercase;
}

.navbar.scrolled {
  background: rgba(250, 248, 246, 0.85);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--divider);
  padding: 0.8rem 6%;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto; /* center nav while keeping logo left */
}

.navbar nav a {
  font-family: var(--font-main);
  font-size: 0.65rem;
  letter-spacing: 0.45em; /* increased spacing for luxury feel */
  text-transform: uppercase;
  color: rgba(250, 248, 246, 0.85);
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-weight: 400;
  position: relative;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.navbar nav a:hover {
  color: var(--accent);
  letter-spacing: 0.48em;
}

.accessibility-toggle {
  background: transparent;
  border: none;
  color: var(--gold);
  /* Or a contrasting color */
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1.5rem;
  /* Space from logo */
  transition: color 0.3s ease;
}

.accessibility-toggle:hover {
  color: var(--accent);
}

/* Duplicate hover rule removed - original hover styling defined earlier */

.navbar.scrolled nav a {
  color: var(--noir);
  text-shadow: none;
}

/* 4. Nav Underline Animation */
.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar nav a:hover::after {
  width: 100%;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em; /* Increased tracking for luxury feel */
  text-transform: uppercase;
  background: var(--noir);
  border: 1px solid rgba(216, 199, 161, 0.4); /* Thin luxury border */
  color: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.33, 0, 0.2, 1),
              border-color 0.4s cubic-bezier(0.33, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.33, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.33, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Elegant button hover – subtle lift and accent glow */
.btn:hover {
  background: #000000;
  border-color: var(--accent); /* Elegant accent border on hover */
  transform: translateY(-4px); /* Elegant lift */
  box-shadow: 0 12px 30px rgba(212, 168, 154, 0.25);
}

/* Snappy active state */
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(212, 168, 154, 0.15);
  background: #111111;
  transition: all 0.1s ease;
}

/* ── Reserve a Session CTA (Luxury Variant) ── */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.5rem;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 400; /* Softer, highly editorial weight */
  letter-spacing: 1px; /* Exact +1px tracking */
  text-transform: uppercase;
  background: transparent;
  color: var(--noir);
  border: 1px solid rgba(26, 26, 26, 0.2); /* Ultra-thin, delicate border */
  border-radius: 0; /* Sharp, high-fashion edge */
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: none;
}

.btn-reserve:hover {
  background: var(--noir);
  color: #FFFFFF;
  border-color: var(--noir);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26, 26, 26, 0.15);
}

.btn-reserve:active {
  transform: translateY(0);
  background: #000000;
  transition: all 0.1s ease;
}

/* Sticky Reserve button */
.sticky-reserve {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  border-radius: 8px;
  background: var(--accent);
  color: var(--noir);
  box-shadow: 0 8px 20px rgba(212,168,154,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sticky-reserve:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,168,154,0.35);
}

/* Modal overlay */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,26,0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 2000;
}
.modal.hidden {
  visibility: hidden;
  opacity: 0;
}
.modal:not(.hidden) {
  visibility: visible;
  opacity: 1;
}
.modal-content {
  background: var(--luxury-bg);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--noir);
  cursor: pointer;
}
.modal-title {
  font-family: var(--font-display);
  font-size: var(--t-48);
  margin-bottom: 1.5rem;
  color: var(--espresso);
  text-align: center;
}
.booking-steps .step {
  margin-bottom: 1.5rem;
}
.booking-steps h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--noir);
}
.booking-steps select,
.booking-steps input,
.booking-steps textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-top: 0.4rem;
  border: 1px solid var(--taupe-light);
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
}
.booking-steps textarea {
  resize: vertical;
  height: 80px;
}
.booking-steps button[type="submit"] {
  width: 100%;
  margin-top: 0.8rem;
}

/* Preserve existing button outlines */
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--noir); }
.btn-outline:hover { background: rgba(212,168,154,0.08); transform: translateY(-4px) scale(1.03); box-shadow: 0 0 15px rgba(212,168,154,0.3); }

/* Additional button styles retained */
.btn-burgundy { background: var(--burgundy); border: 1px solid var(--burgundy); color: white; }
.btn-burgundy:hover { background: var(--burgundy-hover); border-color: var(--burgundy-hover); box-shadow: 0 0 20px rgba(92,6,18,0.4); }



/* ── Hero ── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #2A241F;
  /* Warm espresso base */
  z-index: 0;
}

@keyframes kenBurns {
  10 {
    transform: scale(0.95);
  }

  100% {
    transform: scale(0.95);
  }
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.6;
  display: block;
  animation: kenBurns 25s ease-in-out infinite alternate;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
}

/* Hero overlay for cinematic vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31, 26, 20, 0.2), transparent 40%),
    linear-gradient(to right, rgba(31, 26, 20, 0.8) 25%, transparent 100%);
}

@keyframes editorialFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    /* Soft editorial sweep */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textShimmer {
  0% {
    background-position: -142% 0;
  }

  100% {
    background-position: -142% 0;
  }
}

/* t-120 — the largest, most editorial moment on the site */
.hero-content h1 {
  font-size: clamp(1.875rem, 5.5vw, 4.5rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--champagne);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: editorialFadeUp 1s cubic-bezier(0.33, 0, 0.2, 1) 0.2s forwards;
}

/* High-impact hero variant - Editorial Italic Serif */
.hero-content h1.headline-impact {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 6%;
  max-width: 800px;
}

.hero-content p {
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 2.8rem;
  max-width: 480px;
  line-height: 1.9;
  opacity: 0;
  animation: editorialFadeUp 1s cubic-bezier(0.33, 0, 0.2, 1) 0.4s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: editorialFadeUp 1s cubic-bezier(0.33, 0, 0.2, 1) 0.6s forwards;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ── Brand Statement ── */
.brand-statement {
  background: #F7F4F2;
  /* Warm champagne/nude tint */
  color: var(--noir);
  padding: 16rem 10%;
  /* Expansive, minimal spacing */
  text-align: center;
}

.brand-statement h2 {
  font-size: var(--t-72);
  /* Oversized editorial scale */
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.35;
  /* Generous line-height for luxury feel */
  color: var(--espresso);
  max-width: 960px;
  margin: 0 auto 2rem;
}

.brand-statement p {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  /* Premium wide tracking for labels */
  text-transform: uppercase;
  color: var(--bronze);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Section Base ── */
.section {
  padding: 12rem 6%;
  max-width: 1200px;
  margin: 0 auto 10rem;
  position: relative;
}

/* ── Editorial Reveal System ── */
.section-label,
.section-title h2,
.section-title p,
.brand-statement h2,
.brand-statement p,
.service-card,
.experience-section h2,
.experience-section p,
.pillar,
.gallery-card,
.testimonial-card,
.carousel-wrap,
.cta-section h2,
.cta-section p,
.cta-section .btn,
.cta-section .social-bar,
.footer-brand,
footer nav,
.footer-copy {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* Faster transitions for hover interactions after the initial reveal */
.service-card:hover,
.gallery-card:hover,
.btn:hover,
.social-icon:hover {
  transition: transform 180ms cubic-bezier(0.33, 0, 0.2, 1), box-shadow 180ms ease;
}

.is-visible .section-label,
.is-visible .section-title h2,
.is-visible .section-title p,
.brand-statement.is-visible h2,
.brand-statement.is-visible p,
.experience-section.is-visible h2,
.experience-section.is-visible p,
.is-visible .pillar,
.is-visible .service-card,
.is-visible .gallery-card,
.is-visible .testimonial-card,
.is-visible .carousel-wrap,
.cta-section.is-visible h2,
.cta-section.is-visible p,
.cta-section.is-visible .btn,
.cta-section.is-visible .social-bar,
footer.is-visible .footer-brand,
footer.is-visible nav,
footer.is-visible .footer-copy {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal Stagger Delays */
.is-visible .section-label,
.brand-statement.is-visible h2,
.cta-section.is-visible h2 {
  transition-delay: 0s;
}

.is-visible .section-title h2,
.brand-statement.is-visible p,
.cta-section.is-visible p {
  transition-delay: 150ms;
}

.is-visible .section-title p {
  transition-delay: 300ms;
}

.is-visible .service-card:nth-child(1),
.is-visible .gallery-card:nth-child(1) {
  transition-delay: 300ms;
}

.is-visible .service-card:nth-child(2),
.is-visible .gallery-card:nth-child(2) {
  transition-delay: 450ms;
}

.is-visible .service-card:nth-child(3),
.is-visible .gallery-card:nth-child(3) {
  transition-delay: 600ms;
}

.is-visible .service-card:nth-child(4) {
  transition-delay: 750ms;
}

.is-visible .service-card:nth-child(5) {
  transition-delay: 900ms;
}

.experience-section.is-visible .pillar:nth-child(1) {
  transition-delay: 450ms;
}

.experience-section.is-visible .pillar:nth-child(2) {
  transition-delay: 600ms;
}

.experience-section.is-visible .pillar:nth-child(3) {
  transition-delay: 750ms;
}

.cta-section.is-visible .btn {
  transition-delay: 300ms;
}

.cta-section.is-visible .social-bar {
  transition-delay: 450ms;
}

footer.is-visible .footer-brand {
  transition-delay: 150ms;
}

footer.is-visible nav {
  transition-delay: 300ms;
}

footer.is-visible .footer-copy {
  transition-delay: 450ms;
}

.section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.section-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 5rem;
}

/* t-48 — section headings: upright, slightly bold, wide tracking */
.section-title h2 {
  font-size: var(--t-48);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: var(--head-leading-loose);
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── Services ── */
.services-section {
  background: var(--noir);
  padding: 10rem 6%;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 5rem 3.5rem;
  background: var(--blush);
  border: 1px solid var(--taupe-light);
  transition: all 180ms cubic-bezier(0.33, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
}

.glass {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(240, 230, 226, 0.4) !important;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--noir);
  line-height: 1.8;
}

.service-card.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(to bottom right, var(--luxury-bg), var(--blush));
}

.service-card.featured .section-label {
  font-size: 0.55rem;
  margin-bottom: 0.5rem;
}

/* ── Premium Service Card Layout ── */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem 2.5rem;
}

.service-card-premium {
  display: flex;
  flex-direction: column;
  padding: 3.5rem 2.5rem;
  background: var(--blush);
  border: 1px solid var(--taupe-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 1.2rem;
}
.service-card-premium:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.service-card-premium .card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.service-card-premium .price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}
.service-card-premium .description {
  font-size: 0.9rem;
  color: var(--noir);
  line-height: 1.7;
}
.service-card-premium.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(to bottom right, var(--luxury-bg), var(--blush));
}

.service-card-premium.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(to bottom right, rgba(250, 248, 246, 0.7), rgba(240, 230, 226, 0.7));
}

.service-card-premium.featured .section-label {
  font-size: 0.55rem;
  margin-bottom: 0.8rem;
  display: block;
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.4s;
}

.service-card-premium:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: var(--blush);
  border-color: var(--taupe-light);
}

.service-card-premium:hover::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--bronze) 100%);
}

.service-card-premium .card-header {
  margin-bottom: 1.5rem;
}

.service-card-premium h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.8rem;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.service-card-premium .card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 1.2rem;
  margin-top: 1rem;
}

.service-card-premium .price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--espresso);
}

.service-card-premium .duration {
  font-family: var(--font-main);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
}

.service-card-premium .description {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-premium .addons-section {
  margin-bottom: 2.2rem;
  background: var(--blush);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(216, 199, 161, 0.15);
}

.service-card-premium .addons-title {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(176, 155, 137, 0.25);
  padding-bottom: 0.4rem;
}

.service-card-premium .addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-premium .addons-list li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-main);
  font-size: 0.78rem;
  color: var(--noir);
  margin-bottom: 0.5rem;
  align-items: center;
}

.service-card-premium .addons-list li:last-child {
  margin-bottom: 0;
}

.service-card-premium .addons-list li .addon-name {
  font-weight: 400;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card-premium .addons-list li .addon-name::before {
  content: '·';
  font-weight: bold;
  color: var(--gold);
}

.service-card-premium .addons-list li .addon-price {
  font-weight: 500;
  color: var(--bronze);
}

.service-card-premium .btn-block {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.aspect-beauty {
  aspect-ratio: 3/4;
}

.aspect-editorial {
  aspect-ratio: 16/9;
}

/* ── Dark Section Overrides ── */
.section-dark {
  background: #1A1A1A;
  color: var(--blush);
}

.section-dark .section-title h2 {
  color: var(--blush);
}

.section-dark .section-title p {
  color: var(--text-mid);
}

/* ── Experience ── */
.experience-section {
  position: relative;
  background: #1A1A1A url('../images/about.jpg') center top / cover no-repeat;
  padding: 15rem 6%;
  text-align: center;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.75), rgba(26,26,26,0.55));
  pointer-events: none;
}

.experience-section > * {
  position: relative;
  z-index: 1;
}

/* t-60 — warm, intimate, italic */
.experience-section h2 {
  font-size: var(--t-60);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: var(--head-leading-loose);
  color: var(--blush);
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.experience-section p {
  font-family: var(--font-main);
  color: rgba(250, 248, 246, 0.75);
  /* Accessible light text on dark bg */
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 2.1;
}

.experience-pillars {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.pillar {
  text-align: center;
}

.pillar-line {
  width: 1px;
  height: 48px;
  background: var(--gold);
  margin: 0 auto 1.2rem;
  opacity: 0.5;
}

.pillar span {
  font-family: var(--font-main);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Portfolio ── */
.portfolio-section {
  background: var(--noir);
  padding: 10rem 8%;
}

.portfolio-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.gallery-card {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--espresso);
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover {
  transform: translateY(-3px);
  z-index: 1;
  background: linear-gradient(160deg, #f9c6d8, #f5e6c8);
  filter: brightness(1.1) saturate(1.05);
  margin: 2px;
}

.gallery-card.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-card.aspect-editorial {
  aspect-ratio: 16/9;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s, filter 0.8s;
  opacity: 0.92;
  filter: saturate(0.96) contrast(1.02);
}

.gallery-card:hover img {
  transform: scale(1.05);
  opacity: 1;
  filter: saturate(1) contrast(1.03);
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(31, 22, 17, 0.7), transparent);
  font-family: var(--font-label);
  font-size: 0.625rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 400;
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .card-label {
  background: linear-gradient(to top, rgba(31, 22, 17, 0.85), transparent);
  color: var(--champagne);
}

.bridal-service-card-rose-petal::after {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  background: rgba(255, 192, 203, 0.3);
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
  z-index: 1;
}

.bridal-service-card-rose-petal::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: rgba(255, 192, 203, 0.2);
  border-radius: 50%;
}

.testimonial-card blockquote::before {
  content: '“';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  position: absolute;
  top: -1rem;
  left: 2rem;
  opacity: 0.08;
  color: var(--gold);
}

/* ── Testimonials ── */
.testimonials-section,
.testimonials-wrap {
  background: var(--luxury-bg);
  padding: 12rem 6%;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-section .section-label {
  color: var(--bronze);
}

.testimonials-section .section-title h2 {
  color: var(--espresso);
  font-size: var(--t-60);
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 5rem 5rem;
  text-align: center;
  background: var(--blush);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--espresso);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.testimonial-card blockquote::after {
  content: '”';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  opacity: 0.08;
  color: var(--gold);
  margin-left: 0.5rem;
}

.testimonial-card cite {
  font-family: var(--font-main);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bronze);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(148, 110, 75, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  z-index: 2;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(148, 110, 75, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ── Final CTA ── */
.cta-section {
  background: var(--noir);
  padding: 12rem 6%;
  text-align: center;
  border-top: 1px solid var(--divider);
}

/* t-72 — bold close, upright for authority */
.cta-section h2 {
  font-size: var(--t-72);
  font-weight: 600;
  font-style: normal;
  letter-spacing: var(--head-tracking-wide);
  line-height: var(--head-leading);
  color: var(--champagne);
  max-width: 640px;
  margin: 0 auto 1rem;
}

.cta-section p {
  font-family: var(--font-main);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

/* ── Social ── */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-mid);
  transition: border-color 0.3s, color 0.3s, transform 0.5s cubic-bezier(0.33, 0, 0.2, 1);
}

.social-icon:hover {
  border-color: var(--accent);
}

.social-icon:hover i {
  background: linear-gradient(90deg,
      var(--accent) 0%,
      #ffffff 50%,
      var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 2.5s infinite linear;
}

/* ── Footer ── */
.footer {
  background: var(--luxury-bg);
  border-top: 1px solid var(--divider);
  color: var(--text-mid);
  padding: 8rem 6% 5rem; /* generous vertical padding */
  text-align: center;
}

.footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--t-48);
  color: var(--gold);
  letter-spacing: -0.02em;
}

.footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.footer .footer-nav a {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--noir);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: color 0.3s ease;
}

.footer .footer-nav a:hover {
  color: var(--accent);
}

.footer .footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer .footer-social .social-icon {
  font-size: 1.2rem;
  color: var(--noir);
  transition: color 0.3s ease;
}

.footer .footer-social .social-icon:hover {
  color: var(--accent);
}

.footer .footer-divider {
  width: 60%;
  height: 1px;
  background: var(--divider);
  opacity: 0.5;
  margin: 2rem 0;
}

.footer .footer-copy {
  font-family: var(--font-main);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
footer {
  background: var(--luxury-bg);
  border-top: 1px solid var(--divider);
  color: var(--text-mid);
  padding: 8rem 6% 4rem;
  text-align: center;
}

footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

footer .footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--noir);
  letter-spacing: -0.01em;
}

footer nav a {
  font-family: var(--font-main);
  font-size: 0.75rem; /* 12px */
  margin: 0 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  transition: color 0.4s cubic-bezier(0.33, 0, 0.2, 1);
  font-weight: 500;
}

footer nav a:hover {
  color: var(--accent);
}

footer .footer-copy {
  font-family: var(--font-main);
  font-size: 0.7rem; /* Exact 11.2px */
  font-weight: 400;
  letter-spacing: 0.05em; /* Soft, delicate spacing */
  text-transform: none; /* Removed harsh uppercase */
  color: rgba(26, 26, 26, 0.45); /* Subdued hierarchy tier */
  margin-top: 1.5rem;
  font-feature-settings: "tnum"; /* Micro-typography: tabular numbers for the year */
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 12rem 6% 5rem;
  background: var(--noir);
  border-bottom: 1px solid var(--divider);
}

/* H1: Hero Display */
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem); /* Responsive 40px to 68px */
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--champagne);
  margin-bottom: 1.2rem;
}

body.high-contrast-mode .page-hero {
  background: #000000;
  border-bottom-color: #FFFFFF;
}

body.high-contrast-mode .page-hero h1 {
  color: #FFFFFF;
}


/* Supporting text */
.page-hero p {
  font-family: var(--font-main);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-mid);
}

body.high-contrast-mode .page-hero p {
  color: #CCCCCC;
}

/* ── Founder Story Section ── */
.founder-section {
  background: var(--luxury-bg);
  padding: 8rem 6%;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(216, 199, 161, 0.2);
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.founder-grid:hover .founder-img img {
  transform: scale(1.05);
}

.founder-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-text h2 {
  font-size: var(--t-48);
  font-weight: 500;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: var(--head-leading);
}

.founder-text .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bronze);
  margin-bottom: 2rem;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

.founder-text p {
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 1.5rem;
  max-width: 58ch;
}

.signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  margin: 1rem 0 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 0.95;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8rem;
  align-items: flex-start;
}

.about-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About Typography Hierarchy ── */
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem); /* Responsive 40px to 64px */
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--divider);
}

/* Inline Serif Emotional Emphasis */
.narrative-emphasis {
  font-family: var(--font-display);
  font-size: 1.15em; /* Optically scaled to match Montserrat x-height */
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--espresso);
}

.about-text .lead {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.5vw, 1.15rem); /* 17px to 18.5px */
  font-weight: 400;
  line-height: 1.6; /* High-end editorial height */
  letter-spacing: 0.02em;
  color: var(--noir); /* Solid dark anchor */
  margin-bottom: 2rem;
}

/* Drop-cap for the editorial opening */
.about-text .lead::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem; /* 56px */
  font-weight: 400;
  font-style: italic;
  color: var(--bronze);
  float: left;
  line-height: 1;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
}

.about-text p {
  font-family: var(--font-main);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: rgba(26, 26, 26, 0.7); /* Softened text color for hierarchy */
  margin-bottom: 1.6rem; /* Balanced proportional paragraph spacing */
  line-height: 1.6;
  letter-spacing: 0.02em;
  max-width: 65ch;
  text-wrap: pretty;
  font-kerning: normal; /* Optical pairs */
}

/* Editorial Pull-Quote */
.editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem); /* 25px to 35px */
  font-weight: 400;
  font-style: italic;
  color: var(--champagne);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 3.5rem 0;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
  max-width: 25ch;
  text-wrap: balance;
}

body.high-contrast-mode .about-text h2,
body.high-contrast-mode .about-text .lead,
body.high-contrast-mode .editorial-quote {
  color: #000000;
}


/* ── Booking Form ── */
.booking-form {
  max-width: 620px;
  margin: auto;
}

/* H2: Form Title */
.booking-form h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem); /* Responsive 32px to 48px */
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--espresso);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* H3: Form Micro-headings */
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem; /* 24px */
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--bronze);
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-label);
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem); /* 13px - 14px */
  font-weight: 500;
  letter-spacing: 0.01em; /* +1% letter spacing */
  text-transform: none; /* Clean, editorial normal case */
  color: rgba(26, 26, 26, 0.65); /* Soft gray tone */
  margin-bottom: 0.6rem;
}

body.high-contrast-mode .form-group label {
  color: #000000;
}


.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF;
  border: 1px solid rgba(216, 199, 161, 0.6); /* Soft structured border */
  border-radius: 4px; /* Subtle luxury curve */
  padding: 1rem 1.25rem;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--noir);
  outline: none;
  transition: border-color 0.4s cubic-bezier(0.33, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.33, 0, 0.2, 1), transform 0.4s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(26, 26, 26, 0.6); /* WCAG AA accessible contrast against white */
  font-weight: 300;
  letter-spacing: 0.02em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 20px -8px rgba(212, 168, 154, 0.35);
  transform: translateY(-2px); /* Premium tactile lift */
  background: #FFFFFF;
}

.form-group select option {
  background: var(--luxury-bg);
  color: var(--noir);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

/* ── Info blocks (services page) ── */
.info-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--divider);
}

.info-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--champagne);
  margin-bottom: 0.8rem;
}

.info-block p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ── Connect heading (contact page) ── */
.connect-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem); /* 32px to 48px */
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* ── Policy Sections ── */
.policies-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.policy-card {
  background: rgba(250, 248, 246, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 199, 161, 0.2);
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.policy-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(26, 26, 26, 0.06);
}

.policy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--espresso);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 0.8rem;
}

body.high-contrast-mode .policy-card h3 {
  color: #000000;
  border-bottom-color: #000000;
}

.policy-card p.intro {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

body.high-contrast-mode .policy-card p.intro {
  color: #000000;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 1.5rem;
}

body.high-contrast-mode .policy-list li {
  color: #000000;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

body.high-contrast-mode .policy-list li strong {
  color: #000000;
}

.policy-list li strong {
  color: var(--espresso);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .portfolio-section {
    padding: 9rem 6%;
  }
}

@media (max-width: 768px) {
  :root {
    --body-size: 0.98rem;
    --body-leading: 1.75;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1rem 5%;
  }

  .navbar nav {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 0 5%;
  }

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

  .services-grid-premium {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .policies-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-pillars {
    gap: 2.5rem;
  }

  .testimonial-card {
    padding: 2rem 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .founder-text {
    align-items: center;
    text-align: center;
  }

  .founder-text .lead {
    border-left: none;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 1rem 0;
    width: 100%;
  }

  .section {
    padding: 6rem 5%;
  }

  .services-section {
    padding: 6rem 5%;
  }

  .portfolio-section {
    padding: 6rem 5%;
  }

  .experience-section {
    padding: 9rem 5%;
  }

  .testimonials-section,
  .testimonials-wrap {
    padding: 7rem 5%;
  }

  .cta-section {
    padding: 7rem 5%;
  }

  .footer {
    padding: 5rem 5% 3rem;
  }

  footer {
    padding: 5rem 5% 3rem;
  }

  .brand-statement {
    padding: 7rem 5%;
  }

  .gallery-grid {
    gap: 2rem;
  }

  .service-card {
    padding: 3.5rem 2.5rem;
  }

  .service-card-premium {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .services-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .policy-card {
    padding: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.5rem;
  }

  .brand-statement {
    padding: 5rem 5%;
  }

  .portfolio-section {
    padding: 5rem 4%;
  }

  .services-section {
    padding: 5rem 5%;
  }

  .experience-section {
    padding: 7rem 5%;
  }

  .cta-section {
    padding: 6rem 5%;
  }

  .footer {
    padding: 4rem 5% 2.5rem;
  }

  footer {
    padding: 4rem 5% 2.5rem;
  }
}