:root {
  --ink: #1a222c;
  --ink-soft: #3e4a57;
  --muted: #6b7785;
  --paper: #f3f6f8;
  --surface: #ffffff;
  --line: #d5dde6;
  --accent: #1f7a6e;
  --accent-deep: #14574e;
  --heat: #c9783a;
  --heat-soft: #f3e2d0;
  --shadow: 0 18px 40px rgba(26, 34, 44, 0.08);
  --radius: 4px;
  --radius-lg: 18px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-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 600px at 10% -10%, rgba(31, 122, 110, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 120, 58, 0.1), transparent 50%),
    linear-gradient(180deg, #eef3f6 0%, var(--paper) 28%, #ebeff3 100%);
  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(--heat);
}

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

p {
  margin: 0 0 1rem;
}

.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;
  transition: top 0.2s var(--ease);
}

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

.inline-error {
  margin: 0;
  padding: 0.85rem 1.25rem;
  background: #fde8e4;
  color: #7a2e22;
  border-bottom: 1px solid #efc2b8;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 246, 248, 0.86);
  border-bottom: 1px solid rgba(213, 221, 230, 0.9);
}

.header-inner {
  width: min(100% - 2.5rem, 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);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  max-width: min(100%, 18rem);
}

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 55%, var(--heat) 120%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.brand-text {
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  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);
  transition: transform 0.25s var(--ease);
}

.nav-toggle-bar {
  top: 50%;
  margin-top: -1px;
}

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

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

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

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 560;
  padding: 0.35rem 0;
}

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

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 0.95rem !important;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  text-decoration: none !important;
}

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

.site-footer {
  margin-top: 5rem;
  background: var(--ink);
  color: #d7dee6;
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.footer-brand {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

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

.footer-tag {
  color: #a8b3bf;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8ea0b0;
  margin-bottom: 1rem;
}

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

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

.footer-links a,
.footer-address + p a,
.site-footer a {
  color: #e8eef4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--heat-soft);
}

.footer-address {
  font-style: normal;
  margin-bottom: 0.85rem;
  color: #c2ccd6;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: #8ea0b0;
  margin: 0;
}

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

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

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

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

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

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

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

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #fff;
  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-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 24, 32, 0.88) 8%, rgba(16, 24, 32, 0.55) 48%, rgba(16, 24, 32, 0.35) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.65), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.85rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: #e8eef4;
  max-width: 28rem;
  margin-bottom: 1rem;
  animation: riseIn 0.9s var(--ease) 0.12s both;
}

.hero-lead {
  color: #c7d2dc;
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
  animation: riseIn 0.9s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.9s var(--ease) 0.32s both;
}

.section {
  padding: 4.5rem 0;
}

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

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

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.lead {
  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 img,
.media-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  min-height: 18rem;
  box-shadow: var(--shadow);
}

.offer-grid,
.card-grid,
.post-grid,
.rate-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

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

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

.offer-item,
.story-block,
.rate-block,
.post-card,
.detail-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(213, 221, 230, 0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 34, 44, 0.04);
}

.offer-item img,
.post-card img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
}

.offer-body,
.post-body,
.story-block,
.rate-block,
.detail-panel {
  padding: 1.35rem 1.4rem 1.5rem;
}

.offer-item h3,
.post-card h3,
.rate-block h3 {
  font-size: 1.2rem;
}

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

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

.quote {
  padding: 1.5rem 1.6rem;
  border-left: 3px solid var(--heat);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

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

.quote footer {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.prose {
  max-width: 44rem;
}

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

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

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

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

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

th {
  background: #e8eef2;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

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

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(31, 122, 110, 0.35);
  border-color: var(--accent);
}

.field-error {
  margin: 0.25rem 0 0;
  color: #9b341f;
  font-size: 0.88rem;
  font-weight: 500;
}

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

.form-status--success {
  background: #e5f5f1;
  color: #14574e;
}

.form-status--error {
  background: #fde8e4;
  color: #7a2e22;
}

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

.info-panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

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

.schedule-item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.schedule-date {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-deep);
}

.pill {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--heat-soft);
  color: #7a4a1f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
}

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

.cta-band {
  margin: 1rem 0 0;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(125deg, rgba(20, 87, 78, 0.95), rgba(26, 34, 44, 0.95)),
    var(--ink);
  color: #e8eef4;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: #c2ccd6;
  max-width: 36rem;
}

.cta-band .btn-primary {
  background: var(--heat);
}

.cta-band .btn-primary:hover {
  background: #b4642b;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 40rem;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  animation: riseIn 0.55s var(--ease) both;
}

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

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

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

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.narrow {
  max-width: 48rem;
}

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

.team-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card div {
  padding: 1.1rem 1.2rem 1.35rem;
}

.muted-box {
  padding: 1rem 1.15rem;
  background: rgba(31, 122, 110, 0.08);
  border-radius: var(--radius);
  color: var(--ink-soft);
}

@keyframes riseIn {
  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.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 960px) {
  .offer-grid,
  .post-grid,
  .footer-cols,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

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

  .offer-grid,
  .post-grid,
  .card-grid,
  .footer-cols,
  .team-grid,
  .rate-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 4rem;
    margin-left: auto;
  }

  .page-hero h1 {
    max-width: none;
  }
}
