:root {
  --ink: #1a2b24;
  --ink-soft: #3d5248;
  --paper: #eef3f0;
  --surface: #f7faf8;
  --mist: #d5e4dc;
  --forest: #2a5c45;
  --forest-deep: #1e4232;
  --copper: #b85a2a;
  --copper-soft: #d47845;
  --line: rgba(26, 43, 36, 0.12);
  --shadow: 0 18px 40px rgba(26, 43, 36, 0.08);
  --radius: 4px;
  --radius-lg: 18px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Figtree", system-ui, sans-serif;
  --max: 1120px;
  --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);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(42, 92, 69, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(184, 90, 42, 0.1), transparent 50%),
    linear-gradient(180deg, #e8f0eb 0%, var(--paper) 28%, #f4f7f5 100%);
  min-height: 100vh;
}

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

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

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

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;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  font-family: var(--font-ui);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(238, 243, 240, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 35% 28% auto;
  height: 0.35rem;
  width: 0.35rem;
  border-radius: 50%;
  background: var(--copper);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-ui);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 1rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 4px 0 var(--ink), 0 -4px 0 var(--ink);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--forest-deep);
}

.nav-cta {
  background: var(--forest);
  color: #f4faf6 !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--forest-deep);
  color: #fff !important;
}

.site-main {
  min-height: 60vh;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

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

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  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(--copper);
  color: #fff;
}

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

.btn-secondary {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest-deep);
}

.btn-secondary:hover {
  background: var(--forest);
  color: #fff;
}

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

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 32, 26, 0.25) 0%, rgba(18, 32, 26, 0.55) 45%, rgba(18, 32, 26, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 32, 26, 0.55) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.25rem 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 12ch;
  animation: riseIn 0.9s var(--ease) both;
}

.hero h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 550;
  max-width: 28ch;
  color: #e7f1eb;
  animation: riseIn 1s 0.12s var(--ease) both;
}

.hero .hero-text {
  max-width: 36rem;
  color: rgba(245, 250, 247, 0.88);
  font-size: 1.1rem;
  animation: riseIn 1s 0.22s var(--ease) both;
}

.hero .btn-row {
  animation: riseIn 1s 0.32s var(--ease) both;
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

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

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

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

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

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

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 18ch;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split-2 {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .split-reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

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

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

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

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

.offer-item {
  padding: 0;
  background: transparent;
}

.offer-item img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.offer-item h3 {
  font-size: 1.25rem;
}

.offer-item a {
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
}

.band {
  background: linear-gradient(135deg, rgba(42, 92, 69, 0.08), rgba(184, 90, 42, 0.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-block {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.25rem;
  font-style: italic;
}

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

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.rate-table th {
  background: var(--forest);
  color: #f3faf6;
  font-weight: 600;
}

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

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

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

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

.review p {
  margin-bottom: 0.75rem;
}

.review .who {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.story {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.blog-list {
  display: grid;
  gap: 2rem;
}

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

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

.blog-card h2 {
  font-size: 1.2rem;
}

.blog-meta {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0 2rem;
}

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

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

.form label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.92rem;
}

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

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

.form .error {
  color: #8a2f1d;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  min-height: 1.1em;
}

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

.form .form-status.is-success {
  display: block;
  background: rgba(42, 92, 69, 0.12);
  color: var(--forest-deep);
}

.form .form-status.is-error {
  display: block;
  background: rgba(138, 47, 29, 0.1);
  color: #8a2f1d;
}

.contact-panel {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .contact-panel {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: fit-content;
}

.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

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

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

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

.cookie-table th {
  background: rgba(42, 92, 69, 0.1);
}

.dest-grid {
  display: grid;
  gap: 1.5rem;
}

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

.dest-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.dest-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 0.85rem;
}

.site-footer {
  margin-top: 3rem;
  background: var(--forest-deep);
  color: #dce8e2;
  padding: 3rem 1.25rem 2rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

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

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

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 250, 246, 0.7);
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #e8f2ec;
  text-decoration: none;
}

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

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

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

.footer-copy {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(220, 232, 226, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 420px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

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

.cookie-banner p {
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}

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

.cookie-actions button {
  font-family: var(--font-ui);
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.55rem 0.95rem;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--ink);
}

.inline-error {
  margin: 1rem 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(138, 47, 29, 0.1);
  color: #8a2f1d;
  font-family: var(--font-ui);
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.not-found h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

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

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

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

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(247, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

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