:root {
  --ink: #1a2b2a;
  --ink-soft: #3d4f4d;
  --paper: #f3f1ec;
  --mist: #e4ebe8;
  --line: #c5d0cb;
  --accent: #c45c3a;
  --accent-deep: #9a3f28;
  --teal: #1e3a3a;
  --gold: #e8c47c;
  --white: #fffcf7;
  --success: #2f6b4f;
  --error: #a33b2c;
  --radius: 4px;
  --shadow: 0 18px 40px rgba(26, 43, 42, 0.12);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 196, 124, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 92, 58, 0.12), transparent 50%),
    linear-gradient(180deg, #ebe8e1 0%, var(--paper) 38%, #eef2ef 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.inline-error {
  background: #f8d9d3;
  color: var(--error);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 241, 236, 0.88);
  border-bottom: 1px solid rgba(197, 208, 203, 0.7);
}

.site-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.65rem;
  text-decoration: none;
  color: var(--teal);
}

.brand__mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
  background:
    linear-gradient(135deg, var(--teal) 55%, var(--gold) 55% 78%, var(--accent) 78%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.05rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 540;
}

.site-nav a:hover {
  color: var(--teal);
}

.site-nav .nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
}

.site-nav .nav-cta:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

.btn--primary:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--teal);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: #152c2c;
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out alternate infinite;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 40, 39, 0.88) 8%, rgba(20, 40, 39, 0.45) 58%, rgba(20, 40, 39, 0.25) 100%),
    linear-gradient(to top, rgba(20, 40, 39, 0.7), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vh, 7rem) 0 3.5rem;
  max-width: 38rem;
}

.hero__content h1 {
  color: var(--white);
}

.hero__content p {
  color: rgba(255, 252, 247, 0.9);
  font-size: 1.08rem;
  max-width: 32rem;
}

.brand-hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 1rem;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.page-hero--split img {
  width: 100%;
  height: min(420px, 55vw);
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--band {
  background: linear-gradient(180deg, rgba(30, 58, 58, 0.06), rgba(30, 58, 58, 0.02));
  border-block: 1px solid var(--line);
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.offer-block {
  display: grid;
  gap: 0.85rem;
}

.offer-block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.offer-block h3 a {
  text-decoration: none;
  color: var(--teal);
}

.panel {
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
  border-radius: 2px;
}

.quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal);
}

.quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: normal;
  color: var(--ink-soft);
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.story img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.rate-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.rate-row strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal);
}

.list-clean {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.list-clean li {
  margin-bottom: 0.45rem;
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form input.is-invalid,
.form select.is-invalid,
.form textarea.is-invalid {
  border-color: var(--error);
}

.field-error {
  color: var(--error);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.95rem;
}

.form-status--success {
  color: var(--success);
}

.form-status--error {
  color: var(--error);
}

.contact-aside {
  background: var(--teal);
  color: var(--white);
  padding: 1.6rem;
  border-radius: 2px;
}

.contact-aside a {
  color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

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

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 1.25rem 0 1.75rem;
}

.article-body {
  max-width: 42rem;
}

.article-body h2 {
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: var(--teal);
  color: rgba(255, 252, 247, 0.86);
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.site-footer__base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 252, 247, 0.15);
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 2px;
  padding: 1.1rem 1.2rem;
  animation: slideUp 0.45s ease;
}

.cookie-banner__inner {
  display: grid;
  gap: 0.9rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Legal */
.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: 2rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: rgba(30, 58, 58, 0.06);
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--accent);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.accent-rule {
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 0 0 1.25rem;
  border: 0;
}

.process-steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  list-style: none;
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: rgba(255, 252, 247, 0.65);
  border: 1px solid var(--line);
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.process-steps {
  padding: 0;
  margin: 0;
}

.radar-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.radar-item time {
  font-size: 0.85rem;
  color: var(--accent-deep);
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

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

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .grid-3,
  .grid-2,
  .page-hero--split,
  .story,
  .contact-layout,
  .site-footer__grid,
  .blog-item {
    grid-template-columns: 1fr;
  }

  .rate-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
