:root {
  --bg: #f2eee7;
  --bg-soft: #e7e0d6;
  --sand: #d8c9b7;
  --card: rgba(255, 255, 255, 0.68);
  --card-strong: rgba(255, 255, 255, 0.82);
  --line: rgba(18, 63, 67, 0.18);
  --petrol: #123f43;
  --petrol-soft: #1d5c61;
  --aubergine: #4c2e3a;
  --ink: #112a2d;
  --ink-soft: rgba(17, 42, 45, 0.72);
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(18, 63, 67, 0.12);
  --shadow-strong: 0 40px 90px rgba(18, 63, 67, 0.2);
  --radius-xs: 14px;
  --radius-s: 20px;
  --radius-m: 28px;
  --radius-l: 40px;
  --radius-xl: 56px;
  --container: min(1240px, calc(100vw - 2.6rem));
  --header-height: 82px;
  --transition: 340ms cubic-bezier(.2, .7, .1, 1);
  --transition-slow: 900ms cubic-bezier(.2, .7, .1, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(76, 46, 58, 0.08), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(18, 63, 67, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f4ef 0%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 67, 0.16);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 63, 67, 0.48);
  box-shadow: 0 0 0 4px rgba(18, 63, 67, 0.1);
}

input[type="date"],
select {
  min-height: 3.3rem;
  height: 3.3rem;
}

select {
  line-height: 1.25;
}

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

::selection {
  background: rgba(18, 63, 67, 0.16);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--petrol);
  color: var(--white);
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 8rem) 0;
}

.section-tight {
  padding: clamp(2.4rem, 4vw, 3.8rem) 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(18, 63, 67, 0.72);
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(76, 46, 58, 0.72);
}

.section-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2,
.booking-copy h2,
.editorial-copy h2,
.split-banner h2,
.pricing-panel h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5.6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

p {
  margin: 0 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-soft) 100%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 20px 50px rgba(18, 63, 67, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(18, 63, 67, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--petrol);
  border-color: rgba(18, 63, 67, 0.12);
  box-shadow: none;
}

.button-large {
  width: 100%;
  min-height: 3.8rem;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.site-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(18, 63, 67, 0.65) 0.5px, transparent 0.6px),
    radial-gradient(circle at 80% 30%, rgba(76, 46, 58, 0.7) 0.5px, transparent 0.7px),
    radial-gradient(circle at 50% 70%, rgba(18, 63, 67, 0.55) 0.6px, transparent 0.8px);
  background-size: 14px 14px, 18px 18px, 22px 22px;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 26rem;
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(18, 63, 67, 0.1), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
  transition: opacity var(--transition), transform 120ms linear;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 0.8rem;
}

.header-bar {
  position: fixed;
  top: 1em;
  left: calc(50% - var(--container) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(18, 63, 67, 0.08);
  width: var(--container);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 10rem;
}

.brand-icon {
  display: block;
  height: 48px;
  width: auto;
  margin-right: 12px;
  flex-shrink: 0;
}

.brand-wordmark {
  width: min(13rem, 42vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(18, 63, 67, 0.08);
  color: var(--petrol);
}

.site-nav .nav-cta {
  color: var(--white);
  padding-inline: 1.2rem;
  background: rgba(18, 63, 67, 0.2);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 67, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  border-radius: 999px;
  background: var(--petrol);
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.menu-toggle span:nth-child(1) { top: 0.95rem; }
.menu-toggle span:nth-child(2) { top: 1.45rem; }
.menu-toggle span:nth-child(3) { top: 1.95rem; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 1.45rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 1.45rem;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 5rem) 0 2.2rem;
  overflow: clip;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -4;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  min-width: 100vw;
  transform: translateX(-50%);
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.25s ease;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  margin: 0;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  min-width: 100vw;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 15s ease-in-out infinite alternate;
}

.hero-slide:nth-child(2) img { object-position: center 58%; }
.hero-slide:nth-child(3) img { object-position: center 46%; }
.hero-slide:nth-child(4) img { object-position: center 54%; }

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.09); }
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(9, 20, 21, 0.36) 0%, rgba(9, 20, 21, 0.56) 58%, rgba(9, 20, 21, 0.8) 100%),
    linear-gradient(120deg, rgba(76, 46, 58, 0.28), rgba(18, 63, 67, 0.22));
}

.hero-brandmark {
  position: absolute;
  right: -7vw;
  top: 8rem;
  width: min(42rem, 44vw);
  opacity: 0.1;
  mix-blend-mode: screen;
  filter: brightness(3);
  z-index: -2;
  animation: floatMark 10s ease-in-out infinite alternate;
}

@keyframes floatMark {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-2rem, 2rem, 0) rotate(-2deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: end;
}

.hero-copy {
  max-width: 48rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: rgba(255, 255, 255, 0.74);
}

.hero-lead {
  max-width: 38rem;
  margin: 1.3rem 0 0;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-note,
.hero-metrics {
  padding: 1.4rem;
  border-radius: var(--radius-m);
}

.hero-note-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--petrol);
}

.hero-note p,
.hero-metrics strong,
.hero-metrics span {
  color: var(--petrol);
}

.hero-metrics {
  display: grid;
  gap: 1rem;
}

.hero-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.booking-launch {
  margin-top: 2.2rem;
}

.booking-launch-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: calc(var(--radius-l) - 6px);
}

.booking-launch input,
.booking-launch select,
.booking-launch textarea {
  color: var(--petrol);
}

.booking-launch input::placeholder,
.booking-launch textarea::placeholder,
.booking-launch select::placeholder {
  color: rgba(18, 63, 67, 0.6);
}

.booking-launch-field {
  padding: 0.2rem 0.2rem 0;
}

.booking-launch-field label,
.form-field label,
.checkbox-field span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.84rem;
  color: rgba(17, 42, 45, 0.84);
  font-weight: 700;
}

.booking-launch-button {
  min-width: 13.5rem;
  align-self: end;
}

.scroll-hint {
  align-self: center;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

.scroll-hint span {
  position: relative;
  width: 1.55rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.55rem;
  width: 0.34rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.scroll-hint em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 0.9rem); }
}

.marquee-band {
  overflow: clip;
  border-block: 1px solid rgba(18, 63, 67, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 28s linear infinite;
  color: var(--petrol);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.84rem;
  font-weight: 800;
}

.marquee-track span {
  position: relative;
  padding-left: 1.6rem;
}

.marquee-track span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--aubergine);
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: 0.3fr 0.85fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.editorial-copy p {
  max-width: 34rem;
  color: var(--ink-soft);
}

.editorial-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  min-height: 34rem;
}

.collage-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-strong);
  background: #d6d0c8;
}

.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-image.large {
  grid-row: 1 / span 2;
  min-height: 34rem;
}

.collage-image.small {
  min-height: 13rem;
}

.collage-image.tall {
  min-height: 19rem;
}

.collage-image figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--petrol);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow var(--transition);
}

.split-banner-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.3rem);
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(18, 63, 67, 0.96), rgba(76, 46, 58, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.split-banner p:last-child {
  align-self: end;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.gallery-shell {
  position: relative;
  width: min(1420px, calc(100vw - 1rem));
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 34vw);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.5rem 1rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 63, 67, 0.08);
  border-radius: calc(var(--radius-l) + 4px);
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow);
  min-height: 34rem;
}

.gallery-card.is-featured {
  grid-column: span 1;
  min-width: min(52vw, 44rem);
}

.gallery-card figure {
  margin: 0;
  min-height: 25rem;
  height: 72%;
}

.gallery-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-copy {
  padding: 1.25rem;
}

.gallery-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(18, 63, 67, 0.08);
  color: var(--petrol);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.gallery-card h3,
.feature-card h3,
.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.gallery-card p,
.feature-card p,
.contact-card ul,
.contact-card address {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-nav {
  position: absolute;
  top: calc(50% - 2rem);
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 67, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--petrol);
  box-shadow: var(--shadow);
}

.gallery-prev { left: 0.8rem; }
.gallery-next { right: 0.8rem; }

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-progress {
  position: relative;
  flex: 1;
  height: 3px;
  background: rgba(18, 63, 67, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.gallery-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--aubergine), var(--petrol));
  transition: width 180ms linear, transform 180ms linear;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.4rem;
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(18, 63, 67, 0.08);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-flex;
  width: 2.1rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(76, 46, 58, 0.08);
  color: var(--aubergine);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18, 63, 67, 0.08);
  background:
    radial-gradient(circle at top right, rgba(18, 63, 67, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.75));
  box-shadow: var(--shadow);
}

.pricing-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 1.4rem);
}

.booking-copy p {
  max-width: 28rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.booking-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.booking-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

.booking-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--aubergine);
}

.booking-form {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) - 10px);
}

.booking-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 63, 67, 0.08);
}

.booking-details {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.form-field.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 1rem 0 1.1rem;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  padding: 0;
}

.checkbox-field a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.form-note {
  margin: 0.8rem 0 0;
  color: rgba(17, 42, 45, 0.68);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border-radius: var(--radius-m);
  border: 1px solid rgba(18, 63, 67, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 3.5rem 1.2rem 1.2rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 1rem;
  font-size: 1.35rem;
  color: var(--petrol);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details div {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: start;
}

.contact-copy p {
  max-width: 32rem;
  color: var(--ink-soft);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.3rem;
  border-radius: var(--radius-m);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.contact-card a {
  text-decoration: underline;
  text-decoration-color: rgba(18, 63, 67, 0.2);
  text-underline-offset: 0.14em;
}

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

.site-footer {
  padding: 1.4rem 0 2.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 63, 67, 0.12);
}

.footer-wordmark {
  width: min(14rem, 48vw);
  margin-bottom: 0.6rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.footer-links a {
  color: var(--petrol);
  text-decoration: underline;
  text-decoration-color: rgba(18, 63, 67, 0.2);
  text-underline-offset: 0.16em;
}

.noscript-banner,
.toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2000;
  width: min(32rem, calc(100vw - 2rem));
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(18, 63, 67, 0.94);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.toast {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.from-left {
  transform: translate3d(-34px, 0, 0);
}

.reveal.from-right {
  transform: translate3d(34px, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal h2 {
  margin-bottom: 2rem;
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 140ms; }
.delay-3 { transition-delay: 210ms; }

@media (max-width: 1080px) {
  .hero-inner,
  .booking-grid,
  .contact-layout,
  .split-banner-inner,
  .pricing-panel,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    gap: 1.4rem;
  }

  .editorial-collage {
    min-height: auto;
  }

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

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

  .gallery-card.is-featured {
    min-width: min(66vw, 38rem);
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    padding-top: 0;
  }

  .header-bar {
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 0 0 28px 28px;
    width: 100vw;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 1rem) 1rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem;
    border-radius: 28px;
    background: rgba(247, 244, 239, 0.98);
    border: 1px solid rgba(18, 63, 67, 0.08);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .site-nav .nav-cta {
    background: var(--petrol);
    color: var(--white);
    border-radius: 999px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 4.5rem);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

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

  .booking-launch-inner,
  .booking-rail,
  .form-field.two-up,
  .contact-cards,
  .feature-grid,
  .pricing-panel,
  .gallery-meta {
    grid-template-columns: 1fr;
  }

  .pricing-actions {
    width: 100%;
  }

  .pricing-actions .button {
    flex: 1;
  }

  .gallery {
    grid-auto-columns: 82vw;
  }

  .gallery-card,
  .gallery-card.is-featured {
    min-width: auto;
    min-height: 30rem;
  }

  .gallery-nav {
    display: none;
  }

  .contact-cards {
    display: grid;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(1240px, calc(100vw - 1rem));
    --header-height: 72px;
  }

  .header-bar {
    padding: 0.65rem 0.8rem;
  }

  .brand-wordmark {
    width: min(11rem, 44vw);
  }

  .hero-copy h1 {
    letter-spacing: -0.07em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .booking-launch-button {
    width: 100%;
  }

  .hero-brandmark {
    width: 72vw;
    right: -12vw;
    top: 10rem;
  }

  .booking-launch-inner {
    padding: 0.85rem;
    border-radius: 26px;
  }

  .editorial-collage {
    grid-template-columns: 1fr;
  }

  .collage-image.large,
  .collage-image.small,
  .collage-image.tall {
    min-height: 18rem;
  }

  .gallery {
    grid-auto-columns: 88vw;
  }

  .gallery-card figure {
    min-height: 20rem;
  }

  .booking-form {
    padding: 1.8rem;
  }

  .contact-card,
  .feature-card,
  .hero-note,
  .hero-metrics {
    padding: 1.15rem;
  }

  .split-banner-inner {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow,
  .site-grain {
    display: none;
  }
}
