:root {
  --ink: #152028;
  --ink-soft: #2a3844;
  --mist: #e6edf2;
  --mist-deep: #cfd9e3;
  --paper: #f4f7fa;
  --forest: #2a5f52;
  --forest-deep: #1d453b;
  --brass: #a8895c;
  --brass-soft: #c4ab7e;
  --line: rgba(21, 32, 40, 0.12);
  --shadow: 0 18px 40px rgba(21, 32, 40, 0.08);
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(42, 95, 82, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(168, 137, 92, 0.14), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 40%, #eef3f6 100%);
  min-height: 100vh;
}

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

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

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

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

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1em;
}

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

.inline-error {
  background: #5c2a2a;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 250, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 247, 250, 0.92);
  box-shadow: 0 8px 24px rgba(21, 32, 40, 0.05);
}

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

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

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 55%, var(--brass) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 600;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: var(--ink);
  top: 50%;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--forest);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem !important;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--mist) !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

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

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

.btn-primary {
  background: var(--forest);
  color: #f7faf9;
}

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

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

.btn-secondary:hover {
  background: var(--ink);
  color: var(--mist);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #f4f7fa;
  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 ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 32, 40, 0.82) 0%, rgba(21, 32, 40, 0.55) 48%, rgba(21, 32, 40, 0.28) 100%),
    linear-gradient(0deg, rgba(21, 32, 40, 0.7) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 7rem 0 4.5rem;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: #f7faf9;
  animation: fadeUp 0.9s ease both;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 34rem;
  color: rgba(244, 247, 250, 0.9);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.9s ease 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.9s ease 0.22s both;
}

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

.hero .btn-primary:hover {
  background: var(--brass-soft);
  color: var(--ink);
}

.hero .btn-secondary {
  border-color: rgba(244, 247, 250, 0.55);
  color: #f4f7fa;
}

.hero .btn-secondary:hover {
  background: rgba(244, 247, 250, 0.12);
  color: #fff;
}

.section {
  padding: 4.5rem 0;
}

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

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-head p {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 280px;
  box-shadow: var(--shadow);
}

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

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(21, 32, 40, 0.25));
  pointer-events: none;
}

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

.offer-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: stretch;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.offer-row img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  border-radius: 2px;
}

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

.offer-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.offer-row a {
  text-decoration: none;
  color: inherit;
}

.offer-row a:hover h3 {
  color: var(--forest);
}

.quote-strip {
  background: linear-gradient(120deg, var(--ink) 0%, #243442 55%, var(--forest-deep) 100%);
  color: var(--mist);
  padding: 3.5rem 0;
}

.quote-strip blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.3;
  max-width: 42rem;
}

.quote-strip cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.step {
  position: relative;
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--forest);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass);
  display: block;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--ink-soft);
  margin: 0;
}

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

.page-hero h1 {
  max-width: 18ch;
}

.page-hero p {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.page-hero-media {
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
  max-height: 380px;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.45);
  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-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  background: rgba(42, 95, 82, 0.08);
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--brass);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-soft);
}

.reviews {
  display: grid;
  gap: 1.5rem;
}

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

.review p {
  font-size: 1.02rem;
}

.review footer {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.story img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
}

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

.blog-item {
  display: grid;
  gap: 0.85rem;
}

.blog-item a {
  text-decoration: none;
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.45s ease;
}

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

.blog-item h2,
.blog-item h3 {
  font-size: 1.45rem;
  margin: 0;
}

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

.article {
  max-width: 42rem;
}

.article .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.article-cover {
  margin: 1.5rem 0 2rem;
  border-radius: 2px;
  overflow: hidden;
  max-height: 420px;
}

.article-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

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

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

.contact-card address {
  font-style: normal;
  line-height: 1.7;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(42, 95, 82, 0.35);
  outline-offset: 1px;
  border-color: var(--forest);
}

.field-error {
  min-height: 1.2em;
  font-size: 0.82rem;
  color: #8a2f2f;
  margin-top: 0.25rem;
}

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

.form-status.is-success {
  background: rgba(42, 95, 82, 0.12);
  color: var(--forest-deep);
}

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

.legal {
  max-width: 46rem;
}

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

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0;
}

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

.legal th {
  background: rgba(42, 95, 82, 0.08);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.team-person img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.team-person h3 {
  margin-bottom: 0.25rem;
}

.team-person p {
  color: var(--ink-soft);
  margin: 0;
}

.cta-band {
  margin: 2rem 0 0;
  padding: 2.25rem;
  background:
    linear-gradient(135deg, rgba(42, 95, 82, 0.12), rgba(168, 137, 92, 0.14)),
    rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: rgba(230, 237, 242, 0.86);
  padding: 3.5rem 0 1.5rem;
}

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

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

.footer-tag {
  color: rgba(230, 237, 242, 0.7);
  font-size: 0.92rem;
}

.footer-col h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 0.85rem;
}

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

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

.footer-col a,
.footer-address a {
  color: rgba(230, 237, 242, 0.86);
  text-decoration: none;
}

.footer-col a:hover,
.footer-address a:hover {
  color: #fff;
}

.footer-address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(230, 237, 242, 0.12);
  font-size: 0.85rem;
  color: rgba(230, 237, 242, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 720px;
  margin-inline: auto;
  background: rgba(21, 32, 40, 0.96);
  color: var(--mist);
  border: 1px solid rgba(168, 137, 92, 0.35);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.45s ease both;
}

.cookie-banner-inner {
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(230, 237, 242, 0.9);
}

.cookie-banner a {
  color: var(--brass-soft);
}

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

.cookie-banner .btn-ghost {
  background: transparent;
  border-color: rgba(230, 237, 242, 0.25);
  color: var(--mist);
}

.cookie-banner .btn-primary {
  background: var(--brass);
  color: var(--ink);
}

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

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

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

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

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

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

@media (max-width: 920px) {
  .split,
  .split-reverse,
  .contact-grid,
  .story,
  .footer-grid,
  .blog-grid,
  .team-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 247, 250, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.35rem;
  }

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

  .header-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-row img {
    height: 160px;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
