@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Great+Vibes&family=Jost:wght@200;300;400&display=swap');

/* ═══════════════════════════════════════════════════════════
   SIMA PHOTOGRAPHY — Nature Edition
   Palette: forest, earth, sage, moss, warm ivory
═══════════════════════════════════════════════════════════ */
:root {
  --ivory:    #f8f4ee;
  --parchment:#f0e9dc;
  --sand:     #e4d8c4;
  --moss:     #c8d5b9;
  --sage:     #a8bcaa;
  --fern:     #7a9e7e;
  --forest:   #4a6741;
  --bark:     #5c4a32;
  --earth:    #8b6f47;
  --ink:      #2c3320;
  --charcoal: #1a2018;
  --white:    #fefdfb;
  --gold:     #c9a96e;
  --nav-h:    80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.75;
  cursor: none; /* hidden — replaced by custom cursor */
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.12; }
.script { font-family: 'Great Vibes', cursive; }

/* ─── Scroll Progress Bar ─── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--fern), var(--gold));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ─── Custom Cursor ─── */
#cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--forest);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out),
              height 0.2s var(--ease-out),
              background 0.2s ease,
              opacity 0.2s ease;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.45s var(--ease-out),
              height 0.45s var(--ease-out),
              border-color 0.3s ease,
              opacity 0.3s ease,
              transform 0.12s linear; /* ring lags for trailing effect */
  opacity: 0.6;
}
body.cursor-hover #cursor-dot  { width: 10px; height: 10px; background: var(--gold); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); opacity: 0.4; }
body.cursor-click #cursor-dot  { width: 4px;  height: 4px; }
body.cursor-click #cursor-ring { width: 28px; height: 28px; opacity: 0.9; }

/* ─── Leaf Particles ─── */
#leaf-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ─── Page Loader ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 99997;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-text {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--forest);
  animation: loaderBreath 2s ease-in-out infinite;
}
.loader-bar {
  width: 120px; height: 1px;
  background: var(--sand);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--fern);
  transform: translateX(-100%);
  animation: loaderSlide 1.6s var(--ease-in-out) infinite;
}
@keyframes loaderBreath { 0%,100%{opacity:0.4;transform:scale(0.97)} 50%{opacity:1;transform:scale(1)} }
@keyframes loaderSlide  { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ─── Navbar ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background-color: transparent;
  transition: background-color 0.45s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.45s cubic-bezier(0.4,0,0.2,1);
}
#navbar.scrolled {
  background-color: var(--ivory);
  box-shadow: 0 1px 24px rgba(44,58,32,0.09);
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem; color: rgba(255,255,255,0.95);
  white-space: nowrap;
  transition: color 0.45s cubic-bezier(0.4,0,0.2,1);
}
#navbar.scrolled .nav-logo { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); padding: 0.5rem 0.8rem; display: block;
  transition: color 0.4s ease; position: relative;
}
.nav-links > li > a::after {
  content:''; position:absolute; bottom:0; left:50%; right:50%;
  height:1px; background:currentColor;
  transition: left 0.35s ease, right 0.35s ease; opacity:0.6;
}
.nav-links > li > a:hover::after { left:0.8rem; right:0.8rem; }
#navbar.scrolled .nav-links > li > a { color: var(--ink); }
#navbar.scrolled .nav-links > li > a:hover { color: var(--fern); }
.nav-links > li > a:hover { color: rgba(255,255,255,0.65); }
.dropdown { display: none; }
.has-dropdown:hover .dropdown {
  display: block; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--ivory); border: 1px solid rgba(120,140,100,0.2);
  min-width: 170px; padding: 0.75rem 0;
  box-shadow: 0 14px 40px rgba(44,58,32,0.12);
  animation: dropFade 0.22s var(--ease-out);
}
@keyframes dropFade {
  from { opacity:0; transform:translateX(-50%) translateY(-8px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.dropdown a {
  display:block; padding:0.5rem 1.25rem;
  font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink); transition: color 0.25s, padding-left 0.25s;
}
.dropdown a:hover { color:var(--fern); padding-left:1.6rem; }
.burger { display:none; flex-direction:column; gap:5px; cursor:none; background:none; border:none; padding:4px; }
.burger span { display:block; width:24px; height:1.5px; background:rgba(255,255,255,0.9); transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease; }
#navbar.scrolled .burger span { background: var(--ink); }
.burger.open span:nth-child(1) { transform:rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:rotate(-45deg) translate(4.5px,-4.5px); }
#mobile-nav { display:none; position:fixed; inset:0; background:var(--ivory); z-index:999; padding:calc(var(--nav-h) + 2rem) 2rem 2rem; flex-direction:column; overflow-y:auto; }
#mobile-nav.open { display:flex; }
.mobile-nav-item { border-bottom:1px solid var(--sand); }
.mobile-nav-item > a { display:block; padding:1rem 0; font-size:1.1rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink); }
.mobile-sub { padding-left:1rem; }
.mobile-sub a { display:block; padding:0.5rem 0; font-size:0.85rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--fern); }

/* ─── Hero ─── */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-img {
  position: absolute; inset: 0;
  transform: scale(1.12);
  transition: transform 10s var(--ease-out);
  will-change: transform;
}
.hero.loaded .hero-img { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26,32,24,0.45) 0%,
    rgba(26,32,24,0.15) 45%,
    rgba(26,32,24,0.55) 100%
  );
}
/* Botanical SVG frame overlay */
.hero-botanical {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='4' cy='4' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 1.5rem; color: var(--white);
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  animation: heroUp 1s var(--ease-out) 0.5s both;
  margin-bottom: 1.2rem; color: rgba(255,255,255,0.75);
}
.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.8rem, 10vw, 7.5rem); line-height: 1;
  animation: heroUp 1.2s var(--ease-out) 0.75s both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.2);
  margin-bottom: 0.6rem;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  animation: heroUp 1s var(--ease-out) 1s both;
  margin-bottom: 2.5rem; color: rgba(255,255,255,0.85);
}
.hero-cta { animation: heroUp 1s var(--ease-out) 1.25s both; }
@keyframes heroUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Scroll hint */
.scroll-hint {
  position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
  z-index:3; animation: heroUp 1s var(--ease-out) 2s both;
  display:flex; flex-direction:column; align-items:center; gap:0.6rem;
}
.scroll-hint span { font-size:0.58rem; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.55); }
.scroll-line { width:1px; height:44px; background:rgba(255,255,255,0.3); position:relative; overflow:hidden; }
.scroll-line::after {
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
  animation: scrollDrop 2s ease infinite;
}
@keyframes scrollDrop { 0%{top:-100%} 100%{top:100%} }

/* ─── Buttons ─── */
.btn {
  display:inline-block; padding:0.9rem 2.6rem;
  font-size:0.68rem; letter-spacing:0.24em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.65); color:var(--white);
  background:transparent; cursor:none;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}
.btn::before {
  content:''; position:absolute; inset:0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform:translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-forest {
  border-color: var(--forest); color: var(--forest); background: transparent;
}
.btn-forest::before { background: var(--forest); }
.btn-forest:hover { color: var(--white); }

/* ─── Scroll Reveal — Cloudflare bulletproof ─── */
/* NO opacity:0 in CSS. JS adds .reveal-init class AFTER confirming observer. */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.stagger > * { transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }

.reveal.reveal-init        { opacity:0; transform:translateY(40px); }
.reveal-left.reveal-init   { opacity:0; transform:translateX(-40px); }
.reveal-right.reveal-init  { opacity:0; transform:translateX(40px); }
.reveal-scale.reveal-init  { opacity:0; transform:scale(0.94); }
.stagger.stagger-init > *  { opacity:0; transform:translateY(25px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible       { opacity:1 !important; transform:none !important; }

.stagger.visible > *:nth-child(1)   { opacity:1 !important; transform:none !important; transition-delay:0.00s; }
.stagger.visible > *:nth-child(2)   { opacity:1 !important; transform:none !important; transition-delay:0.10s; }
.stagger.visible > *:nth-child(3)   { opacity:1 !important; transform:none !important; transition-delay:0.20s; }
.stagger.visible > *:nth-child(4)   { opacity:1 !important; transform:none !important; transition-delay:0.30s; }
.stagger.visible > *:nth-child(5)   { opacity:1 !important; transform:none !important; transition-delay:0.40s; }
.stagger.visible > *:nth-child(6)   { opacity:1 !important; transform:none !important; transition-delay:0.50s; }
.stagger.visible > *:nth-child(7)   { opacity:1 !important; transform:none !important; transition-delay:0.60s; }
.stagger.visible > *:nth-child(8)   { opacity:1 !important; transform:none !important; transition-delay:0.70s; }
.stagger.visible > *:nth-child(n+9) { opacity:1 !important; transform:none !important; transition-delay:0.80s; }

/* ─── Section Utility ─── */
section { padding: clamp(4rem,8vw,8rem) clamp(1.5rem,5vw,5rem); }
.section-label {
  font-size:0.62rem; letter-spacing:0.4em; text-transform:uppercase;
  color:var(--fern); margin-bottom:1rem; display:block;
}
.section-title {
  font-size:clamp(2rem,4.5vw,3.6rem); color:var(--charcoal); margin-bottom:1.5rem;
}
.section-title em { font-style:italic; color:var(--forest); }
.section-body { font-size:1rem; color:var(--bark); max-width:580px; line-height:1.9; }
.divider { width:50px; height:1px; background:var(--gold); margin:1.5rem 0; }
.divider-center { margin-left:auto; margin-right:auto; }
.text-center { text-align:center; }
.text-center .section-body { margin:0 auto; }

/* ─── Intro Split ─── */
.intro-split { display:grid; grid-template-columns:1fr 1fr; min-height:72vh; }
.intro-image { position:relative; min-height:420px; overflow:hidden; }
.intro-image img { position:absolute; inset:0; transition:transform 7s var(--ease-out); }
.intro-image:hover img { transform:scale(1.05); }
.intro-text {
  background:var(--parchment);
  padding:clamp(3rem,8vw,7rem) clamp(2rem,6vw,5rem);
  display:flex; flex-direction:column; justify-content:center;
}

/* ─── Parallax Strip ─── */
.parallax-strip {
  position:relative; height:65vh; min-height:400px;
  overflow:hidden;
}
.parallax-strip-img {
  position:absolute; inset:-20%; /* extra room for parallax movement */
  will-change: transform;
}
.parallax-strip-overlay {
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  text-align:center; color:var(--white);
  background:rgba(26,32,24,0.3);
}
.parallax-strip-overlay h2 {
  font-family:'Great Vibes',cursive;
  font-size:clamp(3rem,7vw,5.5rem);
  text-shadow:0 4px 30px rgba(0,0,0,0.25);
  animation: heroUp 1s var(--ease-out) 0.2s both;
}

/* ─── Horizontal Photo Filmstrip ─── */
.filmstrip-section {
  background:var(--charcoal);
  padding:clamp(3rem,6vw,5rem) 0;
  overflow:hidden;
}
.filmstrip-header {
  padding:0 clamp(1.5rem,5vw,5rem);
  margin-bottom:2.5rem;
}
.filmstrip-header .section-label { color:var(--sage); }
.filmstrip-header .section-title { color:var(--ivory); }
.filmstrip-track {
  display:flex; gap:12px;
  padding:0 clamp(1.5rem,5vw,5rem) 1rem;
  overflow-x:auto; scroll-snap-type:x mandatory;
  scrollbar-width:none; cursor:grab;
  -webkit-overflow-scrolling:touch;
}
.filmstrip-track::-webkit-scrollbar { display:none; }
.filmstrip-track.dragging { cursor:grabbing; }
.filmstrip-item {
  flex-shrink:0; width:320px; height:420px;
  position:relative; overflow:hidden;
  scroll-snap-align:start;
  transition:transform 0.4s var(--ease-out);
}
.filmstrip-item:hover { transform:scale(1.02) translateY(-4px); }
.filmstrip-item img { transition:transform 0.7s var(--ease-out); }
.filmstrip-item:hover img { transform:scale(1.08); }
.filmstrip-caption {
  position:absolute; bottom:0; left:0; right:0;
  padding:2rem 1.5rem 1.5rem;
  background:linear-gradient(to top, rgba(26,32,24,0.75) 0%, transparent 100%);
  color:var(--white);
  transform:translateY(6px);
  transition:transform 0.4s var(--ease-out);
}
.filmstrip-item:hover .filmstrip-caption { transform:translateY(0); }
.filmstrip-caption span {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:1.05rem;
}

/* ─── Gallery Mosaic ─── */
.gallery-preview { background:var(--ivory); padding:clamp(4rem,8vw,8rem) 0; }
.gallery-preview-header { padding:0 clamp(1.5rem,5vw,5rem); margin-bottom:3rem; }
.gallery-mosaic {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px; padding:0 6px;
}
.mosaic-item {
  position:relative; overflow:hidden; cursor:none;
  background:var(--sand);
}
.mosaic-item img { transition:transform 0.8s var(--ease-out), filter 0.5s ease; }
.mosaic-item:hover img { transform:scale(1.08); filter:brightness(1.04) saturate(1.1); }
.mosaic-overlay {
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(to top, rgba(26,32,24,0.55) 0%, transparent 50%);
  opacity:0; transition:opacity 0.4s ease;
}
.mosaic-item:hover .mosaic-overlay { opacity:1; }
.mosaic-caption {
  position:absolute; bottom:1.2rem; left:1.2rem; z-index:3;
  color:var(--white); font-family:'Cormorant Garamond',serif;
  font-size:1.1rem; font-style:italic;
  opacity:0; transform:translateY(10px);
  transition:opacity 0.4s ease, transform 0.4s var(--ease-out);
}
.mosaic-item:hover .mosaic-caption { opacity:1; transform:translateY(0); }
.mosaic-item:nth-child(1) { grid-column:span 2; aspect-ratio:4/3; }
.mosaic-item:nth-child(2) { aspect-ratio:3/4; }
.mosaic-item:nth-child(3) { aspect-ratio:3/4; }
.mosaic-item:nth-child(4) { aspect-ratio:3/4; }
.mosaic-item:nth-child(5) { aspect-ratio:3/4; }
.mosaic-item:nth-child(6) { grid-column:span 2; aspect-ratio:4/3; }
.mosaic-item:nth-child(7) { aspect-ratio:4/3; }
.mosaic-item:nth-child(8) { aspect-ratio:4/3; }

/* ─── Photo Triptych ─── */
.triptych {
  display:grid; grid-template-columns:1fr 1.4fr 1fr;
  gap:6px; padding:6px;
  background:var(--parchment);
}
.triptych-item { position:relative; overflow:hidden; }
.triptych-item:nth-child(1),
.triptych-item:nth-child(3) { aspect-ratio:2/3; }
.triptych-item:nth-child(2) { aspect-ratio:3/4; }
.triptych-item img { transition:transform 0.7s var(--ease-out); }
.triptych-item:hover img { transform:scale(1.06); }

/* ─── Nature Stats Ticker ─── */
.nature-stats {
  background:var(--forest); color:var(--white);
  padding:clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,5rem);
}
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2rem; max-width:1000px; margin:0 auto; text-align:center;
}
.stat-num {
  font-family:'Great Vibes',cursive; font-size:4.5rem;
  color:var(--moss); line-height:1; display:block;
}
.stat-label {
  font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); margin-top:0.5rem; display:block;
}

/* ─── Quote Band ─── */
.quote-band {
  background:var(--ink); color:var(--white);
  padding:clamp(3.5rem,7vw,6rem) clamp(1.5rem,5vw,5rem);
  text-align:center; position:relative; overflow:hidden;
}
.quote-band::before {
  content:'"';
  font-family:'Great Vibes',cursive; font-size:22rem;
  color:rgba(255,255,255,0.03); position:absolute;
  top:-6rem; left:1rem; line-height:1; pointer-events:none;
}
.quote-band blockquote {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:clamp(1.5rem,3.5vw,2.4rem);
  max-width:820px; margin:0 auto 1.2rem;
  line-height:1.45; color:rgba(255,255,255,0.88); position:relative;
}
.quote-band cite { font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--sage); }

/* ─── Services ─── */
.services-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2px; background:var(--moss);
}
.service-card {
  background:var(--white); padding:3rem 2.5rem;
  transition:background 0.4s ease, transform 0.4s var(--ease-out);
}
.service-card:hover { background:var(--parchment); transform:translateY(-5px); }
.service-icon { font-family:'Great Vibes',cursive; font-size:2.8rem; color:var(--fern); margin-bottom:1.5rem; display:block; }
.service-card h3 { font-size:1.35rem; margin-bottom:0.75rem; color:var(--charcoal); }
.service-card p { font-size:0.9rem; color:var(--bark); line-height:1.75; }

/* ─── Testimonials ─── */
.testimonials { background:var(--parchment); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem; margin-top:3rem;
}
.testimonial-card {
  background:var(--white); padding:2.5rem; position:relative;
  border-bottom:2px solid transparent;
  transition:border-color 0.35s ease, transform 0.35s var(--ease-out);
}
.testimonial-card:hover { border-bottom-color:var(--fern); transform:translateY(-3px); }
.testimonial-card::before {
  content:'\201C';
  font-family:'Cormorant Garamond',serif; font-size:5rem;
  color:var(--moss); position:absolute; top:0.5rem; left:1rem; line-height:1;
}
.testimonial-card p {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:1.05rem; line-height:1.75; color:var(--ink);
  position:relative; z-index:1; margin-bottom:1.5rem;
}
.testimonial-name { font-size:0.62rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--fern); }

/* ─── Contact ─── */
.contact-split { display:grid; grid-template-columns:1fr 1fr; min-height:600px; }
.contact-image { position:relative; overflow:hidden; min-height:400px; }
.contact-form-area {
  padding:clamp(3rem,8vw,6rem) clamp(2rem,6vw,5rem);
  background:var(--parchment);
  display:flex; flex-direction:column; justify-content:center;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--fern); margin-bottom:0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:0.85rem 1rem;
  background:var(--white); border:1px solid var(--sand);
  font-family:'Jost',sans-serif; font-size:16px; color:var(--ink);
  transition:border-color 0.3s ease; outline:none;
  -webkit-appearance:none; appearance:none; border-radius:0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--fern); }
.form-group textarea { height:120px; resize:none; }
.form-success { display:none; text-align:center; padding:3rem; background:var(--white); }
.form-success .script { font-size:3rem; color:var(--fern); display:block; margin-bottom:1rem; }

/* ─── Gallery Pages ─── */
.gallery-page-hero { height:60svh; position:relative; overflow:hidden; }
.gallery-page-hero img { position:absolute; inset:0; }
.gallery-page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(26,32,24,0.3) 0%, rgba(26,32,24,0.55) 100%);
  display:flex; align-items:flex-end; padding:clamp(2rem,5vw,4rem);
}
.gallery-hero-text { color:var(--white); }
.gallery-hero-text .section-label { color:rgba(255,255,255,0.6); }
.gallery-hero-text h1 { font-family:'Great Vibes',cursive; font-size:clamp(3rem,7vw,5.5rem); }
.masonry-gallery { columns:3; column-gap:8px; padding:clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem); }
.masonry-gallery img { width:100%; height:auto; display:block; margin-bottom:8px; transition:transform 0.5s var(--ease-out), filter 0.4s ease; }
.masonry-gallery img:hover { transform:scale(1.02); filter:brightness(1.06) saturate(1.08); }
.gallery-nav-strip { display:flex; overflow-x:auto; padding:0 clamp(1.5rem,5vw,4rem); background:var(--white); border-bottom:1px solid var(--sand); scrollbar-width:none; }
.gallery-nav-strip::-webkit-scrollbar { display:none; }
.gallery-nav-strip a { flex-shrink:0; padding:1rem 1.25rem; font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--bark); border-bottom:2px solid transparent; transition:color 0.3s, border-color 0.3s; white-space:nowrap; }
.gallery-nav-strip a:hover, .gallery-nav-strip a.active { color:var(--fern); border-bottom-color:var(--fern); }

/* ─── About ─── */
.about-intro { display:grid; grid-template-columns:1fr 1.2fr; gap:clamp(3rem,6vw,6rem); align-items:center; }
.about-image-stack { position:relative; padding:3rem 0 0 3rem; }
.about-img-main { width:100%; aspect-ratio:3/4; overflow:hidden; position:relative; }
.about-img-accent { position:absolute; top:0; left:0; width:50%; aspect-ratio:1; overflow:hidden; border:6px solid var(--white); transform:translate(-30%,-30%); }
.about-values { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:5rem; background:var(--moss); }
.about-value-card { background:var(--white); padding:2.5rem 2rem; text-align:center; }
.value-num { font-family:'Great Vibes',cursive; font-size:3.5rem; color:var(--moss); display:block; margin-bottom:0.5rem; }
.about-value-card h3 { font-size:1.2rem; margin-bottom:0.5rem; }
.about-value-card p { font-size:0.85rem; color:var(--bark); }

/* ─── Pricing ─── */
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:2px; background:var(--moss); margin-top:3rem; }
.pricing-card { background:var(--white); padding:3rem 2.5rem; text-align:center; transition:background 0.35s ease; }
.pricing-card.featured { background:var(--forest); color:var(--white); }
.pricing-card.featured .pricing-price { color:var(--moss); }
.pricing-card.featured p { color:rgba(255,255,255,0.7); }
.pricing-card:not(.featured):hover { background:var(--parchment); }
.pricing-label { font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--fern); margin-bottom:1rem; display:block; }
.pricing-card.featured .pricing-label { color:var(--moss); }
.pricing-card h3 { font-size:1.5rem; margin-bottom:0.75rem; }
.pricing-price { font-family:'Great Vibes',cursive; font-size:3.5rem; color:var(--fern); display:block; margin:1rem 0; line-height:1; }
.pricing-divider { width:40px; height:1px; background:var(--gold); margin:1.25rem auto; }
.pricing-features { list-style:none; margin-bottom:2rem; }
.pricing-features li { font-size:0.85rem; color:var(--bark); padding:0.4rem 0; border-bottom:1px solid var(--parchment); }
.pricing-card.featured .pricing-features li { color:rgba(255,255,255,0.65); border-color:rgba(255,255,255,0.1); }
.pricing-card.featured .btn-forest { border-color:rgba(255,255,255,0.5); color:var(--white); }
.pricing-card.featured .btn-forest:hover { background:var(--white); color:var(--forest); }

/* ─── Page hero (inner pages) ─── */
.page-hero { padding-top:calc(var(--nav-h) + 4rem); padding-bottom:3rem; text-align:center; background:var(--parchment); }
.page-hero h1 { font-family:'Great Vibes',cursive; font-size:clamp(3rem,7vw,5.5rem); color:var(--charcoal); }

/* ─── Contact info cards ─── */
.contact-info-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--moss); margin-top:3rem; }
.contact-info-card { background:var(--white); padding:2.5rem 2rem; text-align:center; transition:background 0.3s; }
.contact-info-card:hover { background:var(--parchment); }
.info-icon { font-family:'Great Vibes',cursive; font-size:2.5rem; color:var(--fern); display:block; margin-bottom:1rem; }
.contact-info-card h3 { font-size:1rem; margin-bottom:0.5rem; color:var(--charcoal); }
.contact-info-card p, .contact-info-card a { font-size:0.85rem; color:var(--bark); line-height:1.7; }
.contact-info-card a:hover { color:var(--fern); }

/* ─── Client viewing ─── */
.client-viewing { min-height:80svh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:calc(var(--nav-h) + 4rem) 2rem 4rem; background:var(--parchment); }
.proofing-card { background:var(--white); max-width:480px; width:100%; padding:3rem 2.5rem; box-shadow:0 20px 60px rgba(44,58,32,0.08); margin-top:2rem; }
.proofing-card h2 { font-size:1.6rem; color:var(--charcoal); margin-bottom:1rem; }
.proofing-card p { font-size:0.9rem; color:var(--bark); margin-bottom:2rem; line-height:1.7; }
.proofing-step { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--parchment); }
.proofing-step:last-child { border:none; margin:0; padding:0; }
.step-num { font-family:'Great Vibes',cursive; font-size:2.2rem; color:var(--sage); line-height:1; flex-shrink:0; width:2rem; text-align:center; }
.step-text h4 { font-size:0.95rem; color:var(--charcoal); margin-bottom:0.3rem; }
.step-text p { font-size:0.82rem; color:var(--bark); margin:0; }

/* ─── Map ─── */
.map-wrapper { height:320px; overflow:hidden; }
.map-wrapper iframe { width:100%; height:100%; border:0; filter:grayscale(0.2) sepia(0.1); }

/* ─── Testimonials page featured ─── */
.testimonial-featured { background:var(--ink); padding:clamp(4rem,8vw,7rem) clamp(2rem,6vw,8rem); text-align:center; position:relative; overflow:hidden; }
.testimonial-featured::before { content:'\201C'; font-family:'Great Vibes',cursive; font-size:20rem; color:rgba(255,255,255,0.03); position:absolute; top:-4rem; left:2rem; line-height:1; pointer-events:none; }
.testimonial-featured blockquote { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(1.4rem,3vw,2.2rem); color:rgba(255,255,255,0.9); max-width:800px; margin:0 auto 1.5rem; line-height:1.5; position:relative; }
.testimonial-featured cite { font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--sage); }
.stars { color:var(--gold); font-size:1.1rem; margin-bottom:1.5rem; letter-spacing:0.2em; }

/* ─── Service detail (services page) ─── */
.service-detail { display:grid; grid-template-columns:1fr 1fr; min-height:500px; margin-bottom:2px; }
.service-detail:nth-child(even) .service-detail-img { order:2; }
.service-detail:nth-child(even) .service-detail-text { order:1; }
.service-detail-img { position:relative; overflow:hidden; }
.service-detail-img img { position:absolute; inset:0; transition:transform 7s var(--ease-out); }
.service-detail-img:hover img { transform:scale(1.05); }
.service-detail-text { background:var(--parchment); padding:clamp(3rem,7vw,6rem) clamp(2rem,6vw,5rem); display:flex; flex-direction:column; justify-content:center; }

/* ─── Footer ─── */
footer { background:var(--charcoal); color:rgba(255,255,255,0.55); padding:clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,5rem) 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand .nav-logo { color:var(--white); font-size:2.5rem; display:block; margin-bottom:1rem; }
.footer-brand p { font-size:0.85rem; line-height:1.8; max-width:300px; }
footer h4 { font-size:0.62rem; letter-spacing:0.25em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:1.25rem; font-family:'Jost',sans-serif; font-weight:300; }
footer ul li { margin-bottom:0.6rem; }
footer ul li a { font-size:0.85rem; color:rgba(255,255,255,0.55); transition:color 0.3s ease; }
footer ul li a:hover { color:var(--sage); }
.footer-social { display:flex; gap:1rem; margin-top:1.5rem; }
.social-icon { width:36px; height:36px; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; font-size:0.6rem; color:rgba(255,255,255,0.55); transition:all 0.3s ease; text-transform:uppercase; }
.social-icon:hover { border-color:var(--sage); color:var(--sage); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; font-size:0.72rem; }
.footer-bottom a { color:rgba(255,255,255,0.35); transition:color 0.3s; }
.footer-bottom a:hover { color:var(--white); }

/* ─── Responsive ─── */
@media (max-width:1024px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .about-intro { grid-template-columns:1fr; }
  .about-image-stack { display:none; }
  .triptych { grid-template-columns:1fr 1fr; }
  .triptych-item:nth-child(3) { display:none; }
}
@media (max-width:768px) {
  body { cursor:auto; } /* restore cursor on touch */
  #cursor-dot, #cursor-ring { display:none; }
  .nav-links { display:none; }
  .burger { display:flex; }
  .intro-split { grid-template-columns:1fr; }
  .intro-image { min-height:300px; aspect-ratio:4/3; }
  .gallery-mosaic { grid-template-columns:repeat(2,1fr); }
  .mosaic-item:nth-child(1),
  .mosaic-item:nth-child(6) { grid-column:span 2; }
  .contact-split { grid-template-columns:1fr; }
  .contact-image { display:none; }
  .masonry-gallery { columns:2; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .about-values { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:0.5rem; text-align:center; }
  .contact-info-cards { grid-template-columns:1fr; }
  .service-detail { grid-template-columns:1fr; }
  .service-detail:nth-child(even) .service-detail-img,
  .service-detail:nth-child(even) .service-detail-text { order:unset; }
  .service-detail-img { min-height:260px; position:relative; }
  .triptych { grid-template-columns:1fr; }
  .triptych-item:nth-child(2),
  .triptych-item:nth-child(3) { display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:480px) {
  .gallery-mosaic { grid-template-columns:1fr; }
  .mosaic-item:nth-child(1),
  .mosaic-item:nth-child(6) { grid-column:span 1; }
  .masonry-gallery { columns:1; }
  .filmstrip-item { width:260px; height:340px; }
}

/* ─── btn-dark alias → btn-forest (backwards compat) ─── */
.btn-dark {
  border-color: var(--forest); color: var(--forest); background: transparent;
}
.btn-dark::before { background: var(--forest); }
.btn-dark:hover { color: var(--white); }
