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

:root {
  --deep-green:  #1a2f23;
  --forest:      #2d4a37;
  --moss:        #4a7c59;
  --sage:        #8ab09a;
  --pale-sage:   #b8d4c4;
  --off-white:   #f7f3ee;
  --cream:       #ede5d8;
  --warm-beige:  #c8b89a;
  --ink:         #0c0c0c;
  --dark:        #1a1a1a;
  --muted:       #6b7280;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
#cur-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--moss); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease), background .3s;
}
#cur-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid var(--moss); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .5;
  transition: width .35s var(--ease), height .35s var(--ease), opacity .35s, transform .1s linear;
}
body.cur-hover #cur-dot  { transform: translate(-50%,-50%) scale(2.2); background: var(--sage); }
body.cur-hover #cur-ring { width: 52px; height: 52px; opacity: .25; }

/* ─── PAGE LOADER ───────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--deep-green);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
/* CSS-only safety net: hide loader after 3.5s even if JS fails */
#loader { animation: ldrSafetyHide 0s linear 3.5s forwards; }
@keyframes ldrSafetyHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.loader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300; letter-spacing: .4em;
  color: var(--off-white);
  opacity: 0; transform: translateY(16px);
  animation: ldrName .7s var(--ease-out) .3s forwards;
}
@keyframes ldrName { to { opacity:1; transform:translateY(0); } }
.loader-sub {
  font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--sage); margin-top: .6rem;
  opacity: 0; animation: ldrName .7s var(--ease-out) .55s forwards;
}
.loader-track { width: 180px; height: 1px; background: rgba(255,255,255,.12); margin-top: 2.5rem; overflow: hidden; position: relative; }
.loader-fill  { position: absolute; top:0; left:-100%; width:100%; height:100%; background: var(--pale-sage); animation: ldrFill 1.6s var(--ease) .6s forwards; }
@keyframes ldrFill { to { left: 0; } }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: auto 0 auto 0;
  z-index: 1000; padding: 1.8rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .45s var(--ease), background .45s, box-shadow .45s;
}
.nav.solid {
  padding: 1rem 5%;
  background: rgba(247,243,238,.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 40px rgba(0,0,0,.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  letter-spacing: .18em; color: var(--off-white);
  transition: color .4s;
}
.nav-logo em { font-style: normal; color: var(--pale-sage); transition: color .4s; }
.nav.solid .nav-logo    { color: var(--deep-green); }
.nav.solid .nav-logo em { color: var(--moss); }
.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,243,238,.8);
  position: relative; padding-bottom: 2px;
  transition: color .35s;
}
.nav.solid .nav-links a { color: var(--dark); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--moss); transition: width .4s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--pale-sage); }
.nav.solid .nav-links a:hover { color: var(--moss); }

.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.burger span { width: 24px; height: 1.5px; background: var(--off-white); transition: all .4s var(--ease); transform-origin: center; }
.nav.solid .burger span { background: var(--dark); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-menu {
  position: fixed; inset: 0; background: var(--deep-green); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  transform: translateX(100%); transition: transform .55s cubic-bezier(.77,0,.175,1);
}
.mob-menu.open { transform: translateX(0); }
.mob-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--off-white); letter-spacing: .08em;
  opacity: 0; transform: translateX(30px);
  transition: color .35s, opacity .45s var(--ease), transform .45s var(--ease);
}
.mob-menu.open a              { opacity:1; transform:translateX(0); }
.mob-menu.open a:nth-child(1) { transition-delay:.08s; }
.mob-menu.open a:nth-child(2) { transition-delay:.14s; }
.mob-menu.open a:nth-child(3) { transition-delay:.20s; }
.mob-menu.open a:nth-child(4) { transition-delay:.26s; }
.mob-menu.open a:nth-child(5) { transition-delay:.32s; }
.mob-menu a:hover              { color: var(--pale-sage); }

/* ─── HERO ──────────────────────────────────────────────────── */
#hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: -12%; background-size: cover; background-position: center; animation: heroZoom 22s var(--ease) infinite alternate; will-change: transform; }
.hero-bg-video {
  width: calc(100% + 24%); height: calc(100% + 24%);
  object-fit: cover; object-position: center;
  pointer-events: none;
}
@keyframes heroZoom { from { transform:scale(1); } to { transform:scale(1.09); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(8,22,14,.72) 0%, rgba(26,47,35,.48) 55%, rgba(8,22,14,.78) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px; pointer-events: none;
}
.hero-cnt { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 880px; }
.hero-tag { display: inline-block; font-size: .62rem; letter-spacing: .45em; text-transform: uppercase; color: var(--pale-sage); margin-bottom: 1.6rem; opacity: 0; transform: translateY(18px); animation: slideUp .8s var(--ease-out) 1.9s forwards; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.4rem, 8.5vw, 7.2rem); font-weight: 300; line-height: 1.04; letter-spacing: .015em; color: var(--off-white); margin-bottom: 1.4rem; opacity: 0; transform: translateY(32px); animation: slideUp .9s var(--ease-out) 2.1s forwards; }
.hero-title em { font-style: italic; color: var(--pale-sage); }
.hero-sub { font-size: clamp(.8rem, 1.4vw, .95rem); font-weight: 300; letter-spacing: .18em; color: rgba(247,243,238,.68); margin-bottom: 3rem; opacity: 0; transform: translateY(18px); animation: slideUp .8s var(--ease-out) 2.3s forwards; }
.hero-btns { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(18px); animation: slideUp .8s var(--ease-out) 2.5s forwards; }
@keyframes slideUp { to { opacity:1; transform:translateY(0); } }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 2.4rem; font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; border: none; position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.btn span { position: relative; z-index: 1; }
.btn::before { content: ''; position: absolute; inset: 0; transform: translateX(-102%); transition: transform .45s cubic-bezier(.77,0,.175,1); }
.btn:hover::before  { transform: translateX(0); }
.btn:hover          { transform: translateY(-2px); }
.btn-primary { background: var(--moss); color: var(--off-white); }
.btn-primary::before { background: var(--forest); }
.btn-primary:hover   { box-shadow: 0 12px 40px rgba(74,124,89,.42); }
.btn-ghost { background: transparent; color: var(--off-white); border: 1px solid rgba(247,243,238,.35); }
.btn-ghost::before { background: rgba(247,243,238,.1); }
.btn-ghost:hover   { border-color: rgba(247,243,238,.75); }
.btn-dark { background: var(--deep-green); color: var(--off-white); }
.btn-dark::before { background: var(--moss); }
.btn-dark:hover   { box-shadow: 0 12px 40px rgba(74,124,89,.3); }

.scroll-arrow { position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; opacity: 0; animation: slideUp 1s var(--ease-out) 3.1s forwards; }
.scroll-arrow span { font-size: .56rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(247,243,238,.4); }
.arrow-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(247,243,238,.45), transparent); transform-origin: top; animation: arrowPulse 2.2s var(--ease) 3.2s infinite; }
@keyframes arrowPulse { 0% { transform:scaleY(0); opacity:1; } 55% { transform:scaleY(1); opacity:1; } 100% { transform:scaleY(1); opacity:0; } }

/* ─── SHARED ────────────────────────────────────────────────── */
.section { padding: 9rem 5%; }
.label-tag { display: flex; align-items: center; gap: .9rem; font-size: .62rem; letter-spacing: .4em; text-transform: uppercase; color: var(--moss); margin-bottom: .9rem; }
.label-tag::before { content: ''; flex-shrink: 0; width: 28px; height: 1px; background: var(--moss); }
.label-tag.light { color: var(--pale-sage); }
.label-tag.light::before { background: var(--pale-sage); }
.label-tag.center { justify-content: center; }
.label-tag.center::before { display:none; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.4rem; }
.sec-title em { font-style: italic; }
.sec-body { font-size: .95rem; line-height: 1.85; font-weight: 300; color: var(--muted); }

.rv   { opacity:0; transform:translateY(44px);  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.rv-l { opacity:0; transform:translateX(-52px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.rv-r { opacity:0; transform:translateX(52px);  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.rv.in, .rv-l.in, .rv-r.in { opacity:1; transform:none; }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
#about { background: var(--deep-green); color: var(--off-white); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.about-img-wrap { position: relative; z-index: 0; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-frame { position: absolute; top: -18px; right: -18px; width: 100%; height: 100%; border: 1px solid rgba(138,176,154,.25); z-index: -1; pointer-events: none; }
.about-badge { position: absolute; bottom: -24px; right: -24px; width: 118px; height: 118px; background: var(--moss); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--off-white); line-height: 1; }
.badge-lbl { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(247,243,238,.7); margin-top: .3rem; }
.about-cnt .label-tag { color: var(--pale-sage); }
.about-cnt .label-tag::before { background: var(--pale-sage); }
.about-cnt .sec-title { color: var(--off-white); }
.about-cnt .sec-body  { color: rgba(247,243,238,.68); }
.about-sig { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-style: italic; color: var(--pale-sage); margin-top: 2rem; }
.about-stats { display: flex; gap: 2.8rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(247,243,238,.1); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--pale-sage); line-height: 1; }
.stat-l { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,238,.42); margin-top: .25rem; }

/* ─── PORTFOLIO ─────────────────────────────────────────────── */
#portfolio { background: var(--off-white); }
.port-head { max-width: 1200px; margin: 0 auto 3.5rem; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.6rem; }
.port-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.flt { padding: .5rem 1.4rem; font-size: .65rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; border: 1px solid rgba(26,47,35,.18); background: transparent; color: var(--dark); cursor: pointer; transition: background .35s, color .35s, border-color .35s; }
.flt:hover, .flt.active { background: var(--deep-green); color: var(--off-white); border-color: var(--deep-green); }
.port-grid { max-width: 1200px; margin: 0 auto; columns: 3; column-gap: 1.4rem; }
.port-item { break-inside: avoid; margin-bottom: 1.4rem; position: relative; overflow: hidden; cursor: pointer; transition: opacity .45s var(--ease), transform .45s var(--ease); }
.port-item.hide { display:none; }
.port-item img,
.port-item video { width: 100%; display: block; transition: transform .65s var(--ease); }
.port-item:hover img,
.port-item:hover video { transform: scale(1.055); }

/* Video items - aspect ratios same as images */
.port-item.is-video { background: var(--ink); }
.port-item.is-video video { object-fit: cover; }
.port-item:nth-child(5n+1).is-video video { aspect-ratio:3/4; }
.port-item:nth-child(5n+2).is-video video { aspect-ratio:4/3; }
.port-item:nth-child(5n+3).is-video video { aspect-ratio:1/1; }
.port-item:nth-child(5n+4).is-video video { aspect-ratio:3/4; }
.port-item:nth-child(5n+5).is-video video { aspect-ratio:16/9; }

.play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(247,243,238,.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--deep-green);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.play-icon svg { width: 26px; height: 26px; margin-left: 4px; }
.port-item:hover .play-icon { opacity: 0; transform: translate(-50%,-50%) scale(.7); }

/* Lightbox video */
.lbx video {
  max-width: 92vw; max-height: 90vh;
  background: #000;
  transform: scale(.9);
  transition: transform .45s var(--ease-out);
}
.lbx.on video { transform: scale(1); }
.port-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,22,14,.82) 0%, transparent 55%); opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 1.4rem; }
.port-item:hover .port-over { opacity: 1; }
.port-ttl { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--off-white); font-weight: 400; }
.port-cat { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--pale-sage); margin-top: .2rem; }
.port-item:nth-child(5n+1) img { aspect-ratio:3/4; object-fit:cover; }
.port-item:nth-child(5n+2) img { aspect-ratio:4/3; object-fit:cover; }
.port-item:nth-child(5n+3) img { aspect-ratio:1/1; object-fit:cover; }
.port-item:nth-child(5n+4) img { aspect-ratio:3/4; object-fit:cover; }
.port-item:nth-child(5n+5) img { aspect-ratio:16/9; object-fit:cover; }

.lbx { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.lbx.on { opacity:1; visibility:visible; }
.lbx img { max-width: 92vw; max-height: 90vh; object-fit: contain; transform: scale(.9); transition: transform .45s var(--ease-out); }
.lbx.on img { transform: scale(1); }
.lbx-close { position: absolute; top: 1.8rem; right: 1.8rem; width: 42px; height: 42px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lbx-close::before, .lbx-close::after { content:''; position:absolute; width:26px; height:1px; background:#fff; }
.lbx-close::before { transform:rotate(45deg); }
.lbx-close::after  { transform:rotate(-45deg); }

/* ─── SERVICES ──────────────────────────────────────────────── */
#services { background: var(--cream); }
.svc-wrap { max-width: 1200px; margin: 0 auto; }
.svc-hdr  { text-align: center; margin-bottom: 5rem; }
.svc-hdr .sec-body { max-width: 480px; margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.svc-card { background: var(--off-white); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.svc-card::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:3px; background: var(--moss); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-9px); box-shadow: 0 28px 70px rgba(26,47,35,.14); }
.svc-num { position: absolute; top: 2rem; right: 2rem; font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: rgba(26,47,35,.055); line-height: 1; }
.svc-ico { width: 44px; height: 44px; margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center; }
.svc-ico svg { width: 32px; height: 32px; stroke: var(--moss); fill: none; stroke-width: 1.5; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: .9rem; color: var(--deep-green); }
.svc-card p  { font-size: .88rem; line-height: 1.75; font-weight: 300; color: var(--muted); }
.svc-lnk { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); font-weight: 500; transition: gap .35s; }
.svc-lnk:hover { gap: 1rem; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
#testimonials { background: var(--deep-green); overflow: hidden; }
.tst-wrap { max-width: 1200px; margin: 0 auto; }
.tst-hdr  { text-align: center; margin-bottom: 4rem; }
.tst-hdr .sec-title { color: var(--off-white); }
.tst-viewport { overflow: hidden; }
.tst-track { display: flex; gap: 2rem; transition: transform .65s cubic-bezier(.25,.46,.45,.94); }
.tst-card { flex-shrink: 0; min-width: calc(33.333% - 1.334rem); background: rgba(247,243,238,.04); border: 1px solid rgba(247,243,238,.09); padding: 2.8rem; transition: background .35s; }
.tst-card:hover { background: rgba(247,243,238,.07); }
.stars { display:flex; gap:3px; margin-bottom:1.4rem; }
.stars span { color:#d4af37; font-size:.9rem; }
.tst-txt { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-style: italic; font-weight: 300; line-height: 1.75; color: rgba(247,243,238,.82); margin-bottom: 2rem; }
.tst-auth { display:flex; align-items:center; gap:1rem; }
.tst-av   { width:44px; height:44px; border-radius:50%; object-fit:cover; }
.tst-name { font-size:.88rem; font-weight:500; color:var(--off-white); }
.tst-role { font-size:.65rem; letter-spacing:.1em; color:var(--pale-sage); margin-top:.2rem; }
.tst-controls { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:3rem; }
.arr-btn { width:44px; height:44px; border: 1px solid rgba(247,243,238,.2); background:transparent; cursor:pointer; display:flex; align-items:center; justify-content:center; transition: background .35s, border-color .35s; }
.arr-btn:hover { background:var(--moss); border-color:var(--moss); }
.arr-btn svg { width:16px; height:16px; stroke:var(--off-white); fill:none; }
.tst-dots { display:flex; gap:.5rem; }
.tst-dot { width:6px; height:6px; border-radius:3px; background:rgba(247,243,238,.25); cursor:pointer; transition: width .4s var(--ease), background .35s; }
.tst-dot.on { width:20px; background:var(--pale-sage); }

/* ─── CONTACT ───────────────────────────────────────────────── */
#contact { background: var(--off-white); }
.cct-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.55fr; gap: 7rem; align-items: start; }
.cct-info .sec-title { margin-bottom: 1.8rem; }
.cct-txt { font-size:.95rem; line-height:1.8; font-weight:300; color:var(--muted); margin-bottom:2.8rem; }
.cct-items { display:flex; flex-direction:column; gap:1.4rem; margin-bottom:2.8rem; }
.cct-item  { display:flex; align-items:center; gap:1rem; }
.cct-ico   { width:40px; height:40px; flex-shrink:0; background: var(--cream); display:flex; align-items:center; justify-content:center; }
.cct-ico svg { width:18px; height:18px; stroke:var(--moss); fill:none; stroke-width:1.5; }
.cct-lbl { font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:.2rem; }
.cct-val { font-size:.9rem; color:var(--dark); }
.cct-val a { transition:color .35s; }
.cct-val a:hover { color:var(--moss); }
.socials { display:flex; gap:.9rem; }
.soc-btn { width:40px; height:40px; border: 1px solid rgba(26,47,35,.18); display:flex; align-items:center; justify-content:center; transition: background .35s, border-color .35s; }
.soc-btn svg { width:15px; height:15px; stroke:var(--dark); fill:none; stroke-width:1.5; transition:stroke .35s; }
.soc-btn:hover { background:var(--deep-green); border-color:var(--deep-green); }
.soc-btn:hover svg { stroke:var(--off-white); }

.cct-form { display:flex; flex-direction:column; gap:1.5rem; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.f-grp { position:relative; }
.f-grp label { position:absolute; top:1rem; left:1rem; font-size:.8rem; color:var(--muted); transition: top .35s var(--ease), font-size .35s, color .35s; pointer-events:none; letter-spacing:.04em; }
.f-grp input, .f-grp textarea, .f-grp select { width:100%; padding:1.5rem 1rem .5rem; background:var(--cream); border:none; border-bottom:1px solid rgba(26,47,35,.2); font-size:.92rem; color:var(--dark); transition: border-color .35s, background .35s; outline:none; -webkit-appearance:none; appearance:none; }
.f-grp textarea { resize:none; height:150px; }
.f-grp select { padding-top:1.5rem; }
.f-grp input:focus, .f-grp textarea:focus, .f-grp select:focus { border-bottom-color: var(--moss); background: rgba(200,184,154,.2); }
.f-grp input:focus ~ label, .f-grp input:not(:placeholder-shown) ~ label, .f-grp textarea:focus ~ label, .f-grp textarea:not(:placeholder-shown) ~ label, .f-grp select:focus ~ label, .f-grp select.filled ~ label { top:.38rem; font-size:.62rem; letter-spacing:.1em; color:var(--moss); }
.f-grp input::placeholder, .f-grp textarea::placeholder { color:transparent; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--ink); padding: 5.5rem 5% 2.8rem; }
.ft-top { max-width:1200px; margin:0 auto 4rem; display:grid; grid-template-columns:2fr 1fr 1fr; gap:4rem; }
.ft-logo { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:300; letter-spacing:.18em; color:var(--off-white); display:block; margin-bottom:1.4rem; }
.ft-logo em { font-style:normal; color:var(--pale-sage); }
.ft-desc { font-size:.88rem; line-height:1.75; color:rgba(247,243,238,.35); font-weight:300; max-width:270px; }
.ft-col h4 { font-size:.62rem; letter-spacing:.3em; text-transform:uppercase; color:var(--pale-sage); margin-bottom:1.4rem; }
.ft-lnks   { display:flex; flex-direction:column; gap:.75rem; }
.ft-lnks a { font-size:.88rem; color:rgba(247,243,238,.4); transition:color .35s; }
.ft-lnks a:hover { color:var(--pale-sage); }
.ft-btm { max-width:1200px; margin:0 auto; border-top:1px solid rgba(247,243,238,.06); padding-top:2rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.ft-copy { font-size:.72rem; color:rgba(247,243,238,.25); letter-spacing:.05em; }
.ft-soc  { display:flex; gap:1.6rem; }
.ft-soc a { font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(247,243,238,.28); transition:color .35s; }
.ft-soc a:hover { color:var(--pale-sage); }

.toast { position:fixed; bottom:2rem; right:2rem; z-index:10000; background:var(--deep-green); color:var(--off-white); padding:.85rem 1.8rem; font-size:.8rem; letter-spacing:.05em; transform:translateY(80px); opacity:0; transition: transform .45s var(--ease-out), opacity .45s; }
.toast.show { transform:translateY(0); opacity:1; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .tst-card { min-width: calc(50% - 1rem); }
}
@media (max-width: 768px) {
  .nav-links { display:none; }
  .burger    { display:flex; }
  body       { cursor:auto; }
  #cur-dot, #cur-ring { display:none; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .about-frame { display:none; }
  .port-grid  { columns:2; }
  .svc-grid   { grid-template-columns:1fr; }
  .cct-grid   { grid-template-columns:1fr; gap:3.5rem; }
  .f-row      { grid-template-columns:1fr; }
  .ft-top     { grid-template-columns:1fr; gap:2.5rem; }
  .tst-card   { min-width:100%; }
  .section    { padding:6rem 5%; }
}
@media (max-width: 480px) {
  .port-grid  { columns:1; }
  .hero-btns  { flex-direction:column; align-items:center; }
  .about-stats{ gap:1.6rem; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 3.8rem); }
}
