:root {
  --bg: #f3f2ef;
  --bg-soft: #e8e6e1;
  --ink: #1c1b19;
  --ink-muted: #5a5750;
  --line: #d2cfc7;
  --accent: #3f5348;
  --accent-hover: #2f3f37;
  --surface: #faf9f7;
  --danger: #8b3a2f;
  --success: #2f5344;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
  --radius: 2px;
  --shadow: 0 18px 40px rgba(28, 27, 25, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(63, 83, 72, 0.08), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(28, 27, 25, 0.04), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 0.8rem; }
h3 { font-size: 1.45rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow { max-width: 720px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--surface);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(243, 242, 239, 0.9);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

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

.nav-cta {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--ink);
  color: var(--ink) !important;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--surface);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 18s ease-out forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 27, 25, 0.25) 0%, rgba(28, 27, 25, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  animation: rise 0.9s ease both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.lede {
  font-size: 1.15rem;
  max-width: 38rem;
  color: inherit;
  opacity: 0.95;
}

.hero .lede { color: rgba(250, 249, 247, 0.92); }

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 1.5rem;
  animation: rise 0.7s ease both;
}

.page-hero .lede { color: var(--ink-muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section-soft {
  background: rgba(232, 230, 225, 0.55);
  border-block: 1px solid var(--line);
}

.btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  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(--surface);
}

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

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
  margin-left: 0.5rem;
}

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

.hero .btn-primary:hover {
  background: #fff;
}

.text-link {
  font-weight: 600;
}

.feature-offer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-offer img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.offer-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.offer-summary { color: var(--ink-muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.pull-quote {
  margin: 0;
  padding: 0;
  border: 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.35;
}

.pull-quote footer {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.media-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.media-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card a:hover img {
  transform: scale(1.02);
}

.media-card-body {
  padding: 1rem 0 0;
}

.meta {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

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

.detail-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-aside {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.fact-list {
  margin: 0 0 1.25rem;
}

.fact-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.fact-list dd { margin: 0; }

.prose > * + h2 { margin-top: 2rem; }

.plain-list {
  padding-left: 1.1rem;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

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

.rate-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  font-weight: 600;
}

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

.review-list blockquote {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.review-list footer {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.75rem;
}

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

.stage-list li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  animation: rise 0.7s ease both;
}

.stage-list li:nth-child(2) { animation-delay: 0.08s; }
.stage-list li:nth-child(3) { animation-delay: 0.16s; }
.stage-list li:nth-child(4) { animation-delay: 0.24s; }

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(63, 83, 72, 0.35);
  border-color: var(--accent);
}

.field-error {
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0;
}

.form-status {
  margin: 0.25rem 0 0;
  padding: 0.75rem;
}

.form-status.is-success {
  background: rgba(47, 83, 68, 0.1);
  color: var(--success);
}

.form-status.is-error {
  background: rgba(139, 58, 47, 0.1);
  color: var(--danger);
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: #1c1b19;
  color: rgba(250, 249, 247, 0.88);
}

.site-footer a { color: #f3efe6; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr 0.8fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.footer-tag,
.footer-label {
  color: rgba(250, 249, 247, 0.65);
}

.footer-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 249, 247, 0.15);
  font-size: 0.9rem;
  color: rgba(250, 249, 247, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(28, 27, 25, 0.08);
  padding: 1rem 0;
  animation: rise 0.4s ease both;
}

.cookie-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p { margin: 0; max-width: 48rem; }

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .btn-ghost {
  color: var(--ink);
  margin-left: 0;
}

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

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-offer,
  .split,
  .detail-layout,
  .contact-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-aside { position: static; }
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .hero { min-height: 78vh; }
}
