:root {
  --ink: #141922;
  --slate: #2a3544;
  --mist: #e8edf2;
  --paper: #f4f7fa;
  --white: #ffffff;
  --beacon: #c9782e;
  --beacon-deep: #9a5a1c;
  --steel: #4d6b8a;
  --line: rgba(20, 25, 34, 0.12);
  --soft: rgba(42, 53, 68, 0.06);
  --radius: 2px;
  --shadow: 0 18px 40px rgba(20, 25, 34, 0.08);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 120, 46, 0.12), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(77, 107, 138, 0.14), transparent 50%),
    linear-gradient(180deg, var(--paper), var(--mist) 42%, var(--paper));
  background-attachment: fixed;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--beacon-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

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

.site-header__bar {
  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;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #fff6e8 0 28%, transparent 29%),
    conic-gradient(from 210deg, var(--beacon), #f0c28a, var(--beacon-deep), var(--beacon));
  box-shadow: 0 0 0 3px rgba(201, 120, 46, 0.18);
  animation: pulse-mark 4.5s var(--ease) infinite;
}

@keyframes pulse-mark {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(201, 120, 46, 0.18);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 6px rgba(201, 120, 46, 0.08);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--slate);
  text-decoration: none;
}

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

.nav-cta {
  padding: 0.55rem 0.95rem;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--beacon) !important;
  color: var(--ink) !important;
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0.35rem 0;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn--primary {
  background: var(--beacon);
  color: var(--ink);
}

.btn--primary:hover {
  background: #e0953f;
  color: var(--ink);
}

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

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

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

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 25, 34, 0.82) 0%, rgba(20, 25, 34, 0.55) 48%, rgba(20, 25, 34, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 25, 34, 0.55), transparent 45%);
}

.hero__content {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
  color: var(--paper);
  max-width: 38rem;
  animation: rise-in 0.9s var(--ease) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
  color: #fff;
}

.hero__lead {
  font-size: 1.15rem;
  color: rgba(244, 247, 250, 0.9);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.section {
  padding: 4.5rem 0;
}

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

.section__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beacon-deep);
  margin-bottom: 0.6rem;
}

.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 18ch;
}

.section__intro {
  max-width: 42rem;
  color: var(--slate);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.offer-row:hover {
  border-color: rgba(201, 120, 46, 0.45);
  transform: translateX(4px);
}

.offer-row img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}

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

.offer-row p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

.band {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 120, 46, 0.35), transparent 70%);
  pointer-events: none;
}

.band a {
  color: #f0c28a;
}

.quote-block {
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
}

.quote-meta {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 16ch;
}

.page-hero p {
  max-width: 40rem;
  color: var(--slate);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

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

.rate-table th {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.rate-note {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.review-list {
  display: grid;
  gap: 1.5rem;
}

.review {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.review:last-child {
  border-bottom: 1px solid var(--line);
}

.review__text {
  font-size: 1.08rem;
}

.review__meta {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--slate);
}

.story {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.story img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease);
}

.blog-item:hover img {
  transform: scale(1.03);
}

.blog-item h3 {
  font-size: 1.15rem;
  color: var(--ink);
}

.blog-item p {
  color: var(--slate);
  margin: 0;
  font-size: 0.95rem;
}

.meta-line {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--steel);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.contact-card p {
  margin-bottom: 0.45rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  font: inherit;
  font-family: var(--font-ui);
  font-weight: 400;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #a33b2d;
}

.field-error {
  color: #a33b2d;
  font-size: 0.82rem;
  font-weight: 500;
}

.form-status {
  margin-top: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.form-status--success {
  color: #1f6b45;
}

.form-status--error {
  color: #a33b2d;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.site-footer {
  margin-top: 3rem;
  background: #10151c;
  color: #d7dde5;
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: #f0c28a;
  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: #fff;
  margin-bottom: 0.5rem;
}

.footer-lead {
  color: #aeb7c3;
  max-width: 28ch;
}

.footer-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8d98a8;
  margin-bottom: 0.7rem;
}

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

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

.site-footer__base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #8d98a8;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 720px;
  margin-inline: auto;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  animation: rise-in 0.5s var(--ease);
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.cookie-banner a {
  color: #f0c28a;
}

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

.cookie-banner .btn--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.25);
}

.inline-error {
  margin: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f8e4e1;
  color: #8a2f24;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
  background: rgba(255, 255, 255, 0.65);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.cta-strip h2 {
  margin: 0;
  font-size: 1.4rem;
}

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

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 0.4rem;
}

@media (max-width: 960px) {
  .split,
  .split--reverse,
  .contact-grid,
  .story,
  .site-footer__grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-row img {
    width: 100%;
    height: 180px;
  }

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

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(244, 247, 250, 0.98);
    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);
  }

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

  .site-header__bar {
    position: relative;
  }
}

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