/* ====================== RESET & TOKENS ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f1e8d6;
  --cream-2: #faf4e8;
  --cream-3: #efe6d3;
  --green: #34432b;     /* deep forest */
  --green-2: #4f6238;   /* olive */
  --green-soft: #6f7f59;
  --clay: #bd6242;      /* terracotta */
  --clay-soft: #d98c63;
  --ochre: #c79a4f;
  --ink: #2b271f;
  --muted: #6f6857;
  --line: #ddd0b6;

  --primary: var(--green);
  --primary-2: var(--clay);

  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(52, 67, 43, 0.14);
  --shadow-sm: 0 12px 30px rgba(52, 67, 43, 0.10);
  --max: 1180px;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.08; font-weight: 500; letter-spacing: -.5px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ====================== CUSTOM MOUSE ARROW CURSOR ====================== */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }

  .cursor-arrow {
    position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none;
    transform: translate(-2px, -2px); transition: transform .07s linear;
    filter: drop-shadow(0 2px 4px rgba(52,67,43,.4));
  }
  .cursor-arrow svg path { fill: var(--green); stroke: var(--cream-2); stroke-width: 1.3; }
  .cursor-dot {
    position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%;
    background: var(--clay); z-index: 10001; pointer-events: none; transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0; width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--green-soft); z-index: 9999; pointer-events: none;
    transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s, background .25s;
  }
  .cursor-ring.hovering { width: 64px; height: 64px; border-color: var(--clay); background: rgba(189,98,66,.08); }
}

/* ====================== PAPER GRAIN TEXTURE ====================== */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 1; pointer-events: none;
  opacity: .38; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%{ transform: translate(0,0);} 20%{ transform: translate(-4%,3%);} 40%{ transform: translate(3%,-4%);}
  60%{ transform: translate(-3%,-3%);} 80%{ transform: translate(4%,4%);} 100%{ transform: translate(0,0);}
}

/* ====================== ORGANIC DECOR SHAPES ====================== */
.bg-blobs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

/* Leaf SVG motifs */
.leaf { position: absolute; width: 90px; height: 90px; transform-origin: 50% 100%; }
.leaf path { fill: var(--green-2); opacity: .16; }
.leaf .vein { stroke: var(--green); stroke-width: 2.5; opacity: .22; fill: none; }
.leaf-1 { top: 14%; right: 8%; width: 110px; height: 110px; animation: sway 7s ease-in-out infinite; }
.leaf-2 { bottom: 18%; left: 6%; width: 80px; height: 80px; transform: scaleX(-1) rotate(20deg); animation: sway 9s ease-in-out infinite reverse; }
.leaf-3 { top: 62%; right: 16%; width: 64px; height: 64px; transform: rotate(-30deg); animation: sway 8s ease-in-out infinite; }
@keyframes sway { 0%,100%{ transform: rotate(-8deg);} 50%{ transform: rotate(10deg);} }

/* Botanical sprig in background */
.sprig-bg { position: absolute; width: 140px; height: 230px; top: 30%; left: -10px; opacity: .5; }
.sprig-bg path { fill: var(--green-soft); opacity: .18; }
.sprig-bg .vein { stroke: var(--green-soft); stroke-width: 3; opacity: .25; fill: none; }
.blob { position: absolute; opacity: .14; }
/* leaf-like organic blobs */
.blob.b1 { width: 360px; height: 360px; background: var(--green-2); border-radius: 64% 36% 55% 45% / 52% 48% 52% 48%; top: -60px; left: -70px; animation: morph 16s ease-in-out infinite; }
.blob.b2 { width: 300px; height: 300px; background: var(--clay); border-radius: 38% 62% 45% 55% / 60% 40% 60% 40%; top: 40%; right: -90px; animation: morph 20s ease-in-out infinite reverse; }
.blob.b3 { width: 260px; height: 260px; background: var(--ochre); border-radius: 55% 45% 62% 38% / 45% 58% 42% 55%; bottom: -60px; left: 18%; animation: morph 22s ease-in-out infinite; }
.blob.b4 { width: 220px; height: 220px; background: var(--green-soft); border-radius: 50% 50% 40% 60% / 55% 45% 60% 40%; bottom: 14%; right: 22%; opacity: .1; animation: morph 18s ease-in-out infinite reverse; }
@keyframes morph {
  0%,100% { transform: translate(0,0) rotate(0); border-radius: 64% 36% 55% 45% / 52% 48% 52% 48%; }
  50% { transform: translate(30px,-30px) rotate(15deg); border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px; font-weight: 600; font-size: .98rem;
  font-family: 'Inter', sans-serif; border: 1.5px solid transparent; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--green); color: var(--cream-2); box-shadow: 0 14px 30px rgba(52,67,43,.28); }
.btn-primary:hover { background: var(--green-2); }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--cream-2); }
.btn-light { background: var(--cream-2); color: var(--green); }
.btn.full { width: 100%; }

/* ====================== NAVBAR ====================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: padding .3s; }
.navbar.scrolled .nav-inner { box-shadow: var(--shadow-sm); background: rgba(250,244,232,.9); backdrop-filter: blur(12px); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px; border-radius: 50px; border: 1px solid transparent; transition: background .3s, box-shadow .3s;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces'; font-weight: 600; font-size: 1.3rem; }
.logo-img { width: 42px; height: 42px; object-fit: contain; }
.logo .dot { color: var(--clay); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .96rem; transition: color .2s; }
.nav-links a:not(.nav-cta):hover { color: var(--clay); }
.nav-cta { background: var(--green); color: var(--cream-2) !important; padding: 10px 22px; border-radius: 50px; }
.nav-cta:hover { background: var(--clay); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 3px; transition: .3s; }

/* ====================== HERO ====================== */
.hero { padding: 165px 0 90px; }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px;
  background: var(--cream-2); border: 1px solid var(--line); color: var(--green-2);
  font-size: .82rem; font-weight: 600; letter-spacing: .3px; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); font-weight: 500; }
.grad { font-style: italic; font-weight: 500; color: var(--clay); }
.lead { color: var(--muted); font-size: 1.18rem; margin: 26px 0 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 54px; flex-wrap: wrap; }
.stat strong { display: block; font-family: 'Fraunces'; font-size: 2.4rem; font-weight: 500; color: var(--green); }
.stat span { color: var(--muted); font-size: .86rem; }

/* Hero Art - plant illustration + phone */
.hero-art { position: relative; display: grid; place-items: center; min-height: 560px; }
.hero-art::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, var(--cream-2), var(--cream-3)); box-shadow: var(--shadow-sm);
}
.hero-plant {
  position: absolute; top: 6px; right: -18px; width: 290px; z-index: 1;
  border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow);
  transform: rotate(3deg); animation: float 7s ease-in-out infinite;
}
.phone {
  position: relative; z-index: 2; top: 56px; left: -44px; width: 244px; height: 500px; border-radius: 46px;
  background: var(--green); border: 1px solid var(--green-2); box-shadow: var(--shadow);
  padding: 14px; animation: float 6s ease-in-out infinite;
}
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100px; height: 20px; background: var(--green); border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; background: var(--cream-2); padding: 40px 16px 16px; overflow: hidden; }
.app-bar { font-family: 'Fraunces'; font-weight: 600; font-size: 1.15rem; margin-bottom: 16px; color: var(--green); }

.app-hero-card {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  background: var(--green); border-radius: 18px; margin-bottom: 14px;
}
.plant-emoji { font-size: 1.9rem; line-height: 1; }
.app-hero-text strong { display: block; color: var(--cream-2); font-family: 'Fraunces'; font-size: 1.05rem; }
.app-hero-text span { color: rgba(250,244,232,.7); font-size: .78rem; }

.plant-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.leaf-dot { width: 30px; height: 30px; border-radius: 50%; flex: none; }
.leaf-dot.a { background: var(--clay-soft); }
.leaf-dot.b { background: var(--ochre); }
.plant-bar { flex: 1; height: 10px; border-radius: 50px; background: var(--cream-3); overflow: hidden; }
.plant-bar i { display: block; height: 100%; background: var(--green-2); border-radius: 50px; }

.app-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 16px; }
.app-grid span { aspect-ratio: 1; border-radius: 14px; background: var(--cream-3); display: grid; place-items: center; font-size: 1.2rem; }
.app-grid span:nth-child(1){ background: #e7ead9;} .app-grid span:nth-child(2){ background: #f1ddcf;} .app-grid span:nth-child(3){ background: #e7ead9;} .app-grid span:nth-child(4){ background: #f0e6cd;}

.float-chip {
  position: absolute; z-index: 3; background: var(--cream-2); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; color: var(--green);
  box-shadow: var(--shadow-sm); animation: float 5s ease-in-out infinite;
}
.chip-1 { top: 40px; left: -10px; animation-delay: .5s; }
.chip-2 { top: 50%; right: -22px; animation-delay: 1s; }
.chip-3 { bottom: 54px; left: -24px; animation-delay: 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ====================== MARQUEE ====================== */
.marquee { overflow: hidden; padding: 22px 0; background: var(--green); }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: scroll 30s linear infinite; align-items: center; }
.marquee-track span { font-family: 'Fraunces'; font-style: italic; font-size: 1.3rem; color: var(--cream-2); opacity: .9; }
.marquee-track span:nth-child(even) { color: var(--ochre); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====================== SECTIONS ====================== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--green); }
.section-alt .eyebrow { color: var(--ochre); }
.section-alt .section-head h2 { color: var(--cream-2); }
.section-alt .section-head p { color: rgba(250,244,232,.75); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head::before {
  content: ''; display: block; width: 38px; height: 38px; margin: 0 auto 18px;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M52 8C28 10 12 26 12 48c0 4 1 7 1 7s3-1 7-1c22 0 38-16 40-40 0-3-2-6-8-6z' fill='%23bd6242'/%3E%3Cpath d='M16 52C28 40 40 28 50 14' stroke='%23faf4e8' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
}
.section-alt .section-head::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M52 8C28 10 12 26 12 48c0 4 1 7 1 7s3-1 7-1c22 0 38-16 40-40 0-3-2-6-8-6z' fill='%23c79a4f'/%3E%3Cpath d='M16 52C28 40 40 28 50 14' stroke='%2334432b' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
}
.eyebrow { color: var(--clay); font-weight: 600; font-size: .82rem; letter-spacing: 2.5px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin: 14px 0 16px; font-weight: 500; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 26px; }

/* Cards */
.card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; transition: transform .35s, box-shadow .35s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.services-grid { grid-template-columns: repeat(3, 1fr); }
.service .ico { font-size: 1.9rem; margin-bottom: 20px; display: inline-grid; place-items: center; width: 66px; height: 66px; border-radius: 50% 50% 50% 10px; background: var(--cream-3); }
.services-grid .service:nth-child(3n+1) .ico { background: #e7ead9; }
.services-grid .service:nth-child(3n+2) .ico { background: #f1ddcf; }
.services-grid .service:nth-child(3n+3) .ico { background: #f0e6cd; }
.service h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 500; }
.service p { color: var(--muted); font-size: .98rem; }

/* Process */
.process-grid { grid-template-columns: repeat(4, 1fr); }
.step { padding: 32px 28px; border-radius: var(--radius); background: rgba(250,244,232,.08); border: 1px solid rgba(250,244,232,.16); position: relative; transition: transform .35s, background .35s; }
.step:hover { transform: translateY(-8px); background: rgba(250,244,232,.14); }
.step-num { font-family: 'Fraunces'; font-style: italic; font-size: 2.6rem; font-weight: 500; color: var(--ochre); }
.step h3 { margin: 8px 0 10px; color: var(--cream-2); font-weight: 500; font-size: 1.3rem; }
.step p { color: rgba(250,244,232,.72); font-size: .95rem; }

/* Work */
.work-grid { grid-template-columns: repeat(3, 1fr); }
.work-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--cream-2); transition: transform .35s, box-shadow .35s; }
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.work-thumb { height: 200px; }
.work-thumb.t1 { background: linear-gradient(135deg, var(--green-2), var(--green-soft)); }
.work-thumb.t2 { background: linear-gradient(135deg, var(--clay), var(--clay-soft)); }
.work-thumb.t3 { background: linear-gradient(135deg, var(--green), var(--green-2)); }
.work-thumb.t4 { background: linear-gradient(135deg, var(--ochre), #dcb878); }
.work-thumb.t5 { background: linear-gradient(135deg, var(--green-soft), #97a37e); }
.work-thumb.t6 { background: linear-gradient(135deg, var(--clay-soft), var(--ochre)); }
.work-body { padding: 22px 26px; }
.work-body h3 { font-size: 1.35rem; font-weight: 500; }
.work-body p { color: var(--muted); font-size: .92rem; }

/* Team */
.team-grid { grid-template-columns: repeat(4, 1fr); }
.member { text-align: center; padding: 32px 20px; border-radius: var(--radius); background: var(--cream-2); border: 1px solid var(--line); transition: transform .35s, box-shadow .35s; }
.member:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: 'Fraunces'; font-weight: 600; font-size: 1.6rem; color: var(--cream-2); }
.av1 { background: var(--green); } .av2 { background: var(--clay); } .av3 { background: var(--green-2); } .av4 { background: var(--ochre); }
.av5 { background: var(--green-soft); } .av6 { background: var(--clay-soft); } .av7 { background: var(--green); } .av8 { background: var(--clay); }
.member h3 { font-size: 1.18rem; font-weight: 500; }
.member .role { color: var(--clay); font-size: .88rem; font-weight: 500; }

.team-cta { text-align: center; margin-top: 54px; }
.team-cta p { color: rgba(250,244,232,.8); margin-bottom: 16px; font-family: 'Fraunces'; font-style: italic; font-size: 1.2rem; }

/* Clients */
.client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 60px; }
.client-logo {
  font-family: 'Fraunces'; font-weight: 500; font-size: 1.4rem; color: var(--green); font-style: italic;
  padding: 14px 32px; border: 1px solid var(--line); border-radius: 50px; background: var(--cream-2);
  transition: color .3s, border-color .3s, transform .3s;
}
.client-logo:hover { color: var(--clay); border-color: var(--clay); transform: translateY(-4px); }

.testi-grid { grid-template-columns: repeat(3, 1fr); }
.testi { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; transition: transform .35s, box-shadow .35s; }
.testi:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.testi p { font-size: 1.08rem; margin-bottom: 22px; font-family: 'Fraunces'; font-style: italic; line-height: 1.5; }
.testi footer { display: flex; align-items: center; gap: 13px; }
.t-ava { width: 50px; height: 50px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-family: 'Fraunces'; font-weight: 600; color: var(--cream-2); }
.testi footer strong { display: block; font-weight: 600; }
.testi footer span { color: var(--muted); font-size: .85rem; }

/* CTA banner */
.cta-banner { padding: 90px 0; background: var(--clay); text-align: center; }
.cta-inner { display: grid; place-items: center; }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--cream-2); font-weight: 500; max-width: 720px; }
.cta-banner p { color: rgba(250,244,232,.85); margin: 16px 0 30px; font-size: 1.1rem; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(2.1rem,4vw,2.9rem); margin: 14px 0; font-weight: 500; }
.contact-info p { color: var(--muted); margin-bottom: 26px; font-size: 1.05rem; }
.contact-list { list-style: none; display: grid; gap: 12px; }
.contact-list li { color: var(--ink); font-size: 1rem; }
.contact-form { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; background: var(--cream); border: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: .96rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-soft); }
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: .92rem; text-align: center; font-weight: 500; }
.form-note.ok { color: var(--green-2); }
.form-note.err { color: var(--clay); }

/* Footer */
.footer { background: var(--green); padding: 70px 0 0; }
.footer .logo, .footer-col h4 { color: var(--cream-2); }
.footer .logo-mark { background: var(--cream-2); color: var(--green); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { color: rgba(250,244,232,.7); margin-top: 16px; max-width: 280px; font-size: .96rem; }
.footer-col h4 { margin-bottom: 18px; font-size: 1.05rem; font-weight: 500; }
.footer-col a { display: block; color: rgba(250,244,232,.7); font-size: .93rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--ochre); }
.footer-bottom { border-top: 1px solid rgba(250,244,232,.16); padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(250,244,232,.6); font-size: .88rem; }

/* ====================== ANIMATIONS ====================== */
.hero-content > * { opacity: 0; transform: translateY(26px); animation: heroUp .8s ease forwards; }
.hero-content .badge { animation-delay: .05s; }
.hero-content h1 { animation-delay: .2s; }
.hero-content .lead { animation-delay: .38s; }
.hero-content .hero-actions { animation-delay: .54s; }
.hero-content .hero-stats { animation-delay: .7s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-art { margin-top: 36px; min-height: 520px; }
  .phone { top: 40px; left: -30px; }
  .hero-plant { right: 0; top: 0; width: 250px; }
  .services-grid, .work-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 78%;
    background: var(--cream-2); flex-direction: column; justify-content: center;
    gap: 28px; transition: right .35s ease; box-shadow: var(--shadow); z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .services-grid, .work-grid, .testi-grid, .process-grid, .team-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .section { padding: 70px 0; }
  .hero-art { min-height: 470px; }
  .hero-plant { width: 190px; right: -8px; }
  .phone { transform: scale(.9); top: 30px; left: -10px; }
  .chip-2 { right: -6px; }
}
