:root {
  --ink: #142019;
  --ink-soft: #2a3830;
  --muted: #5a675f;
  --paper: #eef3ef;
  --paper-deep: #dce6df;
  --accent: #1e3d2f;
  --accent-mid: #2f6b4f;
  --accent-soft: #cfe0d5;
  --warm: #c4a574;
  --warm-soft: rgba(196, 165, 116, 0.22);
  --line: rgba(20, 32, 25, 0.12);
  --danger: #8b2e2e;
  --ok: #1e5c3a;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(47, 107, 79, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 15%, rgba(196, 165, 116, 0.16), transparent 50%),
    linear-gradient(180deg, #f4f7f4 0%, #e7eee9 48%, #dfe8e2 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(244, 247, 244, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  box-shadow: 0 8px 20px rgba(30, 61, 47, 0.22);
}

.brand-name {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--accent);
  border-bottom-color: var(--accent-mid);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s var(--ease);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  align-items: end;
  color: #f4f8f5;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.hero-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 22s var(--ease) infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 22, 16, 0.25) 0%, rgba(10, 22, 16, 0.55) 45%, rgba(10, 22, 16, 0.88) 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 6.5rem 0 3.5rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero h2 {
  color: inherit;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.12rem;
  color: rgba(244, 248, 245, 0.86);
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.55rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #f4f8f5;
  color: var(--accent);
}

.btn-primary:hover {
  background: #fff;
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: #f4f8f5;
  border-color: rgba(244, 248, 245, 0.45);
}

.btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

.btn-solid {
  background: var(--accent);
  color: #f4f8f5;
}

.btn-solid:hover {
  background: #163226;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(30, 61, 47, 0.35);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
  animation: rise 0.8s var(--ease) both;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Offerings list — not card grid clutter */
.offer-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.offer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.offer-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.offer-row p {
  color: var(--muted);
  max-width: 42rem;
}

.offer-price {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
  color: var(--accent);
}

.domain-options {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.domain-option {
  padding: 0;
  border: 0;
  background: transparent;
}

.domain-option h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.domain-option p {
  color: var(--muted);
}

.split-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.split-cta p {
  color: var(--muted);
  max-width: 36rem;
}

/* Forms — interaction containers OK */
.form-shell {
  width: min(42rem, 100%);
}

.form-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(20, 32, 25, 0.06);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.field .hint {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(20, 32, 25, 0.18);
  border-radius: 0.55rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent-mid);
}

.checkbox-list {
  display: grid;
  gap: 0.75rem;
}

.checkbox-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.checkbox-item:last-child {
  border-bottom: 0;
}

.checkbox-item input {
  margin-top: 0.3rem;
}

.checkbox-item .price {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.radio-list {
  display: grid;
  gap: 0.75rem;
}

.radio-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.radio-item:last-child {
  border-bottom: 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 0.55rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.alert-ok {
  background: rgba(30, 92, 58, 0.12);
  color: var(--ok);
}

.alert-error {
  background: rgba(139, 46, 46, 0.1);
  color: var(--danger);
}

.page-hero {
  padding: 3.25rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: 0.65rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38rem;
}

.terms-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.terms-list li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--muted);
}

.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-mid);
}

/* Admin */
.admin-body {
  background: #e8efe9;
}

.admin-wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 2rem auto 3rem;
}

.admin-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1rem;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.admin-table th {
  background: #f3f7f4;
  font-weight: 650;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-chips span {
  background: #f0f4f1;
  border-radius: 0.3rem;
  padding: 0.15rem 0.4rem;
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
}

.footer-brand p,
.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

@media (min-width: 820px) {
  .split-cta {
    grid-template-columns: 1.4fr auto;
  }

  .form-panel {
    padding: 1.85rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(244, 247, 244, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .checkbox-item {
    grid-template-columns: auto 1fr;
  }

  .checkbox-item .price {
    grid-column: 2;
  }

  .hero-content {
    padding-top: 5.5rem;
  }
}
