:root {
  --ink: #142028;
  --ink-soft: #3a4a56;
  --paper: #eef2f5;
  --paper-deep: #dfe7ee;
  --teal: #0e3d3a;
  --teal-mid: #1a5c57;
  --amber: #c4a35a;
  --coral: #e08a5d;
  --white: #ffffff;
  --line: rgba(20, 32, 40, 0.12);
  --shadow: 0 18px 50px rgba(14, 61, 58, 0.12);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Outfit", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
}

*, *::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 600px at 10% -10%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(14, 61, 58, 0.14), transparent 50%),
    linear-gradient(180deg, #f4f7f9 0%, var(--paper) 40%, #e8eef3 100%);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-mid); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--coral); }
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 { padding-left: 1.2rem; }
.shell { width: var(--shell); margin-inline: auto; }

.inline-error {
  background: #fde8e4;
  color: #7a2e1f;
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(238, 242, 245, 0.88);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 1.65rem;
  height: 1.65rem;
  border: 2px solid var(--teal);
  border-radius: 50% 50% 50% 8%;
  background: linear-gradient(145deg, var(--amber), transparent 60%);
  transform: rotate(-12deg);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}
.site-nav a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--teal-mid); color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 560;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  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(--teal);
  color: var(--white);
}
.btn--primary:hover { background: var(--teal-mid); color: var(--white); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--amber {
  background: var(--amber);
  color: var(--ink);
}
.btn--amber:hover { background: #d4b46a; color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.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__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 61, 58, 0.88) 0%, rgba(20, 32, 40, 0.55) 48%, rgba(20, 32, 40, 0.25) 100%),
    linear-gradient(0deg, rgba(14, 61, 58, 0.75) 0%, transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
  max-width: 38rem;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
  animation: riseIn 0.9s ease both;
}
.hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  animation: riseIn 0.9s ease 0.12s both;
}
.hero__lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  animation: riseIn 0.9s ease 0.22s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.9s ease 0.32s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--teal {
  background: linear-gradient(160deg, var(--teal) 0%, #164a46 100%);
  color: var(--white);
}
.section--teal a { color: var(--amber); }
.section--soft {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}
.section__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.section--teal .section__eyebrow { color: var(--amber); }
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.45rem); max-width: 18ch; }
.section__lead { max-width: 42rem; color: var(--ink-soft); }
.section--teal .section__lead { color: rgba(255, 255, 255, 0.85); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.offer-row {
  display: grid;
  gap: 1.75rem;
}
.offer-item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.offer-item:nth-child(even) { direction: rtl; }
.offer-item:nth-child(even) > * { direction: ltr; }
.offer-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.92);
}
.offer-item h3 { font-size: 1.35rem; }
@media (max-width: 760px) {
  .offer-item, .offer-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .offer-item img { height: 200px; }
}

.quote-block {
  font-size: 1.25rem;
  font-style: italic;
  max-width: 36rem;
  border-left: 3px solid var(--amber);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.quote-meta {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-style: normal;
  color: var(--ink-soft);
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  font-family: var(--font-ui);
}
.stat-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal);
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 16ch; }
.page-hero p { max-width: 40rem; color: var(--ink-soft); }
.page-hero--media {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero--media .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero--media .page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 61, 58, 0.9), rgba(20, 32, 40, 0.45));
}
.page-hero--media .shell {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
}
.page-hero--media p { color: rgba(255, 255, 255, 0.88); }

/* Content */
.prose { max-width: 42rem; }
.prose h2 { margin-top: 2rem; font-size: 1.45rem; }
.prose h3 { margin-top: 1.5rem; font-size: 1.15rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 1.25rem 0;
}
.prose th, .prose td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.prose th { background: rgba(14, 61, 58, 0.08); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  margin: 1.5rem 0;
}
.price-table th, .price-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.price-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.review {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.review__text { font-size: 1.08rem; }
.review__author {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.blog-list { display: grid; gap: 1.75rem; }
.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.blog-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
}
.blog-item h2 {
  font-size: 1.25rem;
  color: var(--ink);
}
.blog-item p { color: var(--ink-soft); margin: 0; }
.blog-meta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--coral);
  margin-bottom: 0.35rem;
}
@media (max-width: 640px) {
  .blog-item { grid-template-columns: 1fr; }
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0 2rem;
}

/* Forms */
.form-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--teal-mid);
  outline-offset: 1px;
}
.field-error {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: #9b2c16;
}
.form-status {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}
.form-status--success { color: var(--teal); }
.form-status--error { color: #9b2c16; }
[aria-invalid="true"] { border-color: #c45c3a !important; }

.contact-aside {
  font-family: var(--font-ui);
  font-size: 0.95rem;
}
.contact-aside h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.82rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  animation: riseIn 0.45s ease both;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-banner p { margin: 0; color: var(--ink-soft); }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Misc */
.pill-note {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--teal);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.15rem;
  margin-bottom: 1rem;
}
.timeline { list-style: none; padding: 0; margin: 1.5rem 0; }
.timeline li {
  position: relative;
  padding: 0 0 1.5rem 1.5rem;
  border-left: 2px solid var(--amber);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}
.timeline strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; max-width: 320px; }
}
.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}
.not-found h1 { font-size: clamp(3rem, 10vw, 6rem); color: var(--teal); }
.split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.briefing-slot {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.briefing-slot time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
}
@media (max-width: 520px) {
  .briefing-slot { grid-template-columns: 1fr; }
}
