@import url("https://fonts.googleapis.com/css2?family=Alice&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --accent: #ffbd59;
  --accent-strong: #f1a633;
  --charcoal: #343434;
  --ink: #181818;
  --bg: #f4f0ea;
  --bg-soft: #ede8e0;
  --card: #ffffff;
  --muted: #6f6b66;
  --line: rgba(52, 52, 52, 0.14);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 50px rgba(12, 12, 12, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --nav-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
main { overflow: clip; }
.page-shell { min-height: 100vh; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 740px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 189, 89, 0.14);
  border: 1px solid rgba(255, 189, 89, 0.4);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff7e7;
}

.display, .title-xl, .title-lg, .title-md {
  font-family: "Alice", Georgia, serif;
  letter-spacing: -0.03em;
}

.display {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 0.96;
}

.display.is-light { color: #fff; }

.title-xl {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.title-lg {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  line-height: 1.08;
}

.title-md {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.4vw, 1.17rem);
  color: var(--muted);
  max-width: 70ch;
}

.muted { color: var(--muted); }
.kicker { margin: 0; font-weight: 700; color: var(--charcoal); }
.flow > * + * { margin-top: 16px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(255, 189, 89, 0.18);
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 28px rgba(255, 189, 89, 0.28);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 189, 89, 0.38);
  outline-offset: 3px;
}

.btn.ghost {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-fg: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn.ghost-dark {
  --btn-bg: rgba(52, 52, 52, 0.06);
  --btn-fg: var(--charcoal);
  border-color: rgba(52, 52, 52, 0.12);
  box-shadow: none;
}

.link-inline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: var(--charcoal);
}

.link-inline::after {
  content: "↗";
  transform: translateY(-1px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: 14px;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 16px 0;
  pointer-events: none;
}

.site-header .header-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: var(--nav-height);
  padding: 14px 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.05);
  pointer-events: auto;
}

.site-header.is-overlay {
  position: absolute;
  inset: 0 0 auto;
}

.site-header.is-overlay .header-shell {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.05);
}

.site-header.is-overlay .brand,
.site-header.is-overlay .nav-link,
.site-header.is-overlay .nav-toggle {
  color: white;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(260px, 32vw);
  min-width: 190px;
  transition: transform 220ms ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-icon {
  display: none;
  width: 46px;
  height: 46px;
}

.brand:hover { transform: scale(1.035); }

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav { position: relative; }

.nav-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 999px;
}

.nav-pill {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 0;
  height: calc(100% - 12px);
  border-radius: 999px;
  background: rgba(52, 52, 52, 0.92);
  opacity: 0;
  transition: transform 260ms ease, width 260ms ease, opacity 220ms ease;
  pointer-events: none;
}

.site-header.is-overlay .nav-pill {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-item { position: relative; }

.nav-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--charcoal);
  font-weight: 600;
  transition: color 220ms ease;
}

.nav-link .caret { font-size: 0.85rem; opacity: 0.7; }
.nav-item.is-current > .nav-link, .nav-item.is-hovered > .nav-link { color: white; }

.nav-cta { margin-left: 6px; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(244, 240, 234, 0.96);
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.site-header.is-overlay .nav-dropdown {
  background: rgba(36, 34, 33, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 220ms ease, transform 220ms ease;
}

.dropdown-link strong { font-size: 0.98rem; }
.dropdown-link span { font-size: 0.92rem; color: var(--muted); }
.site-header.is-overlay .dropdown-link { color: white; }
.site-header.is-overlay .dropdown-link span { color: rgba(255, 255, 255, 0.72); }

.dropdown-link:hover, .dropdown-link:focus-visible {
  background: rgba(255, 189, 89, 0.16);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(52, 52, 52, 0.08);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 28px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 20, 21, 0.42) 0%, rgba(22, 20, 21, 0.26) 22%, rgba(22, 20, 21, 0.52) 100%),
    radial-gradient(circle at 50% 70%, rgba(255, 189, 89, 0.2), transparent 38%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 26px;
  padding: clamp(110px, 16vw, 160px) 0 46px;
}

.hero-frame {
  max-width: 840px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.hero-topnote {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

.hero-copy { display: grid; gap: 18px; }
.hero-copy .lead { color: rgba(255, 255, 255, 0.84); max-width: 60ch; }

.section-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(160deg, #c9e0f0, #f1efe2);
  box-shadow: 14px 14px 0 rgba(52, 52, 52, 0.16);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(52, 52, 52, 0.04);
  transition: transform 220ms ease, background 220ms ease;
}

.logo-chip:hover {
  transform: scale(1.06);
  background: rgba(255, 189, 89, 0.16);
}

.logo-chip strong { font-size: 1.1rem; }

.ticker-wrap {
  overflow: hidden;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff9f0;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.ticker {
  display: flex;
  min-width: max-content;
  padding: 14px 0;
  font-weight: 600;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}

.ticker:hover { animation-play-state: paused; }
.ticker span { padding-right: 40px; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.dark-panel {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #2f2f32, #1d1d20);
  color: white;
  box-shadow: var(--shadow-card);
}

.roll-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.roll-card {
  position: relative;
  min-height: 196px;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.roll-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 189, 89, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.roll-card .label {
  margin: 0 0 20px;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.roll-headline {
  position: relative;
  height: 94px;
  overflow: hidden;
}

.roll-track {
  position: absolute;
  inset: 0;
  display: grid;
  grid-auto-rows: 94px;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
}

.roll-card:hover .roll-track { transform: translateY(-94px); }

.roll-primary, .roll-secondary {
  display: flex;
  align-items: center;
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.roll-secondary { color: var(--accent); }

.roll-body {
  margin-top: 18px;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.78);
}

.split-cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

.split-cta .panel {
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(52, 52, 52, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.92));
  box-shadow: var(--shadow-soft);
}

.list-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  padding: 160px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 189, 89, 0.22), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(47, 160, 181, 0.18), transparent 24%),
    linear-gradient(180deg, #f6f2eb 0%, #ece6de 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(244, 240, 234, 1));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  padding: 28px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-soft);
}

.card.soft { background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.94)); }

.card.dark {
  background: linear-gradient(145deg, #302f32, #1d1d20);
  color: white;
  border-color: rgba(255,255,255,0.08);
}

.card .icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 189, 89, 0.18);
  color: var(--charcoal);
  font-size: 1.35rem;
}

.service-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.service-card p { margin: 0; color: var(--muted); }

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: "•";
  color: var(--accent-strong);
  font-size: 1.4rem;
  line-height: 1;
}

.feature-band { padding: 20px 0; overflow: hidden; }
.feature-band .band-inner { display: flex; gap: 12px; flex-wrap: wrap; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(52, 52, 52, 0.05);
  color: var(--charcoal);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(52, 52, 52, 0.08);
}

.stat strong {
  display: block;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.post-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-soft);
}

.post-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card .copy {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.contact-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.form-card {
  padding: 28px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field, .field-full {
  display: grid;
  gap: 8px;
}

.field-full { grid-column: 1 / -1; }

label {
  font-weight: 600;
  color: var(--charcoal);
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(52, 52, 52, 0.14);
  background: #fffdf9;
  border-radius: 16px;
  padding: 14px 16px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(255, 189, 89, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 189, 89, 0.18);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.info-stack { display: grid; gap: 18px; }

.info-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.9));
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: 70px;
  padding: 0 0 28px;
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(145deg, #28282a, #0f1011);
  color: white;
  box-shadow: var(--shadow-card);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 0.8fr;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.newsletter {
  display: flex;
  max-width: 360px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter input {
  border: 0;
  background: transparent;
  color: white;
  box-shadow: none;
}

.newsletter input::placeholder { color: rgba(255,255,255,0.58); }

.newsletter button {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 189, 89, 0.95);
  color: var(--charcoal);
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font-size: 0.95rem;
  transition: transform 220ms ease, background 220ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 189, 89, 0.18);
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 220ms ease;
}

.footer-list a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

.hidden { display: none !important; }

@media (max-width: 1080px) {
  .two-col, .split-cta, .contact-shell, .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .post-grid, .stats { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .roll-grid, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .site-header .header-shell { min-height: 72px; position: relative; }
  .nav-wrap { position: static; }
  .nav-toggle { display: inline-grid; place-items: center; }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 80;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(244, 240, 234, 0.98);
    border: 1px solid rgba(52, 52, 52, 0.08);
    box-shadow: var(--shadow-card);
  }

  .site-header.is-overlay .nav-list {
    background: rgba(32, 31, 33, 0.96);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-pill { display: none; }

  .nav-link {
    justify-content: space-between;
    height: auto;
    min-height: 46px;
    width: 100%;
  }

  .nav-list {
    width: 100%;
  }

  .nav-item.is-current > .nav-link,
  .nav-item.is-hovered > .nav-link {
    color: var(--charcoal);
    background: rgba(255, 189, 89, 0.16);
  }

  .site-header.is-overlay .nav-item.is-current > .nav-link,
  .site-header.is-overlay .nav-item.is-hovered > .nav-link {
    color: white;
    background: rgba(255, 189, 89, 0.14);
  }

  /* Mobile Services submenu: collapsed by default, animated open on click. */
  .nav-dropdown {
    display: grid;
    position: static;
    min-width: unset;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    margin-top: 0;
    padding: 0 8px 0 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    background: transparent !important;
    border: 0 !important;
    box-shadow: none;
    transition: max-height 320ms ease, opacity 220ms ease, transform 260ms ease, margin-top 260ms ease, padding 260ms ease, visibility 0ms linear 320ms;
  }

  .nav-item.has-dropdown.is-open .nav-dropdown {
    max-height: 360px;
    margin-top: 8px;
    padding: 8px 8px 8px 16px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: max-height 320ms ease, opacity 220ms ease, transform 260ms ease, margin-top 260ms ease, padding 260ms ease, visibility 0ms;
  }

  .nav-cta { display: none; }
}

@media (max-width: 640px) {
  :root { --container: min(1180px, calc(100vw - 20px)); }
  .section { padding: 72px 0; }
  .hero-inner { padding-top: 118px; padding-bottom: 28px; }
  .hero-frame { padding: 18px; border-radius: 24px; }
  .dark-panel, .card, .service-card, .form-card, .info-card, .split-cta .panel { padding: 22px; }
  .footer-shell { padding: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .grid-4 { grid-template-columns: 1fr; }
}


.hero.hero-parallax {
  isolation: isolate;
  background: linear-gradient(180deg, #f7c57c 0%, #f4b86d 18%, #e39f68 36%, #7797a0 72%, #355c60 100%);
}

.hero.hero-parallax::before {
  background:
    linear-gradient(180deg, rgba(24, 20, 18, 0.16) 0%, rgba(24, 20, 18, 0.08) 18%, rgba(24, 20, 18, 0.42) 100%),
    radial-gradient(circle at 50% 68%, rgba(255, 208, 133, 0.38), transparent 28%),
    radial-gradient(circle at 18% 20%, rgba(255, 247, 228, 0.42), transparent 26%);
}

.hero-media {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.35), 0);
  will-change: transform;
}

.hero-parallax-layer,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-sky {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 248, 232, 0.78), rgba(255, 248, 232, 0.05) 22%, transparent 24%),
    linear-gradient(180deg, rgba(255, 237, 203, 0.92) 0%, rgba(255, 198, 124, 0.92) 24%, rgba(230, 144, 102, 0.88) 52%, rgba(93, 131, 142, 0.8) 78%, rgba(42, 74, 79, 0.84) 100%);
}

.hero-glow {
  inset: auto 0 18% 0;
  height: 48%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 214, 151, 0.72), rgba(255, 214, 151, 0.18) 18%, transparent 42%),
    radial-gradient(circle at 70% 42%, rgba(255, 245, 232, 0.16), transparent 18%),
    radial-gradient(circle at 30% 52%, rgba(255, 245, 232, 0.14), transparent 14%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.18), 0);
}

.hero-horizon {
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(57, 94, 98, 0) 0%, rgba(57, 94, 98, 0.24) 14%, rgba(38, 68, 72, 0.82) 62%, rgba(28, 51, 54, 0.96) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 211, 132, 0.16), transparent 34%);
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.55), 0) scale(1.04);
  transform-origin: center bottom;
}

.hero-palms {
  bottom: -4%;
  top: auto;
  width: min(34vw, 360px);
  height: 92%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.92;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.hero-palms-left {
  left: -1%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 760'%3E%3Cg fill='none' stroke='%231a2323' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M108 760C118 642 128 566 154 472C179 380 215 286 270 194' stroke-width='16'/%3E%3Cpath d='M267 196C224 212 189 213 142 198' stroke-width='12'/%3E%3Cpath d='M267 197C220 178 186 147 164 108' stroke-width='12'/%3E%3Cpath d='M267 196C230 228 204 262 191 304' stroke-width='12'/%3E%3Cpath d='M267 195C240 156 233 118 242 78' stroke-width='12'/%3E%3Cpath d='M260 185C218 160 174 156 128 168' stroke-width='10'/%3E%3Cpath d='M256 186C220 220 190 247 150 267' stroke-width='10'/%3E%3Cpath d='M213 292C180 294 146 284 112 263' stroke-width='10'/%3E%3Cpath d='M211 292C178 271 157 240 146 210' stroke-width='10'/%3E%3Cpath d='M205 292C172 317 146 345 128 379' stroke-width='10'/%3E%3C/g%3E%3C/svg%3E");
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.7), 0);
}

.hero-palms-right {
  right: -1%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 760'%3E%3Cg fill='none' stroke='%231a2323' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M212 760C202 642 192 566 166 472C141 380 105 286 50 194' stroke-width='16'/%3E%3Cpath d='M53 196C96 212 131 213 178 198' stroke-width='12'/%3E%3Cpath d='M53 197C100 178 134 147 156 108' stroke-width='12'/%3E%3Cpath d='M53 196C90 228 116 262 129 304' stroke-width='12'/%3E%3Cpath d='M53 195C80 156 87 118 78 78' stroke-width='12'/%3E%3Cpath d='M60 185C102 160 146 156 192 168' stroke-width='10'/%3E%3Cpath d='M64 186C100 220 130 247 170 267' stroke-width='10'/%3E%3Cpath d='M107 292C140 294 174 284 208 263' stroke-width='10'/%3E%3Cpath d='M109 292C142 271 163 240 174 210' stroke-width='10'/%3E%3Cpath d='M115 292C148 317 174 345 192 379' stroke-width='10'/%3E%3C/g%3E%3C/svg%3E");
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * 0.82), 0);
}

.hero-grain {
  background-image:
    linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.03)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ffffff' fill-opacity='.045'%3E%3Ccircle cx='12' cy='18' r='1'/%3E%3Ccircle cx='54' cy='40' r='1'/%3E%3Ccircle cx='96' cy='22' r='1'/%3E%3Ccircle cx='132' cy='52' r='1'/%3E%3Ccircle cx='28' cy='104' r='1'/%3E%3Ccircle cx='74' cy='120' r='1'/%3E%3Ccircle cx='122' cy='102' r='1'/%3E%3Ccircle cx='148' cy='134' r='1'/%3E%3C/g%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-glow,
  .hero-horizon,
  .hero-palms-left,
  .hero-palms-right {
    transform: none !important;
  }
}


/* Refinements: real tool logos, cleaner hero, smoother ticker, footer/contact fixes */
.logo-row-images {
  gap: 18px;
}

.logo-chip-image {
  min-height: 58px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid rgba(52, 52, 52, 0.1);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.06);
}

.logo-chip-image img {
  display: block;
  width: auto;
  height: clamp(28px, 4vw, 42px);
  max-width: 220px;
  object-fit: contain;
}

.hero.hero-parallax {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 245, 220, 0.82), transparent 24%),
    radial-gradient(circle at 78% 42%, rgba(255, 189, 89, 0.32), transparent 25%),
    linear-gradient(180deg, #ffd89b 0%, #f2b474 32%, #d78c65 52%, #627f86 75%, #2f5358 100%);
}

.hero-palms {
  display: none;
}

.hero-grain {
  opacity: 0.28;
}

.hero-frame {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.ticker {
  gap: 0;
  animation-duration: 24s;
}

.ticker span {
  display: inline-block;
  padding-right: 0;
}

.newsletter {
  align-items: center;
}

.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
}

.newsletter button {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.newsletter button:hover,
.newsletter button:focus-visible {
  transform: translateY(-1px) scale(1.05);
  background: #ffd083;
  box-shadow: 0 12px 24px rgba(255, 189, 89, 0.22);
}

.info-card .footer-list a {
  color: var(--charcoal);
  font-weight: 700;
}

.info-card .footer-list a:hover,
.info-card .footer-list a:focus-visible {
  color: var(--accent-strong);
}

.conversion-cta {
  padding: 72px 0 18px;
}

.conversion-cta-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 189, 89, 0.32), transparent 28%),
    linear-gradient(145deg, #ffffff, #f7f1e8);
  border: 1px solid rgba(52, 52, 52, 0.08);
  box-shadow: var(--shadow-card);
}

.conversion-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .conversion-cta-card {
    grid-template-columns: 1fr;
  }
  .conversion-cta-actions {
    justify-content: flex-start;
  }
}


/* Enhanced contact forms */
.required-star {
  color: #d83b2d;
  font-weight: 800;
  margin-left: 2px;
}

.contact-form .form-grid { gap: 18px; }
.floating-field { position: relative; }

.floating-field label {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
  transition: transform 180ms ease, color 180ms ease;
}

.floating-field:focus-within label {
  color: var(--accent-strong);
  transform: translateY(-1px);
}

select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(52, 52, 52, 0.14);
  background-color: #fffdf9;
  border-radius: 999px;
  padding: 14px 48px 14px 18px;
  color: var(--charcoal);
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--charcoal) 50%),
    linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 18px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background-color 220ms ease;
}

select:hover {
  border-color: rgba(255, 189, 89, 0.7);
  background-color: #fff9ee;
}

select:focus {
  outline: none;
  border-color: rgba(255, 189, 89, 0.9);
  box-shadow: 0 0 0 5px rgba(255, 189, 89, 0.18);
}

select option {
  color: var(--charcoal);
  background: #fffdf9;
  font: inherit;
}

input:hover, textarea:hover { border-color: rgba(52, 52, 52, 0.28); }
input:focus, textarea:focus, select:focus { transform: translateY(-1px); }

.field-help {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 0;
  margin: 12px 0 0;
  padding: 0;
  border-radius: 16px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease, padding 240ms ease, background-color 240ms ease, color 240ms ease;
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
  padding: 14px 16px;
}

.form-status.is-success {
  background: rgba(255, 189, 89, 0.22);
  color: var(--charcoal);
  border: 1px solid rgba(255, 189, 89, 0.45);
}

.form-status.is-error {
  background: rgba(216, 59, 45, 0.1);
  color: #8d261f;
  border: 1px solid rgba(216, 59, 45, 0.22);
}

.newsletter-status {
  max-width: 360px;
  font-size: 0.95rem;
}

.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.newsletter button:hover, .newsletter button:focus-visible {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 12px 28px rgba(255, 189, 89, 0.28);
  background: #ffd183;
}

.ajax-form.is-submitting .btn, .ajax-form.is-submitting button[type="submit"] {
  opacity: 0.72;
  cursor: progress;
}

.ajax-form.is-submitting input, .ajax-form.is-submitting textarea, .ajax-form.is-submitting select {
  pointer-events: none;
}

/* Custom contact service dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.native-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(52, 52, 52, 0.14);
  background: #fffdf9;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--charcoal);
  font: inherit;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.custom-select-trigger.is-placeholder {
  color: var(--muted);
}

.custom-select-trigger:hover {
  border-color: rgba(52, 52, 52, 0.28);
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus {
  outline: none;
  border-color: rgba(255, 189, 89, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 189, 89, 0.18);
  transform: translateY(-1px);
}

.custom-select-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
  flex: 0 0 auto;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(225deg) translate(-2px, -1px);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(52, 52, 52, 0.12);
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-menu button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 12px 14px;
  color: var(--charcoal);
  font: inherit;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus,
.custom-select-menu button.is-selected {
  outline: none;
  background: rgba(255, 189, 89, 0.18);
  color: var(--charcoal);
}


@media (max-width: 720px) {
  .brand {
    width: 46px;
    min-width: 46px;
  }

  .brand-logo-full { display: none; }
  .brand-logo-icon { display: block; }
}
