:root {
  --bg: #eef2f4;
  --bg-deep: #dfe7ea;
  --surface: #fbfcfc;
  --ink: #162028;
  --ink-soft: #3d4a55;
  --muted: #667580;
  --line: #c5d0d6;
  --accent: #0d5c63;
  --accent-deep: #084248;
  --accent-soft: #d6e8ea;
  --warm: #c4894a;
  --warm-soft: #f3e6d6;
  --danger: #9b2c2c;
  --ok: #1f6b4a;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 18px 40px rgba(22, 32, 40, 0.08);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Literata", Georgia, serif;
  --header-h: 4.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(13, 92, 99, 0.09), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(196, 137, 74, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(238, 242, 244, 0.86);
  border-bottom: 1px solid rgba(197, 208, 214, 0.8);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
  background:
    linear-gradient(145deg, var(--accent) 0%, var(--accent-deep) 70%),
    var(--accent);
  box-shadow: inset 0 -8px 0 rgba(212, 165, 116, 0.85);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  place-items: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -5px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 5px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1rem;
  flex-wrap: wrap;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

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

.site-main {
  padding-bottom: 4rem;
}

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 28, 34, 0.78) 0%, rgba(15, 28, 34, 0.45) 48%, rgba(15, 28, 34, 0.2) 100%),
    linear-gradient(180deg, transparent 40%, rgba(15, 28, 34, 0.55) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 4.5rem;
  color: #f5f8f8;
  max-width: 38rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--warm-soft);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 1rem;
  color: #fff;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(245, 248, 248, 0.9);
  max-width: 32rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  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(--warm);
  color: #1a140e;
}

.btn-primary:hover {
  background: #d39a5c;
  color: #1a140e;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

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

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

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.section-kicker {
  font-family: var(--font-display);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.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-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 22rem;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

.offer-grid,
.card-grid,
.blog-grid,
.review-grid {
  display: grid;
  gap: 1.25rem;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

.review-grid {
  grid-template-columns: repeat(2, 1fr);
}

.offer-item,
.blog-card,
.review-card,
.price-block,
.fact-block,
.content-panel {
  background: var(--surface);
  border: 1px solid rgba(197, 208, 214, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.offer-item,
.blog-card,
.review-card,
.price-block,
.fact-block,
.content-panel {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.offer-item:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offer-item img,
.blog-card img,
.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offer-body,
.blog-body,
.review-body,
.price-body,
.fact-body,
.panel-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.offer-body h3,
.blog-body h3 {
  font-size: 1.2rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-display);
}

.page-hero {
  padding: 3rem 0 1rem;
}

.page-hero-inner {
  display: grid;
  gap: 1.5rem;
}

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

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

.page-hero-media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.prose {
  max-width: 44rem;
}

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

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

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

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

.prose ol li {
  list-style: decimal;
}

.checklist {
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}

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

.quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  border-left: 3px solid var(--warm);
  padding-left: 1rem;
  margin: 1.25rem 0;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.review-card .reviewer {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
}

.price-list {
  display: grid;
  gap: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
}

.price-row strong {
  font-family: var(--font-display);
}

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

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

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

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

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(13, 92, 99, 0.35);
  border-color: var(--accent);
}

.field-error {
  color: var(--danger);
  font-size: 0.88rem;
  min-height: 1.1em;
}

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

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: #e5f4ec;
  color: var(--ok);
}

.form-status.error {
  background: #f8e8e8;
  color: var(--danger);
}

.contact-aside {
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

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

.map-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  background: #132027;
  color: #d7e0e4;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-nav a,
.footer-legal a,
.footer-contact a {
  color: #c9d5da;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-nav li,
.footer-legal li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9aadb6;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 34rem;
  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;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: riseIn 0.45s var(--ease);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

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

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

th {
  background: var(--accent-soft);
  font-family: var(--font-display);
}

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

.region-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
}

.inline-error {
  background: #f8e8e8;
  color: var(--danger);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

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

.muted {
  color: var(--muted);
}

.band {
  background: linear-gradient(135deg, rgba(13, 92, 99, 0.1), rgba(196, 137, 74, 0.12));
  border-top: 1px solid rgba(197, 208, 214, 0.7);
  border-bottom: 1px solid rgba(197, 208, 214, 0.7);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list article {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.feature-list h3 {
  margin-bottom: 0.35rem;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  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: 960px) {
  .offer-grid,
  .blog-grid,
  .region-grid,
  .footer-grid,
  .split,
  .split-reverse,
  .review-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 0.4rem);
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0.8rem;
    display: none;
    box-shadow: var(--shadow);
  }

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

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

  .nav-list a {
    padding: 0.55rem 0.4rem;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 78vh;
  }

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

  .page-hero-media img,
  .article-hero img {
    aspect-ratio: 16 / 10;
  }
}
