/* ============================================================
   TŐZSÉR Otthonteremtő Kft. — premium static site
   Art direction: deep metallic racing green + silver, craftsman
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --green-950: #051a12;
  --green-900: #072318;
  --green-800: #0A3326;
  --green-700: #0E4231;
  --green-600: #14503C;
  --green-500: #1C6349;
  --green-400: #2C7C5C;
  --silver:    #C9D2CD;
  --silver-2:  #E6EBE8;
  --silver-mut:#9DB0A7;
  --white:     #F7FAF8;
  --ink:       #0A140F;
  --line:      rgba(201,210,205,0.16);
  --line-soft: rgba(201,210,205,0.08);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);

  --f-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-label: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root { display: none; }

::selection { background: var(--green-500); color: var(--white); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--silver-mut);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(28,99,73,0.18); }

.section-index {
  font-family: var(--f-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--green-500);
  font-size: 0.9rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(7,35,24,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding-block: 12px;
}
.header-inner { display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.brand-badge {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  overflow: hidden; display: grid; place-items: center;
  box-shadow: 0 0 0 1px var(--line), 0 8px 24px rgba(0,0,0,.35);
}
.brand-badge img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--f-display); font-weight: 700; letter-spacing: 0.14em;
  font-size: 1.05rem; color: var(--white);
}
.brand-text em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver-mut); margin-top: 3px; }
/* On the light subpages the header sits on green anyway, keep white */

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.82rem; font-weight: 600; color: var(--silver);
  position: relative; padding: 6px 0; transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--green-400); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; font-size: 0.8rem; line-height: 1;
  padding: 14px 22px; border-radius: 2px; white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn-phone { background: rgba(201,210,205,0.08); color: var(--white); border: 1px solid var(--line); }
.btn-phone:hover { background: var(--green-500); border-color: var(--green-500); transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  color: var(--white); box-shadow: 0 10px 30px -10px rgba(28,99,73,0.7), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(28,99,73,0.85), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-primary .arrow { transition: transform .3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { color: var(--white); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 2px; width: 26px; background: var(--white); transition: transform .35s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: 140px; padding-bottom: 8vh; overflow: hidden;
  background: linear-gradient(135deg, #1A5A42 0%, #0E4231 42%, #072318 100%);
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .grid-lines {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 20% 10%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 20% 10%, #000 30%, transparent 78%);
}
.hero-bg .sheen {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(201,210,205,0.07) 48%, transparent 66%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; background-image: var(--grain);
  opacity: 0.05; mix-blend-mode: overlay;
}
.hero-logo-ghost {
  position: absolute; right: 3%; top: 46%; transform: translateY(-50%);
  width: min(42vw, 470px); aspect-ratio: 1; z-index: 1; opacity: 0.96;
  border-radius: 50%; overflow: hidden;
  filter: drop-shadow(0 26px 55px rgba(0,0,0,0.5));
  pointer-events: none;
}
.hero-logo-ghost img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  line-height: 1.0; letter-spacing: 0.005em; margin: 22px 0 0;
  font-size: clamp(2.6rem, 8.5vw, 7.2rem);
}
.line-mask { display: block; overflow: hidden; padding-bottom: 0.04em; }
.line-mask .line { display: block; }
.hero-title .line:last-child { color: var(--silver); font-weight: 500; font-size: 0.72em; }

.hero-slogan {
  font-family: var(--f-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem); color: var(--silver-2);
  margin-top: 26px; max-width: 22ch;
}
.hero-sub { margin-top: 20px; max-width: 46ch; color: rgba(230,235,232,0.8); font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-scroll {
  position: absolute; right: var(--pad); bottom: 6vh; z-index: 2;
  display: flex; align-items: center; gap: 12px; color: var(--silver-mut);
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.68rem;
}
.hero-scroll .track { width: 1px; height: 54px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll .track::after { content: ""; position: absolute; top: -30%; left: 0; width: 100%; height: 40%; background: var(--green-400); animation: scrolldot 2.4s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -40%; } 100% { top: 120%; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--green-900); color: var(--silver);
  border-block: 1px solid var(--line); overflow: hidden; padding-block: 22px;
  position: relative; z-index: 3;
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span {
  font-family: var(--f-display); font-style: italic; letter-spacing: 0.01em;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem); font-weight: 500; padding-inline: 0.6em;
  display: inline-flex; align-items: center; gap: 0.6em; white-space: nowrap;
}
.marquee-track span i { font-style: normal; color: var(--green-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (light)
   ============================================================ */
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section-head { margin-bottom: clamp(36px, 6vw, 68px); }
.section-title {
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0; line-height: 1.15; color: var(--ink);
  font-size: clamp(2rem, 5.5vw, 3.6rem); margin-top: 10px;
}
.section-lead { max-width: 52ch; color: #40514a; margin-top: 18px; font-size: 1.05rem; }

/* ---------- Bemutatkozás ---------- */
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(30px, 6vw, 80px); }
.intro-body p { color: #33443c; font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.75; }
.intro-body p + p { margin-top: 22px; }
.intro-body p::first-letter { }
.intro-rule { grid-column: 1 / -1; height: 1px; background: linear-gradient(90deg, var(--green-600), transparent); margin-top: 8px; }

/* ---------- Szolgáltatások ---------- */
.services { background: #F4F6F4; color: var(--ink); }
.services .section-title { color: var(--ink); }
.services .section-lead { color: #40514a; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card {
  background: #fff; border: 1px solid rgba(10,20,15,0.10);
  border-radius: 14px; padding: 30px 26px; position: relative;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 12px 30px -20px rgba(10,20,15,0.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-600);
  box-shadow: 0 26px 46px -24px rgba(10,45,30,0.45);
}
.service-num {
  position: absolute; top: 24px; right: 24px; font-family: var(--f-label);
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--green-500); opacity: 0.5; font-weight: 600;
}
.service-icon {
  width: 60px; height: 60px; flex: none; border-radius: 14px;
  display: grid; place-items: center; color: var(--silver-2);
  background: linear-gradient(135deg, #1A5A42, #0A3326);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 18px -10px rgba(10,45,30,0.6);
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon { transform: translateY(-2px) rotate(-3deg); }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 {
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0; font-size: 1.24rem; line-height: 1.2; margin-top: 4px; color: var(--ink);
}
.service-desc { color: #4a5a52; font-size: 0.95rem; line-height: 1.55; margin-top: -6px; }

/* ---------- Miért mi ---------- */
.why { background: linear-gradient(135deg, #1A5A42 0%, #0E4231 45%, #0A3326 100%); color: var(--white); position: relative; }
.why::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; }
.why .container { position: relative; z-index: 1; }
.why .section-title { color: var(--white); }
.why .section-index { color: var(--silver); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 54px); margin-top: 10px; }
.pillar { border-top: 1px solid rgba(201,210,205,0.30); padding-top: 26px; position: relative; }
.pillar-num {
  font-family: var(--f-display); font-weight: 700; font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.9; color: transparent; -webkit-text-stroke: 1.5px rgba(201,210,205,0.55);
  letter-spacing: 0.02em;
}
.pillar h3 {
  font-family: var(--f-display); letter-spacing: 0;
  font-weight: 600; font-size: 1.7rem; margin-top: 14px; color: var(--white);
}
.pillar p { margin-top: 12px; color: rgba(230,235,232,0.74); font-size: 1rem; }

/* ============================================================
   KAPCSOLAT
   ============================================================ */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact-title { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; color: var(--ink); margin-top: 10px; }
.contact-lead { color: #40514a; margin-top: 16px; max-width: 40ch; }
.contact-details { margin-top: 34px; display: grid; gap: 4px; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 0;
  border-top: 1px solid rgba(10,20,15,0.1);
}
.contact-row:last-child { border-bottom: 1px solid rgba(10,20,15,0.1); }
.contact-row .ci { width: 22px; height: 22px; color: var(--green-600); flex: none; margin-top: 3px; }
.contact-row .cl { display: block; font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; font-weight: 600; color: var(--green-500); }
.contact-row .cv { font-size: 1.1rem; color: var(--ink); font-weight: 600; }
.contact-row a.cv:hover { color: var(--green-600); }

/* ---------- Form ---------- */
.contact-form {
  background: var(--green-900); color: var(--white); padding: clamp(28px, 4vw, 44px);
  border-radius: 3px; box-shadow: 0 30px 60px -30px rgba(7,35,24,0.6);
  position: relative; overflow: hidden;
}
.contact-form::before { content:""; position:absolute; inset:0; background-image: var(--grain); opacity: .04; mix-blend-mode: overlay; pointer-events:none; }
.form-title { font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; margin-bottom: 22px; position: relative; color: var(--white); }
.field { margin-bottom: 20px; position: relative; }
.field label { display: block; font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; font-weight: 600; color: var(--silver-mut); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 2px; padding: 13px 15px; color: var(--white);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(157,176,167,0.55); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-400); background: rgba(255,255,255,0.07); }
.field.invalid input, .field.invalid textarea { border-color: #E0857A; }
.field .err { display: none; color: #F0A99F; font-size: 0.8rem; margin-top: 6px; }
.field.invalid .err { display: block; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

.consent {
  display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 22px;
  font-size: 0.9rem; color: rgba(230,235,232,0.82); line-height: 1.5;
}
.consent input { appearance: none; -webkit-appearance: none; width: 22px; height: 22px; flex: none; margin-top: 1px;
  border: 1px solid var(--silver-mut); border-radius: 3px; background: rgba(255,255,255,0.04); cursor: pointer; position: relative; transition: background-color .25s var(--ease), border-color .25s var(--ease); }
.consent input:checked { background: var(--green-500); border-color: var(--green-500); }
.consent input:checked::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px; border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.consent a { color: var(--silver-2); text-decoration: underline; text-underline-offset: 3px; }
.consent a:hover { color: var(--white); }
.consent.invalid { color: #F0A99F; }
.consent.invalid input { border-color: #E0857A; }

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { text-align: center; margin-top: 16px; font-size: 0.82rem; color: var(--silver-mut); min-height: 1.2em; }
.form-note.ok { color: var(--green-400); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-950); color: var(--silver); padding-block: clamp(50px, 7vw, 80px); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(30px, 5vw, 70px); }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .brand-badge { width: 58px; height: 58px; }
.footer-legal h4 { font-family: var(--f-display); font-weight: 600; color: var(--white); font-size: 1.3rem; line-height: 1.2; }
.footer-legal dl { margin-top: 16px; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 0.95rem; }
.footer-legal dt { color: var(--silver-mut); font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; font-weight: 600; padding-top: 2px; }
.footer-legal dd { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 600; color: var(--silver); transition: color .3s var(--ease); width: fit-content; }
.footer-links a:hover { color: var(--green-400); }
.footer-bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; font-size: 0.82rem; color: var(--silver-mut); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(7,35,24,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); color: var(--silver);
  transform: translateY(120%); transition: transform .55s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding-block: 20px; }
.cookie-inner p { flex: 1 1 380px; font-size: 0.92rem; line-height: 1.55; }
.cookie-inner a { color: var(--silver-2); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 20px; }
.btn-cookie-sec { background: transparent; border: 1px solid var(--line); color: var(--silver); }
.btn-cookie-sec:hover { background: rgba(255,255,255,0.06); }

/* ============================================================
   SUBPAGES (legal)
   ============================================================ */
.legal-hero {
  background: radial-gradient(120% 120% at 15% 0%, var(--green-600), var(--green-900));
  color: var(--white); padding-top: 160px; padding-bottom: 60px; position: relative; overflow: hidden;
}
.legal-hero::after { content:""; position:absolute; inset:0; background-image: var(--grain); opacity:.05; mix-blend-mode: overlay; }
.legal-hero h1 { font-family: var(--f-display); font-weight: 700; letter-spacing: 0; font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.12; position: relative; }
.legal-hero .eyebrow { margin-bottom: 16px; }
.legal-body { padding-block: clamp(50px, 8vw, 90px); max-width: 820px; }
.legal-body h2 { font-family: var(--f-display); font-weight: 700; letter-spacing: 0; color: var(--green-700); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 40px 0 12px; line-height: 1.2; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: #33443c; margin-bottom: 14px; }
.legal-body a { color: var(--green-600); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--ink); }
.legal-body .lead-block { background: #F0F4F2; border-left: 3px solid var(--green-500); padding: 20px 24px; border-radius: 0 4px 4px 0; margin-bottom: 10px; }
.legal-body .lead-block p:last-child { margin-bottom: 0; }
.back-home { display: inline-flex; align-items: center; gap: 10px; margin-top: 40px; font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 600; color: var(--green-600); }
.back-home:hover { gap: 14px; }

/* ============================================================
   REVEAL (only when GSAP is active)
   ============================================================ */
html.has-gsap [data-reveal] { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }
  .btn-phone { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: rgba(7,35,24,0.97); backdrop-filter: blur(18px); padding: 40px;
    transform: translateX(100%); transition: transform .5s var(--ease); z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.4rem; }
  .form-grid2 { grid-template-columns: 1fr; }
  .hero { min-height: 92svh; }
  .hero-scroll { display: none; }
  .hero-logo-ghost { opacity: 0.12; width: 80vw; right: -14%; filter: none; }
}
@media (max-width: 460px) {
  .services-grid { grid-template-columns: 1fr; }
  .brand-text em { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.has-gsap [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
  * { scroll-behavior: auto !important; }
}
.pillar-num, .service-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}