/* ============================================================
   OVIMOR — Silveiras, Portugal
   Sociedade Agro-pecuária · Farm Automation Software
   Design: Mediterranean Pastoral · Terracotta + Olive + Cream
   Fonts: Spectral + Work Sans
   ============================================================ */

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

:root {
  /* Terracotta clay */
  --terra:       #bc5a36;
  --terra-l:     #cf6e49;
  --terra-xl:    #e2906c;
  --terra-g:     rgba(188,90,54,0.1);
  --terra-b:     rgba(188,90,54,0.24);

  /* Deep olive */
  --olive:       #4a5635;
  --olive-2:     #3c4729;
  --olive-3:     #2f381f;
  --olive-l:     #5c6b3f;
  --olive-xl:    #8a9a63;

  /* Cream / warm whites */
  --cream:       #f7f1e6;
  --cream-2:     #efe6d4;
  --cream-3:     #e3d6bc;
  --cream-4:     #cbb990;

  /* Text */
  --ink:         #2a2014;
  --sub:         #5c4f3c;
  --sub-l:       #897a5e;

  /* Text light (on dark) */
  --t1:          #f3ecdf;
  --t2:          #a39878;
  --t3:          #6b6048;

  --font-serif:  'Spectral', Georgia, serif;
  --font-sans:   'Work Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);

  --r:           4px;
  --r-md:        10px;
  --r-lg:        20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }

/* ── LABEL ── */
.label { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.label::before { content: ''; flex: 0 0 22px; height: 1.5px; background: var(--terra); }
.label.light { color: var(--terra-xl); }
.label.light::before { background: var(--terra-xl); }

/* ── TYPE ── */
.display { font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5.8rem); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 22px; }
.display em { font-style: italic; color: var(--terra); }
.display.light { color: var(--t1); }
.display.light em { color: var(--terra-xl); }

.h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px; }
.h2 em { font-style: italic; color: var(--terra); }
.h2.light { color: var(--t1); }
.h2.light em { color: var(--terra-xl); }

.body-t { font-size: 0.99rem; color: var(--sub); line-height: 1.8; }
.body-t.light { color: var(--t2); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-sans); font-weight: 600; font-size: 0.84rem; padding: 13px 28px; border: none; cursor: pointer; transition: all 0.2s var(--ease); border-radius: 2px; }
.btn-terra { background: var(--terra); color: var(--cream); }
.btn-terra:hover { background: var(--terra-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(188,90,54,0.35); }
.btn-olive { background: var(--olive); color: var(--t1); }
.btn-olive:hover { background: var(--olive-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,86,53,0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--cream-3); color: var(--ink); }
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: var(--t1); }
.btn-outline-light:hover { border-color: var(--terra-xl); color: var(--terra-xl); }
.btn-submit { width: 100%; background: var(--terra); color: var(--cream); font-family: var(--font-sans); font-weight: 600; font-size: 0.86rem; padding: 15px; border: none; cursor: pointer; border-radius: 2px; transition: all 0.2s var(--ease); }
.btn-submit:hover { background: var(--terra-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(188,90,54,0.35); }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; transition: all 0.28s ease; }
.nav.scrolled { background: rgba(247,241,230,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--cream-3); box-shadow: 0 1px 20px rgba(42,32,20,0.06); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; height: 70px; display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--terra); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark span { font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: 1rem; color: var(--terra-xl); }
.logo-mark.dark span { color: var(--terra); }
.logo-text { display: flex; flex-direction: column; line-height: 1.18; }
.logo-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--t1); letter-spacing: 0; }
.logo-name.dark { color: var(--ink); }
.logo-sub { font-family: var(--font-sans); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.logo-sub.dark { color: var(--sub-l); }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.55); transition: color 0.2s; position: relative; }
.nav-links a.dark-link { color: var(--sub); }
.nav-links a:hover, .nav-links a.active { color: var(--t1); }
.nav-links a.dark-link:hover, .nav-links a.dark-link.active { color: var(--ink); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1.5px; background: var(--terra); }
.nav-cta { margin-left: 24px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--t1); transition: all 0.2s; }
.hamburger.dark span { background: var(--ink); }
.mobile-menu { display: none; flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--cream-3); }
.mobile-menu a { font-size: 0.87rem; font-weight: 500; color: var(--sub); padding: 13px 40px; border-bottom: 1px solid var(--cream-2); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .btn { margin: 14px 40px 20px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; background: var(--olive-3); position: relative; overflow: hidden; }
/* Sun-ray / terracotta tile pattern */
.hero-rays { position: absolute; inset: 0; background-image: repeating-linear-gradient(115deg, transparent 0px, transparent 70px, rgba(188,90,54,0.04) 70px, rgba(188,90,54,0.04) 72px); }
.hero-glow { position: absolute; top: -180px; right: -150px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(188,90,54,0.14) 0%, transparent 65%); pointer-events: none; }

.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; max-width: 1180px; width: 100%; margin: 0 auto; padding: 0 40px 80px; position: relative; z-index: 2; }
.hero-top { display: flex; align-items: flex-start; justify-content: space-between; padding-top: 140px; margin-bottom: 56px; }
.hero-nif { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); text-align: right; line-height: 1.85; }

.hero-title { font-family: var(--font-serif); font-size: clamp(3.2rem, 7.5vw, 8rem); font-weight: 400; line-height: 0.98; letter-spacing: -0.01em; color: var(--t1); max-width: 760px; }
.hero-title em { font-style: italic; color: var(--terra-xl); display: block; }

.hero-lower { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 44px; gap: 36px; flex-wrap: wrap; }
.hero-desc { font-size: 0.99rem; color: var(--t2); line-height: 1.78; max-width: 400px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 52px; padding-top: 26px; }
.hero-metric { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.hero-metric:last-child { border-right: none; }
.hero-metric .mv { font-family: var(--font-serif); font-size: 2rem; color: var(--t1); line-height: 1; letter-spacing: -0.01em; }
.hero-metric .mv em { font-style: normal; color: var(--terra-xl); }
.hero-metric .ml { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); margin-top: 5px; }

/* Diagonal cut bottom */
.hero-cut { position: absolute; bottom: -1px; left: 0; right: 0; height: 70px; z-index: 3; overflow: hidden; }
.hero-cut svg { display: block; width: 100%; height: 100%; }

/* ── BAND ── */
.terra-band { background: var(--terra); padding: 13px 0; overflow: hidden; }
.band-inner { display: flex; gap: 0; white-space: nowrap; animation: bandScroll 22s linear infinite; }
.band-item { display: flex; align-items: center; gap: 0; flex-shrink: 0; font-family: var(--font-sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9); padding: 0 26px; }
.band-item::after { content: '·'; margin-left: 26px; opacity: 0.5; }
@keyframes bandScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SERVICES ── */
.services-section { background: var(--cream); }
.svc-header { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: end; margin-bottom: 56px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { background: var(--cream-2); border: 1px solid var(--cream-3); border-radius: var(--r-lg); padding: 36px 28px; transition: all 0.28s var(--ease); position: relative; }
.svc-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); border-radius: 0 0 var(--r-lg) var(--r-lg); }
.svc-card:hover { transform: translateY(-5px); border-color: var(--cream-4); box-shadow: 0 16px 40px rgba(42,32,20,0.08); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-n { font-family: var(--font-serif); font-size: 0.85rem; font-style: italic; color: var(--cream-4); margin-bottom: 16px; }
.svc-icon { width: 46px; height: 46px; background: var(--terra-g); border: 1px solid var(--terra-b); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon i { color: var(--terra); font-size: 1.05rem; }
.svc-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.svc-card p { font-size: 0.87rem; color: var(--sub); line-height: 1.72; }
.svc-more { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terra); margin-top: 18px; transition: gap 0.2s; }
.svc-card:hover .svc-more { gap: 8px; }

/* ── WHY ── */
.why-section { background: var(--olive-3); position: relative; overflow: hidden; }
.why-texture { position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0, transparent 70px, rgba(188,90,54,0.03) 70px, rgba(188,90,54,0.03) 72px); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.why-visual { position: relative; }
.why-box { aspect-ratio: 4/3; background: var(--olive-2); border: 1px solid rgba(188,90,54,0.15); position: relative; overflow: hidden; border-radius: var(--r-lg); }
.why-box-field { position: absolute; inset: 0; background: repeating-linear-gradient(165deg, rgba(188,90,54,0.05) 0, rgba(188,90,54,0.05) 26px, transparent 26px, transparent 32px); }
.why-box-label { position: absolute; bottom: 18px; left: 20px; font-family: var(--font-serif); font-size: 0.9rem; font-style: italic; color: rgba(243,236,223,0.4); }
.why-badge { position: absolute; top: -16px; right: -16px; background: var(--terra); border-radius: 50%; width: 92px; height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(188,90,54,0.4); }
.why-badge .bv { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: white; line-height: 1; }
.why-badge .bl { font-size: 0.54rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-top: 2px; }
.why-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(188,90,54,0.18); margin-top: 1px; border-radius: 0 0 var(--r-lg) var(--r-lg); overflow: hidden; }
.why-fact { background: var(--olive-2); padding: 18px 20px; }
.why-fact .fv { font-family: var(--font-serif); font-size: 1.7rem; color: var(--terra-xl); line-height: 1; }
.why-fact .fl { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); margin-top: 4px; }

.why-pts { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.why-pt { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.why-pt:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.why-pt-icon { width: 32px; height: 32px; background: var(--terra-g); border: 1px solid var(--terra-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-pt-icon i { color: var(--terra-xl); font-size: 0.76rem; }
.why-pt h4 { font-weight: 600; font-size: 0.9rem; color: var(--t1); margin-bottom: 4px; }
.why-pt p { font-size: 0.84rem; color: var(--t2); line-height: 1.62; }

/* ── PROCESS ── */
.process-section { background: var(--cream-2); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; }
.proc-step { padding-right: 36px; border-right: 1px solid var(--cream-3); }
.proc-step:last-child { border-right: none; padding-right: 0; }
.proc-num { font-family: var(--font-serif); font-size: 4.2rem; font-weight: 300; color: var(--cream-3); line-height: 0.9; margin-bottom: 18px; }
.proc-line { width: 24px; height: 1.5px; background: var(--terra); margin-bottom: 14px; transition: width 0.3s; }
.proc-step:hover .proc-line { width: 40px; }
.proc-step h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.proc-step p { font-size: 0.84rem; color: var(--sub); line-height: 1.68; }

/* ── SECTORS ── */
.sectors-section { background: var(--cream); border-top: 1px solid var(--cream-3); border-bottom: 1px solid var(--cream-3); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.sector-card { background: var(--cream-2); border: 1px solid var(--cream-3); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; transition: all 0.25s var(--ease); }
.sector-card:hover { transform: translateY(-4px); border-color: var(--terra-b); box-shadow: 0 12px 32px rgba(188,90,54,0.1); }
.sector-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--cream-3); background: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: all 0.25s; }
.sector-icon i { color: var(--olive); font-size: 1.15rem; transition: color 0.25s; }
.sector-card:hover .sector-icon { background: var(--terra); border-color: var(--terra); }
.sector-card:hover .sector-icon i { color: white; }
.sector-card h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.sector-card p { font-size: 0.78rem; color: var(--sub-l); line-height: 1.6; }

/* ── CTA ── */
.cta-section { background: var(--terra); padding: 88px 0; position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0, transparent 50px, rgba(255,255,255,0.05) 50px, rgba(255,255,255,0.05) 52px); }
.cta-section h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 400; color: var(--cream); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section h2 em { font-style: italic; color: var(--olive-xl); }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.78); max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
.contact-info h2 { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.contact-deets { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.cd { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--cream-3); }
.cd:first-child { border-top: 1px solid var(--cream-3); }
.cd-icon { width: 32px; height: 32px; background: var(--terra-g); border: 1px solid var(--terra-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon i { color: var(--terra); font-size: 0.78rem; }
.cd-lbl { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 3px; }
.cd-val { font-size: 0.87rem; color: var(--sub); line-height: 1.55; }
.cd-val a { color: var(--sub); transition: color 0.2s; }
.cd-val a:hover { color: var(--terra); }

.contact-form { background: var(--olive-3); border-radius: var(--r-lg); padding: 36px; position: relative; overflow: hidden; }
.contact-form::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0, transparent 60px, rgba(188,90,54,0.025) 60px, rgba(188,90,54,0.025) 62px); pointer-events: none; }
.contact-form h3 { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 400; color: var(--t1); margin-bottom: 5px; position: relative; z-index: 1; }
.contact-form .sub { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--t3); margin-bottom: 26px; position: relative; z-index: 1; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; position: relative; z-index: 1; }
.fg label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 11px 13px; font-family: var(--font-sans); font-size: 0.87rem; color: var(--t1); outline: none; transition: border-color 0.2s; width: 100%; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--terra-b); }
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: var(--olive-2); }
.fg textarea { resize: vertical; min-height: 96px; }
.f-note { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em; color: var(--t3); text-align: center; margin-top: 10px; position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer { background: var(--olive-3); border-top: 1px solid rgba(188,90,54,0.12); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.83rem; color: var(--t3); margin-top: 14px; max-width: 250px; line-height: 1.78; }
.footer-col h5 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t3); opacity: 0.7; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 0.84rem; color: var(--t3); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--terra-xl); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; color: var(--t3); opacity: 0.6; }
.footer-pt { display: flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); opacity: 0.6; }
.pt-flag { width: 22px; height: 14px; border-radius: 2px; overflow: hidden; display: flex; flex-shrink: 0; }
.pt-g { width: 40%; background: #046A38; } .pt-r { width: 60%; background: #DA291C; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.72rem; color: var(--t3); opacity: 0.6; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 1; }

/* ── PAGE HERO ── */
.page-hero { background: var(--olive-3); padding: 150px 0 72px; position: relative; overflow: hidden; }
.ph-rays { position: absolute; inset: 0; background-image: repeating-linear-gradient(115deg, transparent 0, transparent 70px, rgba(188,90,54,0.035) 70px, rgba(188,90,54,0.035) 72px); }
.ph-inner { position: relative; z-index: 1; max-width: 700px; }
.ph-inner h1 { font-family: var(--font-serif); font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 400; line-height: 1.08; color: var(--t1); margin-bottom: 18px; letter-spacing: -0.01em; }
.ph-inner h1 em { font-style: italic; color: var(--terra-xl); }
.ph-inner p { font-size: 1rem; color: var(--t2); line-height: 1.78; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-header { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .proc-step { border-right: none; padding-right: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-top .hero-nif { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-metric { border-right: none; padding-right: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 22px; }
  .hero-content { padding: 0 22px 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
}
