:root {
  --bg: #f3f1ec;
  --bg-elevated: #faf9f6;
  --ink: #2a2e2c;
  --ink-soft: #5a615c;
  --line: #d9d5cc;
  --accent: #3d4a44;
  --accent-hover: #2f3934;
  --accent-soft: #e4e8e5;
  --highlight: #c4a574;
  --danger: #8b3a3a;
  --success: #2f5d45;
  --shadow: 0 18px 40px rgba(42, 46, 44, 0.08);
  --radius: 4px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(196, 165, 116, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(61, 74, 68, 0.08), transparent 50%),
    linear-gradient(180deg, #efece6 0%, var(--bg) 28%, #f7f5f1 100%);
  min-height: 100vh;
}

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(243, 241, 236, 0.88);
  border-bottom: 1px solid rgba(217, 213, 204, 0.7);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  background: var(--accent);
  color: #f7f5f1 !important;
  border-radius: var(--radius);
}

.nav-cta:hover { background: var(--accent-hover); }

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

.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;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 38rem;
}

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

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 46, 44, 0.25) 0%, rgba(42, 46, 44, 0.55) 45%, rgba(42, 46, 44, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(3.5rem, 8vw, 5rem);
  color: #f7f5f1;
  max-width: 36rem;
}

.hero-content h1 {
  color: #f7f5f1;
  animation: riseIn 0.9s ease both;
}

.hero-content .lead {
  color: rgba(247, 245, 241, 0.88);
  animation: riseIn 0.9s ease 0.12s both;
}

.hero-content .btn-group {
  animation: riseIn 0.9s ease 0.22s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1.25rem;
  color: #f7f5f1;
  animation: riseIn 0.9s ease both;
}

.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
}

.page-hero.with-image {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .page-hero.with-image {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-list {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .offer-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offer-item {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.offer-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
}

.offer-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

.quote {
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--highlight);
  padding-left: 1.25rem;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
}

.quote footer {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: normal;
  font-family: var(--font-body);
}

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

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.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-weight: 600;
  color: var(--ink);
  background: rgba(61, 74, 68, 0.06);
}

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

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(61, 74, 68, 0.35);
  outline-offset: 1px;
  border-color: var(--accent);
}

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

.form-row.has-error .field-error { display: block; }
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--danger);
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(47, 93, 69, 0.12);
  color: var(--success);
}

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

.prose {
  max-width: 42rem;
}

.prose h2 { margin-top: 2.25rem; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }

.blog-grid,
.story-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

.blog-teaser img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
}

.blog-teaser h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-teaser h3 a:hover { color: var(--accent); }

.meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.faq details p {
  margin-top: 0.75rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #eae7e0;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

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

.footer-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

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

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

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(42, 46, 44, 0.96);
  color: #f7f5f1;
  padding: 1rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner[hidden] { display: none !important; }

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

.cookie-banner p {
  color: rgba(247, 245, 241, 0.9);
  margin: 0;
  max-width: 42rem;
}

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

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

.cookie-banner .btn-ghost {
  color: #f7f5f1;
  border-color: rgba(247, 245, 241, 0.35);
}

.cookie-banner .btn-primary {
  background: #c4a574;
  color: #2a2e2c;
}

.cookie-banner .btn-primary:hover {
  background: #d4b889;
  color: #2a2e2c;
}

.img-missing {
  background: var(--accent-soft);
  border: 1px dashed var(--line);
  min-height: 12rem;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  border-radius: var(--radius);
}

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

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--highlight);
  border-radius: 1px;
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.contact-aside p { margin-bottom: 0.35rem; }

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

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

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta { margin-top: 0.35rem; }
}

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