:root {
  --ink: #0b2230;
  --ink-soft: #17394a;
  --teal: #2f7273;
  --teal-dark: #1e575b;
  --teal-pale: #dceae5;
  --paper: #f5f0e6;
  --paper-light: #fffdf8;
  --amber: #e8a238;
  --amber-pale: #f8dfae;
  --white: #ffffff;
  --muted: #5b6b70;
  --line: rgba(11, 34, 48, 0.14);
  --shadow: 0 24px 64px rgba(11, 34, 48, 0.12);
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --radius: 1.25rem;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper-light); font-family: var(--sans); font-size: 1rem; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
::selection { color: var(--ink); background: var(--amber-pale); }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 10001; transform: translateY(-150%); padding: .7rem 1rem; color: var(--white); background: var(--ink); border-radius: .5rem; font-weight: 800; }
.skip-link:focus { transform: none; }

.domain-sale-banner { position: relative; z-index: 9999; width: 100%; color: #fff; background: radial-gradient(circle at 15% 50%, rgba(232,162,56,.28), transparent 34%), linear-gradient(100deg, #071a25 0%, #0b2b38 58%, #164d4e 100%); border-bottom: 1px solid rgba(255,255,255,.14); box-shadow: 0 8px 28px rgba(0,0,0,.2); font-family: Arial,Helvetica,sans-serif; }
.domain-sale-banner__content { width: min(1180px,calc(100% - 32px)); min-height: 76px; margin: 0 auto; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.domain-sale-banner__text { display: grid; gap: 4px; line-height: 1.35; }
.domain-sale-banner__text strong { font-size: clamp(1rem,2vw,1.2rem); letter-spacing: -.01em; }
.domain-sale-banner__text span { color: rgba(255,255,255,.74); font-size: .92rem; }
.domain-sale-banner__button { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 20px; color: var(--ink); background: var(--amber); border: 1px solid #f4ba5e; border-radius: 999px; box-shadow: 0 8px 20px rgba(232,162,56,.28); font-size: .94rem; font-weight: 800; text-decoration: none; transition: transform 160ms ease,background 160ms ease,box-shadow 160ms ease; }
.domain-sale-banner__button:hover,.domain-sale-banner__button:focus-visible { background: #f2b24e; box-shadow: 0 10px 26px rgba(232,162,56,.38); transform: translateY(-2px); outline: none; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,253,248,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.brand span span { color: var(--teal); }
.menu-toggle { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }
.menu-toggle span,.menu-toggle span::before,.menu-toggle span::after { display: block; width: 20px; height: 2px; background: currentColor; content: ""; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.site-nav { position: absolute; inset: 74px 0 auto; display: none; padding: .5rem 1rem 1rem; background: var(--paper-light); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(11,34,48,.09); }
.site-nav.open { display: grid; }
.site-nav a { padding: .8rem 1rem; border-radius: .7rem; text-decoration: none; font-weight: 750; }
.site-nav a:hover,.site-nav a[aria-current="page"] { color: var(--teal-dark); background: var(--teal-pale); }
.site-nav .nav-cta { margin-top: .35rem; color: var(--paper-light); background: var(--ink); text-align: center; }
.site-nav .nav-cta:hover { color: var(--ink); background: var(--amber); }

.hero { position: relative; min-height: clamp(580px,78vh,780px); display: grid; align-items: end; overflow: hidden; background: var(--ink); }
.hero::before { position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(5,25,35,.96) 0%, rgba(5,25,35,.83) 38%, rgba(5,25,35,.22) 70%, rgba(5,25,35,.08) 100%), url("../images/hero-banner.jpg") center/cover no-repeat; content: ""; }
.hero::after { position: absolute; right: -7rem; bottom: -9rem; width: 26rem; height: 26rem; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; content: ""; }
.hero__inner { position: relative; z-index: 1; padding-block: clamp(5rem,12vw,8rem) 4rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--teal-dark); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; background: var(--amber); content: ""; }
.hero .eyebrow { color: var(--amber-pale); }
.hero h1,.page-hero h1 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(3.2rem,10vw,7.25rem); font-weight: 500; letter-spacing: -.055em; line-height: .86; }
.hero h1 { color: var(--paper-light); }
.hero h1 em { color: var(--amber); font-weight: 400; }
.hero__copy { max-width: 620px; margin: 1.6rem 0 0; color: rgba(255,255,255,.81); font-size: clamp(1rem,2.5vw,1.2rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: 999px; color: var(--paper-light); background: var(--teal-dark); font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--teal); }
.button--warm { color: var(--ink); background: var(--amber); }
.button--warm:hover { background: #f0b457; }
.button--ghost { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.button--outline { color: var(--ink); border-color: var(--line); background: transparent; }
.button--outline:hover { background: var(--teal-pale); }
.hero__note { margin-top: 1.4rem; color: rgba(255,255,255,.58); font-size: .8rem; }

.crisis-strip { background: var(--amber); }
.crisis-strip__inner { padding-block: 1rem; display: grid; gap: .7rem; }
.crisis-strip p { margin: 0; font-weight: 700; }
.crisis-strip a { font-weight: 900; text-underline-offset: 3px; }
.section { padding-block: clamp(4rem,8vw,7rem); }
.section--paper { background: var(--paper); }
.section--ink { color: var(--paper-light); background: var(--ink); }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head h2,.split-copy h2,.callout h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem,6vw,4.8rem); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.section-head p,.split-copy > p { color: var(--muted); font-size: 1.08rem; }
.section--ink .section-head p { color: rgba(255,255,255,.67); }
.cards { display: grid; gap: 1rem; }
.card { position: relative; min-height: 280px; padding: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-light); }
.card::after { position: absolute; right: -35px; bottom: -55px; width: 130px; height: 130px; border: 1px solid rgba(47,114,115,.18); border-radius: 50%; content: ""; }
.card__number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--paper-light); background: var(--teal-dark); font-family: var(--serif); font-size: 1.25rem; }
.card h3 { margin: 3rem 0 .6rem; font-family: var(--serif); font-size: 1.75rem; line-height: 1.1; }
.card p { margin: 0; color: var(--muted); }
.card a { display: inline-block; margin-top: 1rem; color: var(--teal-dark); font-weight: 800; text-underline-offset: 4px; }
.split { display: grid; gap: 2rem; align-items: center; }
.pull-quote { margin: 0; padding: 2rem; border-radius: var(--radius); background: var(--teal-pale); }
.pull-quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem,5vw,3.5rem); letter-spacing: -.035em; line-height: 1.05; }
.pull-quote p { margin: 1.2rem 0 0; color: var(--teal-dark); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.check-list { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-top: .8rem; padding-left: 1.8rem; }
.check-list li::before { position: absolute; left: 0; top: .28rem; width: 1.1rem; height: 1.1rem; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--amber); content: "✓"; font-size: .75rem; font-weight: 900; }
.resource-grid { display: grid; gap: 1rem; }
.resource { padding: 1.5rem; border-top: 3px solid var(--teal); background: rgba(255,255,255,.06); }
.resource h3 { margin: 0 0 .4rem; font-family: var(--serif); font-size: 1.7rem; }
.resource p { margin: 0; color: rgba(255,255,255,.68); }
.resource a { display: inline-flex; margin-top: 1rem; color: var(--amber-pale); font-weight: 800; }
.callout { padding: clamp(2rem,6vw,4rem); border-radius: calc(var(--radius) * 1.5); background: var(--teal-pale); }
.callout p { max-width: 700px; color: var(--muted); }

.page-hero { padding-block: clamp(4rem,8vw,7rem); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; color: var(--ink); }
.page-hero p { max-width: 680px; margin: 1.4rem 0 0; color: var(--muted); font-size: 1.1rem; }
.values { display: grid; gap: 1rem; }
.value { padding: 1.5rem; border-left: 3px solid var(--amber); background: var(--paper); }
.value h3 { margin: 0 0 .4rem; font-family: var(--serif); font-size: 1.7rem; }
.value p { margin: 0; color: var(--muted); }
.timeline { display: grid; gap: 0; margin-top: 2rem; }
.timeline__item { position: relative; padding: 0 0 2rem 2rem; border-left: 1px solid var(--teal); }
.timeline__item::before { position: absolute; top: .25rem; left: -.45rem; width: .8rem; height: .8rem; border: 3px solid var(--paper-light); border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 1px var(--teal); content: ""; }
.timeline__item h3 { margin: 0; font-family: var(--serif); font-size: 1.5rem; }
.timeline__item p { margin: .4rem 0 0; color: var(--muted); }

.contact-grid { display: grid; gap: 2rem; }
.contact-form { padding: clamp(1.25rem,4vw,2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-light); box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .86rem; font-weight: 800; }
.field input,.field textarea,.field select { width: 100%; min-height: 50px; padding: .75rem .9rem; color: var(--ink); background: var(--paper-light); border: 1px solid rgba(11,34,48,.3); border-radius: .65rem; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,.field textarea:focus,.field select:focus { border-color: var(--teal); outline: 3px solid rgba(47,114,115,.18); }
.form-note,.form-status { color: var(--muted); font-size: .82rem; }
.form-status { min-height: 1.5rem; color: var(--teal-dark); font-weight: 800; }
.contact-aside { padding: 2rem; border-radius: var(--radius); color: var(--paper-light); background: var(--ink); }
.contact-aside h2 { margin-top: 0; font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.contact-aside p { color: rgba(255,255,255,.68); }
.contact-aside a { color: var(--amber-pale); font-weight: 800; }

.error-page { min-height: 70vh; display: grid; place-items: center; padding-block: 4rem; background: var(--paper); }
.error-card { max-width: 760px; text-align: center; }
.error-code { display: block; color: var(--teal); font-family: var(--serif); font-size: clamp(7rem,24vw,16rem); font-weight: 500; letter-spacing: -.08em; line-height: .7; }
.error-card h1 { margin: 2rem 0 .5rem; font-family: var(--serif); font-size: clamp(2.4rem,6vw,4.5rem); line-height: 1; }
.error-card p { color: var(--muted); }

.site-footer { color: rgba(255,255,255,.72); background: #061923; }
.footer-grid { padding-block: 3.5rem 2rem; display: grid; gap: 2rem; }
.footer-brand { color: var(--paper-light); }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.58); }
.footer-links { display: grid; gap: .5rem; }
.footer-links h2 { margin: 0 0 .5rem; color: var(--paper-light); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { width: fit-content; text-decoration: none; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom p { margin: .2rem 0; }

@media (max-width:680px) {
  .domain-sale-banner__content { min-height: auto; padding: 14px 0; align-items: stretch; flex-direction: column; gap: 12px; }
  .domain-sale-banner__button { width: 100%; }
  .hero::before { background: linear-gradient(180deg,rgba(5,25,35,.35),rgba(5,25,35,.96) 70%),url("../images/hero-banner.jpg") 66% center/cover no-repeat; }
  .hero__inner { padding-top: 17rem; }
  .button-row .button { width: 100%; }
}
@media (min-width:700px) {
  .crisis-strip__inner { grid-template-columns: 1fr auto; align-items: center; }
  .cards,.values,.resource-grid { grid-template-columns: repeat(3,1fr); }
  .split,.contact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(2rem,7vw,6rem); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width:820px) {
  .menu-toggle { display: none; }
  .site-nav { position: static; display: flex; align-items: center; padding: 0; background: none; border: 0; box-shadow: none; }
  .site-nav a { padding: .55rem .8rem; }
  .site-nav .nav-cta { margin: 0 0 0 .4rem; padding-inline: 1rem; color: var(--paper-light); }
}
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }

