:root {
  --ink: #102827;
  --muted: #59706e;
  --paper: #f7faf9;
  --white: #ffffff;
  --mist: #e7f1ef;
  --line: #c9dcda;
  --teal: #087b79;
  --teal-dark: #075653;
  --teal-soft: #cde5e1;
  --graphite: #101918;
  --shadow: 0 24px 80px rgba(16, 40, 39, 0.13);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--mist);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

main {
  overflow: hidden;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 76px 0;
}

.section-dark {
  background: var(--graphite);
  color: var(--white);
}

.section-teal {
  background: var(--teal-dark);
  color: var(--white);
}

.section-mist {
  background: var(--mist);
}

.media-section {
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-teal .eyebrow,
.media-section .eyebrow {
  color: #9bd5ce;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(54px, 8vw, 126px);
}

h1 + p {
  max-width: 730px;
  font-size: clamp(18px, 2vw, 25px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.5vw, 78px);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.2;
}

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

.section-dark p,
.section-teal p,
.media-section p,
.card-media p {
  color: rgba(255, 255, 255, 0.75);
}

.lead {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 24px);
}

.text-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  background: var(--teal-dark);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--teal-soft);
}

.btn-outline {
  border-color: currentColor;
  background: transparent;
  color: var(--teal-dark);
}

.section-dark .btn-outline,
.media-section .btn-outline {
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.grid-2,
.grid-3,
.grid-4,
.bento,
.split,
.stats,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4,
.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.align-end {
  align-items: end;
}

.align-center {
  align-items: center;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-heading > :first-child {
  max-width: 820px;
}

.section-heading > p {
  max-width: 420px;
}

.card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-media {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: #172321;
  color: var(--white);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 21px;
}

.card-dark .icon-box,
.section-teal .icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: #a8ddd6;
}

.image-frame {
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame-sm {
  min-height: 320px;
}

.image-frame-tall {
  min-height: 720px;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  padding: 90px 0 34px;
  background: linear-gradient(135deg, #f9fbfa 0%, #e8f3f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 7.2vw, 4rem);
}

.hero-media {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 220px 220px 28px 28px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  color: var(--white);
}

.hero-badge,
.floating-badge {
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 31, 29, 0.5);
  color: var(--white);
  font-size: 13px;
  backdrop-filter: blur(14px);
}

.hero-media.grid-2,
.hero-media.grid-3 {
  display: grid;
  align-content: end;
}

.hero-media.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-media.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 31, 29, 0.56);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  font-size: 24px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 34px;
  border-block: 1px solid var(--line);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 17px 0;
  animation: marquee 28s linear infinite;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 249, 0.95);
  backdrop-filter: blur(18px);
}

.header-contactbar {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.header-contactbar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-main {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  width: 90px;
  height: 54px;
  object-fit: contain;
  background: transparent;
}

.desktop-nav {
  flex: 1;
}

.desktop-nav ul,
.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 26px);
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--teal);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background: var(--paper);
  transform: translateY(-20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-menu-close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.mobile-nav {
  overflow-y: auto;
}

.mobile-nav li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 14px 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.mobile-contacts {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 86px 0 28px;
  background: var(--graphite);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.1fr;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 110px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 22px;
  background: var(--white);
  border-radius: 14px;
}

.footer-brand p,
.footer-meta,
.footer-contact {
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.footer-title {
  margin-bottom: 20px;
  color: #9bd5ce;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #9bd5ce;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.tabs,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn,
.filter-btn,
.chip {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.tab-btn.is-active,
.filter-btn.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.slider {
  position: relative;
}

.slide {
  display: none;
}

.slide.is-active {
  display: grid;
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.accordion-button i {
  transition: transform 0.25s ease;
}

.accordion-item.is-open .accordion-button i {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body p,
.accordion-body ul {
  max-width: 850px;
  padding-bottom: 22px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline-step {
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal);
  font-weight: 800;
}

.stat {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1;
}

.section-dark .stat,
.section-teal .stat {
  border-color: rgba(255, 255, 255, 0.2);
}

.section-dark .stat strong,
.section-teal .stat strong {
  color: #a8ddd6;
}

.form-shell {
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset + fieldset {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

fieldset legend {
  margin-bottom: 18px;
  color: var(--teal-dark);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.align-start {
  align-items: start;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
fieldset legend {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 123, 121, 0.13);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #a33b3b;
}

.checkbox.is-invalid {
  color: #a33b3b;
}

.field-error {
  min-height: 18px;
  color: #a33b3b;
  font-size: 12px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notification {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--teal-dark);
  font-weight: 800;
}

.notification.is-visible {
  display: flex;
}

.spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.is-loading .spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.range-value {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

input[type="range"] {
  accent-color: var(--teal);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card .price {
  margin: 16px 0 24px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
}

.price-card ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li,
.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
}

.price-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.price-card .btn {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

th {
  color: var(--teal-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(10, 25, 24, 0.74);
  transition:
    opacity 0.25s ease,
    visibility 0.25s;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-dialog {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.event-card .btn {
  margin-top: 16px;
}

.menu-display {
  min-height: 520px;
}

.menu-dish {
  display: none;
}

.menu-dish.is-active {
  display: grid;
}

.porthole {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 28px solid #d7e4e2;
  border-radius: 50%;
  box-shadow:
    var(--shadow),
    inset 0 0 0 2px #8ba9a5;
}

.radar {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(155, 213, 206, 0.4);
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      transparent 0 12%,
      rgba(155, 213, 206, 0.16) 12.5% 13%
    ),
    linear-gradient(rgba(155, 213, 206, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 213, 206, 0.16) 1px, transparent 1px);
  background-size:
    auto,
    25% 25%,
    25% 25%;
}

.radar::after {
  position: absolute;
  inset: 50% 0 0 50%;
  border-left: 2px solid #9bd5ce;
  background: linear-gradient(
    45deg,
    rgba(155, 213, 206, 0.28),
    transparent 60%
  );
  content: "";
  transform-origin: top left;
  animation: sweep 5s linear infinite;
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

.deck-plan {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 40px;
  border: 1px solid rgba(155, 213, 206, 0.38);
  border-radius: 50% 50% 25% 25%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 44px,
      rgba(155, 213, 206, 0.16) 45px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 70px,
      rgba(155, 213, 206, 0.13) 71px
    );
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(520px, calc(100% - 48px));
  display: none;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(247, 250, 249, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.map-frame {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: var(--radius);
}

.quote {
  padding-left: 26px;
  border-left: 2px solid var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-cloud div {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1280px);
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 54px 0;
  }

  .header-contactbar .container {
    min-height: 52px;
    justify-content: flex-start;
    gap: 10px 18px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header-main {
    min-height: 68px;
  }

  .site-logo img {
    width: 78px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero h1,
  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-media {
    min-height: 380px;
    padding: 20px;
    border-radius: 120px 120px 24px 24px;
  }

  .hero-metrics,
  .hero-media.grid-2,
  .hero-media.grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .stats,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .card {
    min-height: auto;
    padding: 25px;
    border-radius: 22px;
  }

  .card-media {
    min-height: 420px;
  }

  .image-frame,
  .image-frame-tall {
    min-height: 380px;
  }

  .image-frame-sm {
    min-height: 250px;
  }

  .media-section {
    min-height: 620px;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

  .timeline::before {
    top: 12px;
    bottom: 12px;
    left: 45px;
    width: 1px;
    height: auto;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .timeline-dot {
    margin-bottom: 0;
  }

  .timeline-step > div:last-child {
    padding-bottom: 18px;
  }

  .tabs,
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .tab-btn,
  .filter-btn,
  .chip {
    flex: 0 0 auto;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .porthole {
    border-width: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.bento-cell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.bento-cell img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.bento-cell:hover img {
  transform: scale(1.06);
}

.bento-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 24, 0) 30%,
    rgba(10, 25, 24, 0.82)
  );
  pointer-events: none;
}

.bento-cell--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-cell--wide {
  grid-column: span 2;
}

.bento-cell--tall {
  grid-row: span 2;
}

.bento-cell__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px;
  color: var(--white);
}

.bento-cell__content .eyebrow {
  color: #9bd5ce;
  margin-bottom: 10px;
}

.bento-cell__content h3 {
  color: var(--white);
  margin: 0 0 6px;
}

.bento-cell__content p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 14px;
}

.bento-cell--text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--teal-dark);
  color: var(--white);
}

.bento-cell--text::after {
  display: none;
}

.bento-cell--text .eyebrow {
  color: #9bd5ce;
}

.bento-cell--text h3 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
}

.bento-cell--text p {
  color: rgba(255, 255, 255, 0.78);
}

.bento-cell--text .icon-box {
  width: 54px;
  height: 54px;
}

.ribbon {
  position: relative;
  width: 112%;
  margin-inline: -6%;
  overflow: hidden;
  padding: 26px 0;
}

.ribbon--left {
  transform: rotate(-3deg);
}

.ribbon--right {
  transform: rotate(3deg);
}

.ribbon-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ribbon-scroll 46s linear infinite;
}

.ribbon--reverse .ribbon-track {
  animation-direction: reverse;
}

.ribbon-item {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ribbon-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 24, 0) 45%,
    rgba(10, 25, 24, 0.55)
  );
}

.ribbon-item__tag {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ribbon-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .bento-cell--lg {
    grid-column: span 2;
  }

  .bento-cell--wide {
    grid-column: span 2;
  }

  .bento-cell--tall {
    grid-row: span 1;
  }

  .ribbon-item {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 760px) {
  .bento-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .bento-cell--lg,
  .bento-cell--wide,
  .bento-cell--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-cell--lg {
    grid-row: span 2;
  }

  .ribbon {
    width: 118%;
    margin-inline: -9%;
    padding: 18px 0;
  }

  .ribbon--left {
    transform: rotate(-4deg);
  }

  .ribbon--right {
    transform: rotate(4deg);
  }

  .ribbon-item {
    width: 240px;
    height: 170px;
  }
}
