/* ============================================================
   KAIZEN WIZARD SOLUTIONS — main.css
   Font: Comfortaa (body/UI) + Cormorant Garamond (display)
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --gold:       #C9922A;
  --gold-light: #E8B84B;
  --gold-dim:   #8A611A;
  --black:      #090909;
  --dark:       #111010;
  --dark2:      #1A1818;
  --dark3:      #242020;
  --white:      #F5F0E8;
  --muted:      #B0A898;           /* lightened slightly so bolder text stays readable */
  --mandisa-red: #971f0d;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background:   var(--black);
  color:        var(--white);
  font-family:  'Comfortaa', cursive;
  font-weight:  500;               /* base weight — heavier than before */
  overflow-x:   hidden;
  line-height:  1.7;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; 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='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='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: linear-gradient(to bottom, rgba(9,9,9,0.97), transparent);
  border-bottom: 1px solid rgba(201,146,42,0.14);
  transition: background 0.4s, border-color 0.4s;
}

.nav-logo {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
}

.nav-logo img { width: 42px; height: 42px; object-fit: contain; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.nav-logo-text span:first-child {
  font-family: 'Comfortaa', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold-light);
  letter-spacing: 0.06em;
}

.nav-logo-text span:last-child {
  font-size: 0.58rem; letter-spacing: 0.3em; color: var(--muted);
  text-transform: uppercase; margin-top: 2px; font-weight: 600;
}

.nav-links { display: flex; gap: 2.4rem; list-style: none; }

.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  transition: color 0.3s; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); border: 1px solid var(--gold-dim);
  padding: 0.55rem 1.5rem; text-decoration: none; transition: all 0.3s;
}

.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── BURGER ── */
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 200;
}

.burger span {
  display: block; height: 1.5px; background: var(--gold);
  transition: transform 0.35s, opacity 0.35s, width 0.35s;
  transform-origin: center;
}

.burger span:nth-child(1) { width: 100%; }
.burger span:nth-child(2) { width: 70%; }
.burger span:nth-child(3) { width: 100%; }

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 100%; }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(9,9,9,0.98); backdrop-filter: blur(16px);
  flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}

.mobile-drawer.open { opacity: 1; pointer-events: all; }

.mobile-drawer ul {
  list-style: none; display: flex; flex-direction: column;
  align-items: center; width: 100%;
}

.mobile-drawer ul li {
  width: 100%; text-align: center;
  border-bottom: 1px solid rgba(201,146,42,0.12);
}

.mobile-drawer ul li:first-child { border-top: 1px solid rgba(201,146,42,0.12); }

.mobile-drawer ul li a {
  display: block; padding: 1.5rem 2rem;
  font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); text-decoration: none;
  transition: color 0.3s, background 0.3s;
}

.mobile-drawer ul li a:hover { color: var(--gold-light); background: rgba(201,146,42,0.05); }

.mobile-drawer-cta {
  margin-top: 2.5rem; font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 700; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: 0.9rem 2.4rem;
  text-decoration: none; transition: all 0.3s;
}

.mobile-drawer-cta:hover { background: var(--gold); color: var(--black); }

/* ── ANCHOR SCROLL OFFSET (accounts for fixed nav height) ── */

@media (max-width: 768px) {
  #about,
  #services,
  #work,
  #team,
  #contact {
    scroll-margin-top: 65px;
  }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; 
  min-height: 100vh;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  padding: 0 4rem; 
  overflow: hidden;
}

.hero-hex-bg {
  position: absolute; 
  right: -60px; 
  top: 50%; 
  transform: translateY(-50%);
  width: 62vw; 
  height: 120vh; 
  opacity: 0.25;                    /* Increased from 0.06 */
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115'%3E%3Cpolygon points='50,5 95,27.5 95,72.5 50,95 5,72.5 5,27.5' fill='none' stroke='%23E8B923' stroke-width='2.5' stroke-opacity='0.9'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: driftHex 35s linear infinite;
  filter: brightness(1.15) saturate(1.4);   /* Makes the gold pop more */
}

/* Optional: Add a second layer for depth and more color */
.hero-hex-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115'%3E%3Cpolygon points='50,5 95,27.5 95,72.5 50,95 5,72.5 5,27.5' fill='none' stroke='%23C56E1F' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: driftHex 50s linear infinite reverse;
  opacity: 0.6;
  mix-blend-mode: screen;
}

@keyframes driftHex {
  0%   { background-position: 0 0; }
  100% { background-position: 120px 140px; }
}

.hero-molecule {
  position: absolute; right: 6vw; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px; opacity: 0.18;
  animation: floatMol 8s ease-in-out infinite;
}

@keyframes floatMol {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(calc(-50% - 18px)) translateX(-8px); }
}

.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); max-width: 680px;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  max-width: 500px; margin-top: 1.8rem;
  font-size: 0.9rem; line-height: 1.9; color: var(--muted);
  font-weight: 500; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 1.2rem; margin-top: 2.6rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--black);
  font-family: 'Comfortaa', cursive;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; padding: 0.9rem 2.4rem; text-decoration: none;
  transition: all 0.3s; border: 1px solid var(--gold);
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost {
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem; transition: color 0.3s;
}

.btn-ghost:hover { color: var(--white); }

.btn-ghost::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: currentColor; transition: width 0.3s;
}

.btn-ghost:hover::before { width: 44px; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 4rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dim);
}

.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1;   transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── GOLD RULE ── */
.gold-rule {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(201,146,42,0.15);
}

.stat-item {
  padding: 2.4rem 4rem; border-right: 1px solid rgba(201,146,42,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}

.stat-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-top: 0.5rem;
}

/* ════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════ */
section { position: relative; z-index: 1; }

.section-tag {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  line-height: 1.15; color: var(--white);
}

.section-title em { font-style: italic; color: var(--gold-light); }

.school-title em { font-style: italic; color: var(--mandisa-red); }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 70vh;
}

.about-left {
  padding: 7rem 5rem 7rem 4rem;
  border-right: 1px solid rgba(201,146,42,0.15);
  display: flex; flex-direction: column; justify-content: center;
}

.about-body {
  margin-top: 2rem; font-size: 0.9rem; line-height: 2;
  color: var(--muted); max-width: 460px; font-weight: 500;
}

.about-body p + p { margin-top: 1.2rem; }
.about-body strong { color: var(--white); font-weight: 700; }

.about-right {
  padding: 7rem 4rem 7rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative; overflow: hidden;
}

.about-right::before {
  content: 'KW'; position: absolute; right: -20px; bottom: -40px;
  font-family: 'Cormorant Garamond', serif; font-size: 14rem;
  font-weight: 700; color: rgba(201,146,42,0.04); line-height: 1;
  pointer-events: none; user-select: none;
}

.values-list { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.6rem; }

.value-item { display: flex; gap: 1.4rem; align-items: flex-start; }

.value-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 8px; flex-shrink: 0;
}

.value-title {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-light); margin-bottom: 0.4rem;
}

.value-desc { font-size: 0.84rem; line-height: 1.8; color: var(--muted); font-weight: 500; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
#services {
  background: var(--dark2);
  border-top: 1px solid rgba(201,146,42,0.15);
}

.services-header {
  padding: 8rem 4rem 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}

.services-header p {
  max-width: 320px; font-size: 0.85rem; line-height: 1.8;
  color: var(--muted); text-align: right; font-weight: 500;
}

.services-body { padding: 0 4rem 8rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,146,42,0.12);
  border: 1px solid rgba(201,146,42,0.12);
}

.service-card {
  background: var(--dark2); padding: 3rem 2.6rem;
  position: relative; overflow: hidden; transition: background 0.4s;
}

.service-card:hover { background: var(--dark3); }

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  font-weight: 700; color: rgba(201,146,42,0.15); line-height: 1;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--white); margin-bottom: 1rem;
}

.service-desc { font-size: 0.82rem; line-height: 1.85; color: var(--muted); font-weight: 500; }

.service-tag {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); border: 1px solid var(--gold-dim);
  padding: 0.3rem 0.8rem;
}

/* ════════════════════════════════════════
   WORK / CASE STUDY
════════════════════════════════════════ */
#work {
  padding: 8rem 4rem;
  border-top: 1px solid rgba(201,146,42,0.15);
}

.case-study {
  margin-top: 4rem; display: grid; grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid rgba(201,146,42,0.2); overflow: hidden;
}

.case-left {
  padding: 4rem; background: var(--dark);
  border-right: 1px solid rgba(201,146,42,0.15);
}

.case-tag {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 0.8rem;
}

.case-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 0.6rem;
}

.case-sub {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dim); margin-bottom: 2rem;
}

.case-desc { font-size: 0.86rem; line-height: 1.9; color: var(--muted); font-weight: 500; }

.case-features {
  margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
}

.case-feature {
  font-size: 0.74rem; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: 0.6rem;
}

.case-feature::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

.case-right {
  padding: 4rem; background: var(--dark2);
  display: flex; flex-direction: column; justify-content: space-between;
}

.case-metrics { display: flex; flex-direction: column; gap: 2rem; }

.metric {
  border-bottom: 1px solid rgba(201,146,42,0.12);
  padding-bottom: 2rem;
}

.metric:last-child { border-bottom: none; padding-bottom: 0; }

.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--gold-light);
}

.metric-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-top: 0.3rem;
}

.case-cta {
  margin-top: 2rem; font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700; color: var(--gold);
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 0.8rem; transition: gap 0.3s;
}

.case-cta:hover { gap: 1.4rem; }
.case-cta::after { content: '→'; }

/* ════════════════════════════════════════
   TEAM
════════════════════════════════════════ */
#team {
  padding: 8rem 4rem;
  background: var(--dark2);
  border-top: 1px solid rgba(201,146,42,0.15);
}

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 4rem;
  background: rgba(201,146,42,0.1); border: 1px solid rgba(201,146,42,0.1);
}

.team-card {
  background: var(--dark2); padding: 3.5rem;
  display: flex; gap: 2rem; align-items: flex-start;
  transition: background 0.3s;
}

.team-card:hover { background: var(--dark3); }

.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--gold-dim); flex-shrink: 0;
  background: linear-gradient(135deg, var(--dark3), var(--dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Comfortaa', cursive; font-size: 0.75rem;
  font-weight: 700; color: var(--gold-light); letter-spacing: 0.1em;
}

.team-info { flex: 1; }

.team-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 700; color: var(--white); margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 1rem;
}

.team-bio { font-size: 0.8rem; line-height: 1.85; color: var(--muted); font-weight: 500; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact {
  padding: 8rem 4rem;
  border-top: 1px solid rgba(201,146,42,0.15);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}

.contact-left { padding-right: 6rem; }

.contact-intro {
  margin-top: 2rem; font-size: 0.9rem; line-height: 1.9;
  color: var(--muted); max-width: 380px; font-weight: 500;
}

.contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item { display: flex; flex-direction: column; gap: 0.2rem; }

.contact-item-label {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dim);
}

.contact-item-val {
  font-size: 0.88rem; font-weight: 600; color: var(--white);
  text-decoration: none; transition: color 0.3s;
}

.contact-item-val:hover { color: var(--gold-light); }

.contact-right {
  border-left: 1px solid rgba(201,146,42,0.15); padding-left: 6rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dim);
}

.form-input,
.form-textarea {
  background: var(--dark2); border: 1px solid rgba(201,146,42,0.2);
  color: var(--white); font-family: 'Comfortaa', cursive;
  font-size: 0.84rem; font-weight: 500; padding: 0.85rem 1.2rem;
  outline: none; transition: border-color 0.3s; resize: none;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); }

.form-textarea { height: 120px; }

.form-submit {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-family: 'Comfortaa', cursive;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; padding: 1rem 2.4rem; cursor: pointer;
  transition: all 0.3s; align-self: flex-start; margin-top: 0.5rem;
}

.form-submit:hover { background: var(--gold); color: var(--black); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(201,146,42,0.15);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--dark2);
}

.footer-brand {
  font-family: 'Comfortaa', cursive; font-size: 0.95rem;
  font-weight: 700; color: var(--gold-light); letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.65rem; letter-spacing: 0.15em; font-weight: 600;
  color: var(--muted); text-align: center;
}

.footer-tagline {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dim); text-align: right;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }

  .hero { padding: 0 2rem; }
  .hero-scroll { left: 2rem; }
  .hero-molecule { width: 300px; height: 300px; right: 2vw; }

  .stats-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 2rem; }

  #about { grid-template-columns: 1fr; }
  .about-left {
    padding: 5rem 2rem 3rem;
    border-right: none; border-bottom: 1px solid rgba(201,146,42,0.15);
  }
  .about-right { padding: 3rem 2rem 5rem; }
  .about-body { max-width: 100%; }

  .services-header { padding: 5rem 2rem 0; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-header p { text-align: left; max-width: 100%; }
  .services-body { padding: 0 2rem 5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  #work { padding: 5rem 2rem; }
  .case-study { grid-template-columns: 1fr; }
  .case-left { border-right: none; border-bottom: 1px solid rgba(201,146,42,0.15); }

  #team { padding: 5rem 2rem; }
  .team-grid { grid-template-columns: 1fr; }

  #contact { grid-template-columns: 1fr; padding: 5rem 2rem; }
  .contact-left { padding-right: 0; }
  .contact-right {
    border-left: none; border-top: 1px solid rgba(201,146,42,0.15);
    padding-left: 0; padding-top: 3rem; margin-top: 3rem;
  }

  footer { flex-direction: column; gap: 0.8rem; text-align: center; padding: 2rem; }
  .footer-tagline { text-align: center; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-drawer { display: flex; }

  nav { padding: 1rem 1.4rem; }

  .hero {
    padding: 0 1.4rem; padding-top: 90px;
    min-height: 100svh;
  }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-sub { font-size: 0.84rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero-molecule { width: 200px; height: 200px; opacity: 0.08; right: -20px; }
  .hero-scroll { display: none; }

  .stats-strip { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none; border-bottom: 1px solid rgba(201,146,42,0.12);
    padding: 1.8rem 1.4rem;
  }
  .stat-item:last-child { border-bottom: none; }

  .about-left { padding: 4rem 1.4rem 2.5rem; }
  .about-right { padding: 2.5rem 1.4rem 4rem; }

  .services-header { padding: 4rem 1.4rem 0; }
  .services-body { padding: 0 1.4rem 4rem; }
  .services-grid { grid-template-columns: 1fr; }

  #work { padding: 4rem 1.4rem; }
  .case-left, .case-right { padding: 2rem 1.4rem; }
  .case-features { grid-template-columns: 1fr; }

  #team { padding: 4rem 1.4rem; }
  .team-card { padding: 2rem 1.4rem; flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }

  #contact { padding: 4rem 1.4rem; }

  footer { padding: 2rem 1.4rem; gap: 0.6rem; }
  .footer-copy { font-size: 0.6rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .case-title { font-size: 1.6rem; }
  .metric-val { font-size: 2rem; }
  .stat-number { font-size: 2.4rem; }
}

/* ── DRAWER CLOSE BUTTON ── */
.drawer-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(201,146,42,0.25);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
  z-index: 160;
}

.drawer-close:hover {
  border-color: var(--gold);
  background: rgba(201,146,42,0.08);
}

.drawer-close span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  position: absolute;
  transition: transform 0.3s;
}

.drawer-close span:nth-child(1) { transform: rotate(45deg); }
.drawer-close span:nth-child(2) { transform: rotate(-45deg); }
