/* ═══════════════════════════════════════════════════════
   FORAGE MEDIA — styles.css (Tailwind companion)
   Only contains things Tailwind cannot express:
   1. CSS Custom Properties (design tokens)
   2. Clip-path shapes (hex)
   3. Keyframe animations
   4. Complex pseudo-selectors & states
   5. Third-party overrides
═══════════════════════════════════════════════════════ */

/* ─── 1. TOKENS ─── */
:root {
  --orange:        #C4841E;
  --orange-dim:    rgba(196,132,30,0.18);
  --orange-glow:   rgba(196,132,30,0.08);
  --black:         #070604;
  --black-surface: #0d0b07;
  --black-card:    #111009;
  --black-border:  rgba(196,132,30,0.14);
  --white:         #faf8f4;
  --white-60:      rgba(250,248,244,0.6);
  --white-30:      rgba(250,248,244,0.3);
  --white-10:      rgba(250,248,244,0.07);
  --green:         #52c97a;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Century Gothic','AppleGothic','Gill Sans MT','Gill Sans',Futura,sans-serif;
  --ease-out:      cubic-bezier(0.16,1,0.3,1);
  --ease-in-out:   cubic-bezier(0.45,0,0.55,1);
  --nav-h:         88px;
}

/* ─── 2. BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ─── 3. CURSOR ─── */
#cur-dot {
  position: fixed; width: 7px; height: 7px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .08s var(--ease-out), background .2s;
}
#cur-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(227,126,3,0.55); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              border-color .3s, transform .15s var(--ease-out);
}
body.cursor-hover #cur-dot  { transform: translate(-50%,-50%) scale(0); }
body.cursor-hover #cur-ring { width:52px; height:52px; border-color:var(--orange); background:rgba(227,126,3,0.06); }

/* ─── 4. BACKGROUND ─── */
.hex-bg { position:fixed; top:0; left:0; right:0; bottom:0; z-index:0; overflow:hidden; pointer-events:none; }
.hex-grid-svg { width:100%; height:100%; opacity:0.07; }

.particle {
  position: fixed; pointer-events: none; z-index: 0;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background: var(--orange); opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { opacity:0; transform:translateY(0) rotate(0deg); }
  12%  { opacity:0.1; }
  88%  { opacity:0.05; }
  100% { opacity:0; transform:translateY(-90px) rotate(55deg); }
}

/* ─── 5. NAV ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:600;
  display:flex; align-items:center; justify-content:space-between;
  padding:30px 72px;
  transition: padding .4s var(--ease-out), background .4s;
}
nav.scrolled {
  padding:18px 72px;
  background:rgba(7,6,4,0.92);
  backdrop-filter:blur(20px) saturate(1.4);
  border-bottom:1px solid var(--black-border);
}

.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--white); flex-shrink:0; z-index:2; }
.nav-logo-img { height:30px; width:auto; display:block; transition:opacity .25s var(--ease-out); }
.nav-logo:hover .nav-logo-img { opacity:0.82; }

.nav-links { display:flex; gap:44px; list-style:none; align-items:center; }
.nav-links a {
  font-size:11px; letter-spacing:0.17em; text-transform:uppercase;
  color:var(--white-60); text-decoration:none;
  transition:color .22s; position:relative; padding-bottom:3px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:1px; background:var(--orange);
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease-out);
}
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { transform:scaleX(1); }

.nav-cta {
  font-family:var(--font-body); font-size:10px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--orange); background:transparent; border:1px solid rgba(227,126,3,0.45);
  padding:11px 26px; border-radius:2px; cursor:none;
  transition:background .25s, color .25s, border-color .25s; white-space:nowrap;
}
.nav-cta:hover { background:var(--orange); color:var(--black); border-color:var(--orange); }

/* Hamburger */
.nav-hamburger {
  display:none; flex-direction:column; justify-content:center; align-items:center;
  gap:5px; width:40px; height:40px; background:none; border:none;
  cursor:none; z-index:2; padding:4px; position:relative;
}
.nav-hamburger span {
  display:block; width:24px; height:1.5px; background:var(--white);
  border-radius:2px; transition:transform .35s var(--ease-out), opacity .25s, background .25s;
  transform-origin:center;
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); background:var(--orange); }
.nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); background:var(--orange); }

/* Mobile drawer */
.nav-mobile-drawer {
  position:fixed; inset:0; background:rgba(7,6,4,0.97);
  backdrop-filter:blur(28px) saturate(1.3); z-index:500;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform:translateY(-12px);
  transition:opacity .38s var(--ease-out), transform .38s var(--ease-out);
}
.nav-mobile-drawer.open { opacity:1; pointer-events:auto; transform:translateY(0); }
.nav-mobile-drawer ul { list-style:none; display:flex; flex-direction:column; align-items:center; width:100%; padding:0 32px; }
.nav-mobile-drawer ul li { width:100%; border-bottom:1px solid var(--black-border); }
.nav-mobile-drawer ul li:first-child { border-top:1px solid var(--black-border); }
.nav-mobile-drawer ul a {
  display:block; font-family:var(--font-display); font-size:clamp(28px,7vw,40px);
  font-weight:600; letter-spacing:0.04em; color:var(--white-60); text-decoration:none;
  padding:20px 0; transition:color .22s, padding-left .22s;
}
.nav-mobile-drawer ul a:hover { color:var(--orange); padding-left:10px; }

/* ─── 6. HERO ─── */
#hero {
  position:relative; z-index:2; min-height:100vh;
  display:grid; grid-template-columns:1.15fr 0.85fr; align-items:center;
}
.hero-left {
  padding:130px 60px 90px 72px;
  display:flex; flex-direction:column; gap:34px;
}
.hero-left > * {
  opacity:0; transform:translateY(22px);
  animation:slide-up .75s var(--ease-out) forwards;
}
.hero-left > *:nth-child(1) { animation-delay:0.1s; }
.hero-left > *:nth-child(2) { animation-delay:0.24s; }
.hero-left > *:nth-child(3) { animation-delay:0.38s; }
.hero-left > *:nth-child(4) { animation-delay:0.52s; }
.hero-left > *:nth-child(5) { animation-delay:0.66s; }
@keyframes slide-up { to { opacity:1; transform:none; } }

.eyebrow { display:flex; align-items:center; gap:14px; font-size:10px; letter-spacing:0.24em; text-transform:uppercase; color:var(--orange); }
.eyebrow-pulse { width:5px; height:5px; border-radius:50%; background:var(--orange); animation:pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(2.2);opacity:0.35;} }

.hero-headline { font-family:var(--font-display); font-size:clamp(54px,6.2vw,90px); font-weight:700; line-height:0.97; letter-spacing:-0.015em; }
.hero-headline .line-italic { font-style:italic; color:var(--orange); display:block; position:relative; }
.hero-headline .line-italic::after {
  content:''; position:absolute; bottom:2px; left:0;
  height:2px; width:0; background:linear-gradient(90deg,var(--orange),transparent);
  animation:underline-in 1.4s 1s var(--ease-out) forwards;
}
@keyframes underline-in { to { width:85%; } }

.hero-sub { font-size:14.5px; font-weight:300; line-height:1.9; letter-spacing:0.025em; color:var(--white-60); max-width:450px; }
.hero-sub strong { color:var(--white); font-weight:400; }

.hero-cta-row { display:flex; align-items:center; gap:28px; margin-top:6px; }

/* Hero right */
.hero-right { position:relative; height:100vh; overflow:hidden; align-self:stretch; }
/*.hero-right > svg { position:absolute; inset:0; width:100%; height:100%; }*/
.hero-right > svg {
  position: absolute;
  width: 115%;
  height: 100%;
  left: -5%;
  top: 0;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── 7. BUTTONS ─── */
.btn-primary {
  font-family:var(--font-body); font-size:10px; letter-spacing:0.2em; text-transform:uppercase;
  font-weight:600; color:var(--black); background:var(--orange); border:none;
  padding:17px 44px; border-radius:2px; cursor:none; position:relative; overflow:hidden;
  transition:transform .2s var(--ease-out);
}
.btn-primary::before {
  content:''; position:absolute; inset:0; background:#f5a02a;
  transform:translateX(-100%); transition:transform .38s var(--ease-out);
}
.btn-primary:hover { transform:translateY(-2px); }
.btn-primary:hover::before { transform:translateX(0); }
.btn-primary span { position:relative; z-index:1; }

/* ─── 8. ABOUT ─── */
#about { position:relative; z-index:2; padding:140px 72px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-tagline { font-family:var(--font-display); font-size:22px; font-style:italic; color:var(--orange); margin:6px 0 28px; letter-spacing:0.01em; }
.about-body { font-size:14.5px; font-weight:300; line-height:1.95; letter-spacing:0.025em; color:var(--white-60); max-width:590px; }
.about-body strong { color:var(--white); font-weight:400; }
.about-quote { margin-top:40px; padding-left:22px; border-left:2px solid var(--orange); }
.about-quote p { font-family:var(--font-display); font-size:19px; font-style:italic; line-height:1.6; color:var(--white-60); }
.about-pillars { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--black-border); border:1px solid var(--black-border); border-radius:10px; overflow:hidden; }
.pillar { background:var(--black-card); padding:36px 28px; transition:background .3s; }
.pillar:hover { background:rgba(227,126,3,0.05); }
.pillar-icon { width:36px; height:36px; margin-bottom:16px; color:var(--orange); }
.pillar-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.4; }
.pillar-name { font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--white); margin-bottom:8px; }
.pillar-text { font-size:12px; line-height:1.85; letter-spacing:0.03em; color:var(--white-60); }

/* ─── 9. SERVICES / HEX CLUSTER ─── */
#services { position:relative; z-index:2; padding:120px 72px 160px; background:radial-gradient(ellipse at 50% 0%,rgba(227,126,3,0.04) 0%,transparent 65%); overflow:hidden; }
.services-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:72px; }
.services-intro { font-size:13.5px; line-height:1.85; color:var(--white-60); max-width:300px; text-align:right; letter-spacing:0.025em; }

.hex-cluster { position:relative; width:880px; height:510px; margin:0 auto; user-select:none; }

.hx {
  position:absolute; width:220px; height:254px; cursor:none; perspective:1000px;
  opacity:0; transition:opacity .65s var(--ease-out), transform .65s var(--ease-out);
  transform:translateY(22px) scale(0.94);
}
.hx.in { opacity:1; transform:none; }

.hx-flipper {
  position:absolute; inset:0; transform-style:preserve-3d;
  transition:transform .72s cubic-bezier(0.38,0,0.12,1);
}
.hx:hover .hx-flipper,
.hx.flipped .hx-flipper { transform:rotateY(180deg); }

.hx-shell {
  position:absolute; inset:0;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background:linear-gradient(150deg,#f5a030 0%,#e37e03 55%,#b85c00 100%);
  transition:filter .3s;
}
.hx:hover .hx-shell { filter:drop-shadow(0 0 22px rgba(227,126,3,0.65)); }

.hx-front {
  position:absolute; inset:3px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background:#111009; backface-visibility:hidden; -webkit-backface-visibility:hidden;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:13px; padding:30px 28px; text-align:center;
}
.hx-back {
  position:absolute; inset:3px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background:linear-gradient(155deg,#1c1000 0%,#0e0800 100%);
  backface-visibility:hidden; -webkit-backface-visibility:hidden;
  transform:rotateY(180deg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; padding:20px 30px; text-align:center;
}

.hx-icon { width:40px; height:40px; color:var(--orange); flex-shrink:0; }
.hx-icon svg, .hx-icon-sm svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.hx-title { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--white); line-height:1.2; letter-spacing:0.01em; }
.hx-icon-sm { width:24px; height:24px; color:var(--orange); opacity:0.8; flex-shrink:0; }
.hx-desc { font-size:10.5px; line-height:1.7; color:rgba(250,248,244,0.72); letter-spacing:0.025em; }
.hx-tags { display:flex; gap:4px; flex-wrap:wrap; justify-content:center; margin-top:3px; }
.hx-tags span { font-size:7.5px; letter-spacing:0.13em; text-transform:uppercase; color:var(--orange); border:1px solid rgba(227,126,3,0.32); padding:2px 6px; border-radius:2px; }

.hx-center { width:244px; height:282px; }
.hx-center .hx-shell { background:linear-gradient(150deg,#ffb040 0%,#e37e03 45%,#a04e00 100%); filter:drop-shadow(0 0 14px rgba(227,126,3,0.2)); }
.hx-center .hx-front { background:#0f0c04; }
.hx-center .hx-title { font-size:18px; }
.hx-center .hx-icon  { width:46px; height:46px; }

/* Hero hex cells — flippable on scroll */
.hero-hex-cell {
  position: absolute;
  perspective: 900px;
  cursor: default;
}
.hero-hex-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(0.38,0,0.12,1);
}
.hero-hex-cell.scrolled .hero-hex-inner { transform: rotateY(180deg); }

.hero-hex-face {
  position: absolute; inset: 0;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.hero-hex-front { /* transparent — SVG polygon handles color */ }
.hero-hex-back {
  transform: rotateY(180deg);
  background: rgba(15,10,2,0.97);
  border: none;
}

/* Instagram stat inside hex back */
.ig-stat-wrap { display:flex; flex-direction:column; align-items:center; gap:3px; }
.ig-stat-num  { font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--orange); line-height:1; }
.ig-stat-label { font-size:8px; letter-spacing:0.14em; text-transform:uppercase; color:rgba(250,248,244,0.55); }
.ig-stat-icon  { width:18px; height:18px; color:var(--orange); margin-bottom:2px; }
.ig-stat-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; }

/* ─── 10. EXPERTISE ─── */
#expertise { position:relative; z-index:2; padding:120px 72px; }
.expertise-inner { display:grid; grid-template-columns:0.85fr 1.15fr; gap:80px; align-items:center; }
.expertise-steps { display:flex; flex-direction:column; }
.expertise-step { display:flex; gap:26px; padding:30px 0; border-bottom:1px solid var(--black-border); transition:background .3s; }
.expertise-step:first-child { padding-top:0; }
.expertise-step:last-child  { border-bottom:none; }
.step-n { font-family:var(--font-display); font-size:42px; font-weight:700; color:var(--orange); opacity:0.75; flex-shrink:0; line-height:1; transition:opacity .3s; }
.expertise-step:hover .step-n { opacity:0.75; }
.step-title { font-family:var(--font-display); font-size:21px; font-weight:600; color:var(--white); margin-bottom:7px; }
.step-text { font-size:12.5px; line-height:1.88; color:var(--white-60); letter-spacing:0.025em; }
.perf-cards { display:flex; flex-direction:column; gap:14px; }
.perf-card { background:rgba(255,255,255,0.03); border:1px solid var(--black-border); border-radius:10px; padding:22px 26px; backdrop-filter:blur(8px); transition:transform .3s var(--ease-out), border-color .3s; }
.perf-card:hover { transform:translateX(7px); border-color:rgba(227,126,3,0.35); }
.pc-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.pc-label { font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--white-60); }
.pc-track { height:3px; background:rgba(255,255,255,0.06); border-radius:2px; overflow:hidden; }
.pc-fill { height:100%; border-radius:2px; background:linear-gradient(90deg,#b85e00,var(--orange),#f5a02a); animation:fill-in 2s 1.2s var(--ease-out) both; }
@keyframes fill-in { from { width:0; } }

/* ─── 11. INSIGHTS ─── */
#insights { position:relative; z-index:2; padding:120px 72px; background:radial-gradient(ellipse at 50% 100%,rgba(227,126,3,0.05) 0%,transparent 60%); }
.insights-header { text-align:center; margin-bottom:70px; }
.insights-header .section-tag { justify-content:center; }
.insights-header .section-tag::before { display:none; }
.insights-subhead { font-family:var(--font-display); font-size:14px; font-style:italic; color:var(--white-50); letter-spacing:0.04em; margin-top:12px; text-align:center; }
.insights-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.insight-card { border:1px solid var(--black-border); border-radius:10px; padding:34px 26px; background:rgba(255,255,255,0.018); position:relative; overflow:hidden; transition:border-color .3s, background .3s; cursor:none; }
.insight-card:hover { border-color:rgba(227,126,3,0.38); background:rgba(227,126,3,0.038); }
.insight-card-num { position:absolute; top:-14px; right:18px; font-family:var(--font-display); font-size:90px; font-weight:700; color:var(--orange); opacity:0.4; line-height:1; pointer-events:none; user-select:none; }
.insight-icon { width:32px; height:32px; margin-bottom:18px; color:var(--orange); }
.insight-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.4; stroke-linecap:round; }
.insight-title { font-family:var(--font-display); font-size:20px; font-weight:600; color:var(--white); margin-bottom:10px; line-height:1.25; }
.insight-text { font-size:12px; line-height:1.88; color:var(--white-60); letter-spacing:0.03em; }

/* ─── 12. CONTACT ─── */
#contact { position:relative; z-index:2; padding:120px 72px 100px; }
.contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.contact-desc { font-size:15px; line-height:1.9; color:var(--white-60); margin-top:28px; max-width:380px; letter-spacing:0.02em; }
.contact-info { margin-top:48px; display:flex; flex-direction:column; gap:20px; }
.ci-item { display:flex; flex-direction:column; gap:4px; }
.ci-label { font-size:10px; letter-spacing:0.15em; text-transform:uppercase; color:var(--orange); }
.ci-val { font-size:14px; color:var(--white-60); letter-spacing:0.03em; }
.contact-form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:flex; flex-direction:column; gap:7px; position:relative; }
.field-label { font-size:9px; letter-spacing:0.18em; text-transform:uppercase; color:var(--orange); }
.field-input, .field-select, .field-textarea {
  font-family:var(--font-body); font-size:12.5px; letter-spacing:0.03em;
  color:var(--white); background:rgba(255,255,255,0.03);
  border:1px solid rgba(227,126,3,0.2); border-radius:3px; padding:13px 16px;
  outline:none; cursor:text; transition:border-color .25s, background .25s;
}
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color:var(--orange); background:rgba(227,126,3,0.04); }
.field-input::placeholder, .field-textarea::placeholder { color:var(--white-30); }
.field-input.valid, .field-select.valid, .field-textarea.valid { border-color:rgba(82,201,122,0.55); }
.field-input.invalid, .field-select.invalid, .field-textarea.invalid { border-color:rgba(220,80,80,0.65); background:rgba(220,80,80,0.04); }
.field-error { font-size:9px; letter-spacing:0.08em; color:rgba(220,80,80,0.9); min-height:0; max-height:0; overflow:hidden; transition:max-height .25s var(--ease-out), opacity .25s; opacity:0; }
.field-error.show { max-height:40px; opacity:1; }
.field-select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23e37e03' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; cursor:pointer; }
.field-select option { background:#0d0b07; }
.field-textarea { resize:vertical; min-height:110px; }
.btn-submit { align-self:flex-start; font-family:var(--font-body); font-size:10px; letter-spacing:0.2em; text-transform:uppercase; font-weight:600; color:var(--black); background:var(--orange); border:none; padding:17px 50px; border-radius:2px; cursor:none; position:relative; overflow:hidden; transition:transform .22s var(--ease-out), background .3s; margin-top:4px; }
.btn-submit::before { content:''; position:absolute; inset:0; background:#f5a02a; transform:translateX(-100%); transition:transform .38s var(--ease-out); }
.btn-submit:hover { transform:translateY(-2px); }
.btn-submit:hover::before { transform:translateX(0); }
.btn-submit:disabled { opacity:0.6; cursor:default; transform:none; }
.btn-submit span { position:relative; z-index:1; }
.form-success-toast { display:flex; align-items:flex-start; gap:14px; padding:20px 24px; background:rgba(82,201,122,0.08); border:1px solid rgba(82,201,122,0.3); border-radius:6px; opacity:0; transform:translateY(10px); transition:opacity .45s var(--ease-out), transform .45s var(--ease-out); pointer-events:none; }
.form-success-toast.show { opacity:1; transform:none; pointer-events:auto; }
.toast-icon { font-size:22px; flex-shrink:0; }
.toast-title { font-family:var(--font-display); font-size:18px; font-weight:600; color:var(--green); margin-bottom:4px; }
.toast-msg { font-size:12px; color:var(--white-60); line-height:1.7; letter-spacing:0.02em; }

/* ─── 13. FOOTER ─── */
footer { position:relative; z-index:2; border-top:1px solid var(--black-border); padding:72px 72px 0; }
.footer-top { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:60px; padding-bottom:60px; border-bottom:1px solid var(--black-border); }
.footer-logo-link { display:inline-block; text-decoration:none; margin-bottom:20px; }
.footer-logo-img { height:30px; width:auto; display:block; transition:opacity .25s; }
.footer-logo-link:hover .footer-logo-img { opacity:0.65; }
.footer-brand-line { font-family:var(--font-display); font-size:15px; font-style:italic; color:var(--orange); letter-spacing:0.03em; margin-bottom:12px; }
.footer-brand-copy { font-size:12px; line-height:1.85; color:var(--white-30); letter-spacing:0.02em; max-width:260px; }
.footer-nav-heading { display:block; font-size:8.5px; letter-spacing:0.22em; text-transform:uppercase; color:var(--orange); margin-bottom:22px; opacity:0.85; }
.footer-socials { display:flex; flex-direction:column; gap:4px; margin-bottom:32px; }
.fsoc { display:flex; align-items:center; gap:12px; padding:9px 14px; border-radius:4px; border:1px solid transparent; text-decoration:none; color:var(--white-30); transition:color .28s var(--ease-out), border-color .28s var(--ease-out), background .28s var(--ease-out), transform .28s var(--ease-out); position:relative; overflow:hidden; }
.fsoc::before { content:''; position:absolute; inset:0; background:var(--orange-glow); transform:translateX(-105%); transition:transform .42s var(--ease-out); border-radius:inherit; }
.fsoc:hover { color:var(--orange); border-color:rgba(196,132,30,0.28); transform:translateX(5px); }
.fsoc:hover::before { transform:translateX(0); }
.fsoc-icon { width:16px; height:16px; flex-shrink:0; display:flex; align-items:center; position:relative; z-index:1; }
.fsoc-icon svg { width:100%; height:100%; }
.fsoc-label { font-size:11px; letter-spacing:0.08em; flex:1; position:relative; z-index:1; }
.fsoc-handle { font-size:9px; letter-spacing:0.05em; opacity:0.5; font-style:italic; font-family:var(--font-display); position:relative; z-index:1; transition:opacity .28s; }
.fsoc:hover .fsoc-handle { opacity:0.85; }
.footer-contact-cta { display:flex; flex-direction:column; gap:5px; padding-top:18px; border-top:1px solid var(--black-border); }
.footer-email-label { font-size:8.5px; letter-spacing:0.22em; text-transform:uppercase; color:var(--orange); opacity:0.75; }
.footer-email-link { font-size:13px; color:var(--white-60); text-decoration:none; letter-spacing:0.03em; transition:color .22s; }
.footer-email-link:hover { color:var(--orange); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:20px 0; }
.footer-copy { font-size:10.5px; letter-spacing:0.06em; color:var(--white-30); }
.footer-location { display:flex; align-items:center; gap:5px; font-size:10.5px; letter-spacing:0.06em; color:var(--white-30); }
.footer-location svg { opacity:0.6; flex-shrink:0; }

/* ─── 14. UTILITIES ─── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal.in { opacity:1; transform:none; }
.reveal-d1 { transition-delay:0.1s; }
.reveal-d2 { transition-delay:0.2s; }
.reveal-d3 { transition-delay:0.3s; }
.reveal-d4 { transition-delay:0.4s; }

.section-tag { display:inline-flex; align-items:center; gap:14px; font-size:9.5px; letter-spacing:0.24em; text-transform:uppercase; color:var(--orange); margin-bottom:18px; }
.section-tag::before { content:''; width:28px; height:1px; background:var(--orange); }
.section-heading { font-family:var(--font-display); font-size:clamp(38px,4.2vw,58px); font-weight:700; line-height:1.05; letter-spacing:-0.01em; }
.section-heading em { font-style:italic; color:var(--orange); }
.section-label { display:flex; align-items:center; gap:14px; font-size:10px; letter-spacing:0.22em; text-transform:uppercase; color:var(--orange); margin-bottom:20px; }
.section-label::before { content:''; width:30px; height:1px; background:var(--orange); }
.section-title { font-family:var(--font-display); font-size:clamp(38px,4.5vw,60px); font-weight:700; line-height:1.08; letter-spacing:-0.01em; }
.section-title em { font-style:italic; color:var(--orange); }

/* scroll cue */
.scroll-cue { position:absolute; bottom:34px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; opacity:0.36; animation:floatCue 2.8s ease-in-out infinite; }
.scroll-cue span { font-size:8.5px; letter-spacing:0.22em; text-transform:uppercase; }
.scroll-line { width:1px; height:38px; background:linear-gradient(to bottom,var(--orange),transparent); }
@keyframes floatCue { 0%,100%{opacity:0.28;transform:translateX(-50%) translateY(0);} 50%{opacity:0.55;transform:translateX(-50%) translateY(8px);} }

/* bee animations */
@keyframes beeMove1 {
  0%   { transform:translate(0,0); }
  25%  { transform:translate(60px,-30px); }
  50%  { transform:translate(30px,50px); }
  75%  { transform:translate(-20px,20px); }
  100% { transform:translate(0,0); }
}
@keyframes beeMove2 {
  0%   { transform:translate(0,0); }
  30%  { transform:translate(-50px,40px); }
  60%  { transform:translate(40px,30px); }
  100% { transform:translate(0,0); }
}

/* ─── 15. RESPONSIVE ─── */
@media (max-width:1280px) {
  .hex-cluster { transform:scale(0.88); transform-origin:top center; height:450px; }
}
@media (max-width:1100px) {
  nav { padding:22px 36px; }
  nav.scrolled { padding:14px 36px; }
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  #hero { grid-template-columns:1fr; min-height:auto; }
  .hero-left { padding:120px 36px 60px; }
  .hero-right { height:55vw; min-height:340px; max-height:520px; }
  #about { grid-template-columns:1fr; padding:80px 36px; gap:48px; }
  .about-body { max-width:100%; }
  #services { padding:80px 36px 100px; }
  .services-header { flex-direction:column; align-items:flex-start; gap:20px; }
  .services-intro { text-align:left; max-width:100%; }
  .hex-cluster { transform:scale(0.74); transform-origin:top center; height:378px; }
  #expertise { padding:80px 36px; }
  .expertise-inner { grid-template-columns:1fr; }
  #insights { padding:80px 36px; }
  .insights-grid { grid-template-columns:1fr 1fr; }
  #contact { padding:80px 36px 70px; }
  .contact-inner { grid-template-columns:1fr; }
  footer { padding:48px 36px 0; }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; padding:20px 0; }
}
@media (max-width:768px) {
  .hex-cluster { transform:scale(0.56); transform-origin:top center; height:286px; }
  #services { padding:60px 20px 80px; }
  .hero-right { height:44vw; min-height:260px; }
  .insights-grid { grid-template-columns:1fr; }
  .about-pillars { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .footer-brand-copy { max-width:100%; }
}
@media (max-width:480px) {
  nav { padding:18px 20px; }
  nav.scrolled { padding:12px 20px; }
  .hero-left { padding:100px 20px 48px; gap:24px; }
  .hero-headline { font-size:clamp(40px,10vw,54px); }
  .hero-sub { font-size:13px; }
  .hero-right { height:55vw; min-height:220px; }
  #about { padding:60px 20px; gap:36px; }
  #expertise { padding:60px 20px; }
  #insights { padding:60px 20px; }
  #contact { padding:60px 20px 50px; }
  .hex-cluster { transform:scale(0.44); transform-origin:top center; height:224px; }
  #services { padding:48px 16px 64px; }
  footer { padding:40px 20px 0; }
  .fsoc-handle { display:none; }
}