*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette: deep bottle-teal with a fresh citrus accent */
  --primary:      #0e4a47;
  --primary-mid:  #1f6f69;
  --primary-dark: #0a2f2d;
  --accent:       #c9e650;
  --accent-mid:   #eaf5c0;

  /* Neutrals */
  --bg:        #f7f8f3;
  --surface:   #ffffff;
  --border:    #dfe4dc;
  --text:      #14201f;
  --text-soft: #475553;
  --text-muted:#6a7775;

  /* Typography */
  --font-display: 'Young Serif', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1200px;
  --radius:      12px;
  --radius-lg:   24px;
  --nav-h:       72px;

  --shadow-sm: 0 1px 2px rgba(14, 74, 71, .06), 0 4px 12px rgba(14, 74, 71, .06);
  --shadow-lg: 0 2px 4px rgba(14, 74, 71, .06), 0 24px 48px -12px rgba(14, 74, 71, .22);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); line-height: 1.25; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.1rem); line-height: 1.75; color: var(--text-soft); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 2rem); }
.section { padding-block: var(--section-pad); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--primary); color: #fff; padding: .75rem 1rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--primary-mid); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary-mid); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-light { color: var(--accent); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px -8px rgba(14,74,71,.55); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: var(--primary-dark); }
.btn-accent:hover { background: #d8f070; }
.btn-small { padding: .6rem 1.15rem; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px -16px rgba(14,74,71,.3);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--primary); position: relative; z-index: 110; }
.logo-mark { width: 30px; height: 30px; fill: var(--primary); flex: none; transition: transform .4s ease; }
.logo:hover .logo-mark { transform: rotate(45deg); }
.logo-word { font-family: var(--font-display); font-size: 1.45rem; line-height: 1; display: flex; flex-direction: column; }
.logo-sub { font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--primary-mid); margin-top: 3px; }
.logo-light { color: #fff; }
.logo-light .logo-mark { fill: var(--accent); }
.logo-light .logo-sub { color: var(--accent); }

.hamburger {
  width: 46px; height: 46px; border-radius: 12px; border: 0; background: var(--surface);
  box-shadow: var(--shadow-sm); cursor: pointer; position: relative; z-index: 110;
  display: grid; place-content: center; gap: 5px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  list-style: none;
  position: fixed; inset: 0; z-index: 105;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .4rem;
  padding: 2rem clamp(1.5rem, 8vw, 3rem);
  transform: translateY(-100%); visibility: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), visibility 0s linear .35s;
}
.nav-links.open { transform: none; visibility: visible; transition: transform .35s cubic-bezier(.2,.8,.2,1), visibility 0s; }
.nav-links a:not(.btn) {
  font-family: var(--font-display); font-size: 2rem; color: var(--primary); text-decoration: none;
  display: block; padding: .3rem 0;
}
.nav-links li:last-child { margin-top: 1.25rem; }
.nav-links .btn-small { padding: .9rem 1.6rem; font-size: 1rem; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(60rem 40rem at 90% 10%, rgba(201,230,80,.28), transparent 60%),
    radial-gradient(40rem 30rem at 0% 100%, rgba(31,111,105,.12), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-tiles {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,74,71,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,74,71,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 75% 40%, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 70% at 75% 40%, #000 20%, transparent 75%);
}
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; width: 100%; }

.hero h1 { margin-bottom: 1.4rem; color: var(--primary-dark); }
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .28em;
  background: var(--accent); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left;
  animation: swipe .7s .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.h1-kicker {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: 0; color: var(--primary-mid);
  margin-bottom: .7rem;
}
.hero-lead { max-width: 520px; margin-bottom: 2rem; font-size: clamp(1.05rem, 1.7vw, 1.2rem); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }
.hero-sectors { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.hero-sectors li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem; color: var(--primary);
}
.hero-sectors li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2f2d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Job card */
.job-card {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.5rem; max-width: 420px; width: 100%; justify-self: center;
  border: 1px solid rgba(14,74,71,.06); position: relative;
}
.job-card::before {
  content: ""; position: absolute; top: -14px; right: 26px; width: 44px; height: 44px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 2c1.2 7.6 6.4 12.8 14 14-7.6 1.2-12.8 6.4-14 14-1.2-7.6-6.4-12.8-14-14C9.6 14.8 14.8 9.6 16 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 2c1.2 7.6 6.4 12.8 14 14-7.6 1.2-12.8 6.4-14 14-1.2-7.6-6.4-12.8-14-14C9.6 14.8 14.8 9.6 16 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: twinkle 3.2s ease-in-out infinite;
}
.job-card-head { display: flex; flex-direction: column; gap: .2rem; padding-bottom: 1rem; margin-bottom: .5rem; border-bottom: 1px dashed var(--border); }
.job-tag { font-family: var(--font-display); font-size: 1.3rem; color: var(--primary-dark); }
.job-where { font-size: .85rem; color: var(--text-muted); font-weight: 500; }

.checklist { list-style: none; counter-reset: none; }
.checklist li {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem 0; font-size: .98rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid #eff2ec;
}
.checklist li::before {
  content: ""; width: 22px; height: 22px; flex: none; border-radius: 7px;
  border: 2px solid var(--border); background: var(--surface) center / 13px no-repeat;
  transition: background-color .25s, border-color .25s;
}
.checklist li.done::before {
  background-color: var(--primary); border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9e650' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  animation: pop .3s ease;
}
.job-status {
  margin-top: 1rem; display: flex; align-items: center; gap: .6rem;
  padding: .8rem 1rem; border-radius: var(--radius); background: #f1f3ee;
  font-weight: 700; color: var(--text-muted); transition: background .3s, color .3s;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #c3cac1; transition: background .3s; }
.job-status.ready { background: var(--accent-mid); color: var(--primary-dark); }
.job-status.ready .status-dot { background: var(--primary); box-shadow: 0 0 0 4px rgba(14,74,71,.15); }

/* Load-in animation */
.load-in { opacity: 0; transform: translateY(24px); animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--d, 0ms); }

@keyframes rise   { to { opacity: 1; transform: none; } }
@keyframes swipe  { to { transform: scaleX(1); } }
@keyframes pop    { 50% { transform: scale(1.18); } }
@keyframes twinkle { 0%,100% { transform: rotate(0) scale(1); } 50% { transform: rotate(20deg) scale(.85); } }

/* ---------- Services ---------- */
.services { background: var(--surface); }
.sector-grid { display: grid; gap: 1.25rem; }
.sector-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--surface); border-color: transparent; }
.sector-icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: var(--accent-mid); color: var(--primary); margin-bottom: 1.5rem;
  transition: background .25s, color .25s, transform .25s;
}
.sector-icon svg { width: 34px; height: 34px; }
.sector-card:hover .sector-icon { background: var(--primary); color: var(--accent); transform: rotate(-6deg); }
.sector-card h3 { margin-bottom: .75rem; font-size: clamp(1.3rem, 2.2vw, 1.55rem); }
.sector-card p { flex: 1; margin-bottom: 1.25rem; }
.card-link { font-weight: 700; color: var(--primary); text-decoration: none; display: inline-flex; gap: .4rem; align-self: flex-start; }
.card-link span { transition: transform .2s; }
.card-link:hover span { transform: translateX(4px); }
.card-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.also {
  margin-top: 1.5rem; padding: 1.75rem; border-radius: var(--radius-lg);
  border: 2px dashed var(--border); display: grid; gap: 1rem;
}
.also-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--primary-dark); }
.also-list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.also-list li { background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: .45rem 1rem; font-weight: 600; font-size: .92rem; color: var(--primary); }
.also-note { font-size: .98rem; }
.also-note a { color: var(--primary); font-weight: 700; }

/* ---------- Hosts ---------- */
.hosts {
  background:
    radial-gradient(50rem 30rem at 100% 0%, rgba(201,230,80,.14), transparent 60%),
    var(--primary);
  color: #fff; position: relative; overflow: hidden;
}
.hosts h2, .hosts h3 { color: #fff; }
.hosts p { color: rgba(255,255,255,.8); }
.hosts-grid { display: grid; gap: 3rem; align-items: center; }
.hosts-copy h2 { margin-bottom: 1.2rem; }
.hosts-copy p { margin-bottom: 2rem; max-width: 520px; }
.hosts-points { list-style: none; display: grid; gap: 1rem; }
.hosts-points li {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  transition: background .25s, transform .25s;
}
.hosts-points li:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.pt-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); line-height: 1; flex: none; }
.hosts-points h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.hosts-points p { font-size: .98rem; }

/* ---------- Steps ---------- */
.step-list { list-style: none; display: grid; gap: 1.25rem; counter-reset: s; }
.step { position: relative; padding: 2rem 1.75rem; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: var(--primary-dark);
  font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.25rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: .5rem; }

/* ---------- About ---------- */
.about { background: var(--surface); }
.about-grid { display: grid; gap: 3rem; align-items: center; }
.about-visual { position: relative; }
.about-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(160deg, var(--primary-mid), var(--primary-dark));
  background-size: 40px 40px, 40px 40px, 100% 100%;
  display: grid; place-items: end start; padding: 1.5rem;
}
.about-photo span { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.about-badge {
  position: absolute; right: -.5rem; bottom: 2rem;
  background: var(--accent); color: var(--primary-dark);
  padding: 1rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; transform: rotate(-3deg);
}
.about-badge strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; line-height: 1.1; }
.about-badge span { font-size: .85rem; font-weight: 600; }
.about-copy h2 { margin-bottom: 1.25rem; }
.about-copy p + p { margin-top: 1rem; }
.values { list-style: none; display: grid; gap: .6rem; margin: 1.75rem 0 2rem; }
.values li { display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--primary); }
.values li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9e650' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Promises ---------- */
.promise-grid { display: grid; gap: 1rem; }
.promise {
  padding: 1.75rem; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--border); transition: transform .25s, border-color .25s;
}
.promise:hover { transform: translateY(-4px); border-color: var(--primary-mid); }
.promise svg { width: 32px; height: 32px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.promise h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.promise p { font-size: .98rem; }

/* ---------- Areas ---------- */
.areas { background: var(--accent-mid); }
.areas-grid { display: grid; gap: 2.5rem; align-items: center; }
.areas h2 { margin-bottom: 1rem; color: var(--primary-dark); }
.areas p { color: #3c4a48; }
.area-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.area-chips li {
  background: var(--surface); color: var(--primary); font-weight: 600;
  padding: .6rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .95rem;
  transition: transform .2s, background .2s, color .2s;
}
.area-chips li:hover { transform: translateY(-2px); }
.area-chips .chip-main { background: var(--primary); color: #fff; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.faq-list details[open] { border-color: var(--primary-mid); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 1.2rem 3.5rem 1.2rem 1.4rem; position: relative;
  font-weight: 700; font-size: 1.05rem; color: var(--primary-dark);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 1.25rem; top: 50%; width: 28px; height: 28px; margin-top: -14px;
  border-radius: 50%; background: var(--accent-mid) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e4a47' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--primary-mid); }
.faq-list details p { padding: 0 1.4rem 1.3rem; }

/* ---------- Contact ---------- */
.contact { background: var(--primary-dark); color: #fff; }
.contact h2 { color: #fff; margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,.78); margin-bottom: 2rem; max-width: 460px; }
.contact-grid { display: grid; gap: 3rem; align-items: start; }
.contact-points { list-style: none; display: grid; gap: 1.1rem; }
.contact-points li { display: flex; gap: 1rem; align-items: center; }
.contact-points svg {
  width: 46px; height: 46px; padding: 11px; border-radius: 14px; flex: none;
  background: rgba(201,230,80,.12); fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-points span { display: flex; flex-direction: column; color: rgba(255,255,255,.85); }
.contact-points strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }

.form-card { background: var(--surface); color: var(--text); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-lg); }
.field-row { display: grid; gap: 0 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--primary-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--bg); font-size: 1rem; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary-mid); background: #fff; box-shadow: 0 0 0 4px rgba(31,111,105,.15);
}
.field [aria-invalid="true"] { border-color: #b3261e; }
.form-error { color: #b3261e; font-size: .92rem; font-weight: 600; margin-bottom: 1rem; }
.form-thanks { text-align: center; padding: 2rem 1rem; }
.form-thanks svg { width: 56px; height: 56px; fill: var(--accent); margin: 0 auto 1rem; animation: twinkle 3s ease-in-out infinite; filter: drop-shadow(0 4px 8px rgba(14,74,71,.25)); }
.form-thanks h3 { margin-bottom: .5rem; color: var(--primary-dark); }
.form-thanks:focus { outline: none; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1716; color: rgba(255,255,255,.72); padding-top: clamp(3.5rem, 6vw, 5rem); }
.site-footer p { color: rgba(255,255,255,.66); font-size: .95rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { margin-top: 1rem; max-width: 320px; }
.footer-head { font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem !important; color: var(--accent) !important; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; display: grid; gap: .5rem; }
.footer-nav a { text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-contact address { font-style: normal; line-height: 1.8; margin-bottom: 1.25rem; }
.footer-contact strong { color: #fff; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.footer-base p { font-size: .85rem; }
.footer-base a { color: var(--accent); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Tablet ---------- */
@media (min-width: 768px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid .sector-card:last-child { grid-column: span 2; }
  .also { grid-template-columns: auto 1fr; align-items: center; }
  .also-note { grid-column: 1 / -1; }
  .step-list { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-base { flex-direction: row; justify-content: space-between; }
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
}

/* ---------- Desktop ---------- */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav-links {
    position: static; transform: none; visibility: visible; background: none; padding: 0;
    flex-direction: row; align-items: center; gap: 2rem; transition: none;
  }
  .nav-links a:not(.btn) {
    font-family: var(--font-body); font-size: .98rem; font-weight: 600; padding: .25rem 0; position: relative;
  }
  .nav-links a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--primary);
    transform: scaleX(0); transform-origin: left; transition: transform .25s;
  }
  .nav-links a:not(.btn):hover::after { transform: scaleX(1); }
  .nav-links li:last-child { margin-top: 0; }
  .nav-links .btn-small { padding: .6rem 1.15rem; font-size: .92rem; }

  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 4rem; }
  .job-card { justify-self: end; padding: 1.75rem; transform: rotate(1.5deg); }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .sector-grid .sector-card:last-child { grid-column: auto; }
  .hosts-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .promise-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 5rem; }
  .about-badge { right: -1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .load-in { opacity: 1; transform: none; }
}
