:root {
  --background: #f6f1e8;
  --foreground: #17201b;
  --muted: #5c665f;
  --line: #d8d0c4;
  --panel: #fffaf0;
  --panel-strong: #103c35;
  --accent: #b9442c;
  --accent-2: #2f6f73;
  --gold: #c99a3d;
  --soft-blue: #dcecf1;
  --shadow: 0 22px 60px rgba(16, 60, 53, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 154, 61, 0.26), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(47, 111, 115, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(246, 241, 232, 0.98), rgba(231, 239, 236, 0.9) 48%, rgba(246, 241, 232, 0.98)),
    var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.topbar {
  align-items: center;
  animation: navDropIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.78);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { align-items: center; animation: brandReveal 760ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both; display: inline-flex; font-weight: 800; gap: 10px; }
.brand span {
  align-items: center;
  animation: logoPopIn 760ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
  background: linear-gradient(135deg, var(--panel-strong), var(--accent-2));
  color: #fffaf0;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.topbar nav, .footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.topbar nav a { animation: navLinkReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.topbar nav a:nth-child(1) { animation-delay: 220ms; }
.topbar nav a:nth-child(2) { animation-delay: 320ms; }
.topbar nav a:nth-child(3) { animation-delay: 420ms; }
.topbar nav a:hover, .footer-bottom nav a:hover { color: var(--accent); }
.hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 154, 61, 0.38), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(96, 154, 149, 0.34), transparent 30%),
    linear-gradient(115deg, #0b1e1d 0%, #103c35 38%, #1d655d 58%, #efe3cf 100%);
  background-size: 160% 160%;
  animation: heroGradientFlow 13s ease-in-out infinite alternate;
  color: #fffaf0;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  min-height: 76vh;
  overflow: hidden;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) 58px;
  position: relative;
}
.hero::before {
  background:
    linear-gradient(108deg, transparent 0%, rgba(255, 250, 240, 0.12) 18%, transparent 34%),
    linear-gradient(292deg, rgba(11, 30, 29, 0.34), transparent 48%);
  background-size: 220% 220%, 140% 140%;
  content: "";
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  transform: translateX(-8%);
  z-index: 0;
  animation: heroLightSweep 9s ease-in-out infinite alternate;
}
.hero::after {
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.16), transparent 20%, rgba(201, 154, 61, 0.16) 44%, transparent 72%);
  content: "";
  height: 100%;
  left: -35%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 45%;
  z-index: 0;
  animation: heroRibbonDrift 12s ease-in-out infinite;
}
.hero-copy { align-self: center; max-width: 840px; }
.hero-copy, .signal-panel { position: relative; z-index: 1; }
.hero-copy .eyebrow { animation: textRiseGradient 800ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-copy h1 { animation: textRiseGradient 920ms 240ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-copy > p:not(.eyebrow) { animation: textRiseGradient 900ms 380ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-actions { animation: frameGradientIn 920ms 520ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-actions a { animation: buttonReveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-actions a:nth-child(1) { animation-delay: 660ms; }
.hero-actions a:nth-child(2) { animation-delay: 760ms; }
.hero h1 { color: #fffaf0; text-shadow: 0 18px 60px rgba(0, 0, 0, 0.22); }
.hero .eyebrow { color: #f3c76f; }
.hero-copy > p:not(.eyebrow) { color: rgba(255, 250, 240, 0.82); }
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6.4vw, 82px); line-height: 0.96; margin-bottom: 24px; max-width: 920px; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.02; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 12px; }
p { color: var(--muted); font-size: 17px; line-height: 1.72; }
.hero-copy > p:not(.eyebrow) { max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.primary-action, .secondary-action, .opt-form button {
  border: 1px solid var(--panel-strong);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 13px 18px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}
.primary-action, .opt-form button {
  background: linear-gradient(135deg, var(--panel-strong), #15584d 58%, var(--accent-2));
  box-shadow: 0 14px 30px rgba(16, 60, 53, 0.2);
  color: #fffaf0;
}
.secondary-action { background: rgba(255, 250, 240, 0.1); border-color: rgba(255, 250, 240, 0.58); color: #fffaf0; }
.primary-action:hover, .secondary-action:hover, .opt-form button:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(16, 60, 53, 0.2);
  transform: translateY(-2px);
}
.signal-panel {
  align-self: end;
  animation: panelGradientIn 980ms 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.13), rgba(255, 250, 240, 0.06));
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fffaf0;
  display: grid;
  overflow: hidden;
  position: relative;
}
.signal-panel::before {
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-2));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.signal-panel::after {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 250, 240, 0.18) 45%, transparent 70%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
  animation: panelShimmer 7s ease-in-out infinite;
}
.signal-panel div { animation: signalItemReveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both; border-bottom: 1px solid rgba(255, 250, 240, 0.16); padding: clamp(22px, 4vw, 36px); }
.signal-panel div:nth-child(1) { animation-delay: 720ms; }
.signal-panel div:nth-child(2) { animation-delay: 840ms; }
.signal-panel div:nth-child(3) { animation-delay: 960ms; }
.signal-panel span { color: #d6c8ad; display: block; font-size: 13px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.signal-panel strong { display: block; font-size: clamp(23px, 3vw, 34px); line-height: 1.1; }
.metric-strip { background: linear-gradient(90deg, rgba(255, 250, 240, 0.86), rgba(232, 239, 231, 0.72)); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-strip div { animation: softFrameIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both; border-right: 1px solid var(--line); padding: 24px clamp(20px, 4vw, 48px); }
.metric-strip div:nth-child(1) { animation-delay: 120ms; }
.metric-strip div:nth-child(2) { animation-delay: 220ms; }
.metric-strip div:nth-child(3) { animation-delay: 320ms; }
.metric-strip div:nth-child(4) { animation-delay: 420ms; }
.metric-strip strong { display: block; font-size: 28px; margin-bottom: 6px; }
.metric-strip span { color: var(--muted); font-size: 14px; }
.section, .band, .legal-page { padding: clamp(54px, 8vw, 100px) clamp(20px, 5vw, 72px); }
.section-heading { max-width: 820px; }
.service-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); margin-top: 42px; }
.service-card {
  animation: cardGradientIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 240, 0.94)), var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(16, 60, 53, 0.06);
  min-height: 250px;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.service-card:nth-child(1) { animation-delay: 120ms; }
.service-card:nth-child(2) { animation-delay: 220ms; }
.service-card:nth-child(3) { animation-delay: 320ms; }
.service-card:nth-child(4) { animation-delay: 420ms; }
.service-card:hover {
  border-color: rgba(47, 111, 115, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.band { background: linear-gradient(120deg, rgba(232, 239, 231, 0.96), rgba(220, 236, 241, 0.78)), #e8efe7; }
.process-list { counter-reset: process; display: grid; list-style: none; margin: 34px 0 0; max-width: 980px; padding: 0; }
.process-list li { align-items: center; animation: textRiseSoft 720ms cubic-bezier(0.22, 1, 0.36, 1) both; border-top: 1px solid rgba(23, 32, 27, 0.16); display: grid; font-size: clamp(20px, 2.4vw, 31px); font-weight: 750; gap: 24px; grid-template-columns: 78px 1fr; line-height: 1.18; padding: 24px 0; }
.process-list li:nth-child(1) { animation-delay: 80ms; }
.process-list li:nth-child(2) { animation-delay: 160ms; }
.process-list li:nth-child(3) { animation-delay: 240ms; }
.process-list li:nth-child(4) { animation-delay: 320ms; }
.process-list li:nth-child(5) { animation-delay: 400ms; }
.process-list li::before { color: var(--accent-2); content: "0" counter(process); counter-increment: process; font-family: monospace; font-size: 18px; }
.split { align-items: start; display: grid; gap: 42px; grid-template-columns: 0.85fr 1fr; }
.text-stack { display: grid; gap: 14px; }
.site-footer { background: linear-gradient(135deg, #16221f, #103c35 58%, #1b4f50), #16221f; color: #fffaf0; padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 72px) 28px; }
.site-footer p { color: #d8d0c4; }
.footer-grid { display: grid; gap: clamp(28px, 5vw, 72px); grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr); }
.address { margin-top: 28px; }
.opt-form { animation: panelGradientIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both; background: linear-gradient(160deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.05)), rgba(255, 250, 240, 0.06); border: 1px solid rgba(255, 250, 240, 0.16); border-radius: 6px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18); display: grid; gap: 16px; padding: clamp(20px, 4vw, 32px); }
.opt-form label { color: #fffaf0; display: grid; font-size: 14px; font-weight: 700; gap: 8px; }
.opt-form input[type="text"], .opt-form input[type="email"], .opt-form input[type="tel"] { background: #fffaf0; border: 1px solid rgba(255, 250, 240, 0.3); border-radius: 6px; color: var(--foreground); font: inherit; padding: 12px; width: 100%; }
.opt-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.22); outline: none; }
.checkbox-row { align-items: start; display: grid !important; gap: 12px !important; grid-template-columns: 20px 1fr; }
.checkbox-row span { color: #d8d0c4; font-size: 13px; line-height: 1.55; }
.checkbox-row a { color: #ffffff; text-decoration: underline; }
.opt-form button { border-color: #fffaf0; cursor: pointer; font: inherit; width: 100%; }
.form-note { font-size: 12px; line-height: 1.5; margin: 0; }
.footer-bottom { align-items: center; border-top: 1px solid rgba(255, 250, 240, 0.16); color: #d8d0c4; display: flex; flex-wrap: wrap; font-size: 13px; gap: 18px; justify-content: space-between; margin-top: 44px; padding-top: 22px; }
.legal-page { margin: 0 auto; max-width: 920px; }
.legal-page h1 { font-size: clamp(42px, 6vw, 70px); }
.legal-page section { border-top: 1px solid var(--line); padding: 28px 0; }
.legal-page h2 { font-size: 28px; }
.updated { color: var(--accent-2); font-weight: 800; margin-bottom: 38px; }
@keyframes heroGradientFlow {
  0% { background-position: 0% 40%; }
  50% { background-position: 70% 55%; }
  100% { background-position: 100% 44%; }
}
@keyframes heroLightSweep {
  0% { background-position: 0% 50%, 100% 40%; transform: translateX(-8%); }
  100% { background-position: 100% 46%, 0% 52%; transform: translateX(6%); }
}
@keyframes heroRibbonDrift {
  0% { left: -48%; opacity: 0; }
  18% { opacity: 0.72; }
  72% { opacity: 0.34; }
  100% { left: 112%; opacity: 0; }
}
@keyframes panelShimmer {
  0%, 38% { transform: translateX(-120%); opacity: 0; }
  58% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}
@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes brandReveal {
  from { filter: blur(8px); opacity: 0; transform: translateX(-18px); }
  to { filter: blur(0); opacity: 1; transform: translateX(0); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.72) rotate(-8deg); }
  70% { transform: scale(1.06) rotate(0deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes navLinkReveal {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes textRiseGradient {
  from { filter: blur(12px); opacity: 0; transform: translateY(34px); }
  60% { filter: blur(0); opacity: 1; }
  to { filter: blur(0); opacity: 1; transform: translateY(0); }
}
@keyframes textRiseSoft {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes panelGradientIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    background-position: 0% 50%;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    background-position: 100% 50%;
  }
}
@keyframes frameGradientIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes buttonReveal {
  from { filter: blur(8px); opacity: 0; transform: translateY(18px) scale(0.96); }
  to { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes signalItemReveal {
  from { filter: blur(10px); opacity: 0; transform: translateX(32px); }
  to { filter: blur(0); opacity: 1; transform: translateX(0); }
}
@keyframes softFrameIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardGradientIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    background-position: 0% 50%;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    background-position: 100% 50%;
  }
}
.js-enabled .reveal-item {
  animation: none !important;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1),
    background-position 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 820ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-enabled .metric-strip div.reveal-item,
.js-enabled .service-card.reveal-item,
.js-enabled .opt-form.reveal-item {
  background-size: 180% 180%;
  background-position: 0% 50%;
}
.js-enabled .process-list li.reveal-item {
  transform: translateX(-26px);
}
.js-enabled .reveal-item.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}
.js-enabled .process-list li.reveal-item.is-visible {
  transform: translateX(0);
}
.js-enabled .metric-strip div.reveal-item.is-visible,
.js-enabled .service-card.reveal-item.is-visible,
.js-enabled .opt-form.reveal-item.is-visible {
  background-position: 100% 50%;
}
.js-enabled .service-card.reveal-item.is-visible {
  box-shadow: 0 16px 40px rgba(16, 60, 53, 0.1);
}
.js-enabled .process-list li.reveal-item.is-visible {
  border-top-color: rgba(47, 111, 115, 0.26);
}
@media (prefers-reduced-motion: reduce) {
  .topbar, .brand, .brand span, .topbar nav a, .hero, .hero::before, .hero::after, .hero-copy .eyebrow, .hero-copy h1, .hero-copy > p:not(.eyebrow), .hero-actions, .hero-actions a, .signal-panel, .signal-panel div, .signal-panel::after, .metric-strip div, .service-card, .process-list li, .opt-form {
    animation: none;
  }
  .js-enabled .reveal-item {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 980px) {
  .hero, .footer-grid, .split { grid-template-columns: 1fr; }
  .metric-strip, .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .hero { min-height: auto; }
  .metric-strip, .service-grid { grid-template-columns: 1fr; }
  .metric-strip div { border-bottom: 1px solid var(--line); border-right: 0; }
  .process-list li { grid-template-columns: 52px 1fr; }
}
