:root {
  --ink: #061719;
  --ink-2: #173f42;
  --deep: #031012;
  --body: #435d5f;
  --muted: #788a88;
  --canvas: #eee3d0;
  --paper: #fff9ed;
  --chalk: #f7efe0;
  --reef: #0d7b83;
  --reef-2: #55c9c2;
  --sun: #eec05c;
  --coral: #c7663f;
  --line: rgba(6, 23, 25, 0.16);
  --line-dark: rgba(255, 249, 237, 0.18);
  --shadow: 0 28px 90px rgba(3, 16, 18, 0.22);
  --radius: 8px;
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--canvas);
  color: var(--ink);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--paper);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: 100%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px max(26px, calc((100% - 1280px) / 2));
  border-bottom: 1px solid rgba(255, 249, 237, 0.14);
  background: linear-gradient(180deg, rgba(3, 16, 18, 0.72), rgba(3, 16, 18, 0.18));
  color: var(--paper);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 249, 237, 0.12);
  background: rgba(3, 16, 18, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 249, 237, 0.64);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: rgba(255, 249, 237, 0.74);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  justify-self: end;
  border: 1px solid rgba(255, 249, 237, 0.52);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
}

.button-primary {
  color: var(--ink);
  background: var(--sun);
}

.hero .button-primary {
  border: 1px solid rgba(255, 249, 237, 0.74);
  background: var(--paper);
  color: var(--ink);
}

.button-glass {
  color: var(--paper);
  border: 1px solid rgba(255, 249, 237, 0.34);
  background: rgba(255, 249, 237, 0.08);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:active,
.nav-cta:active,
.gallery-item:active {
  transform: translateY(1px) scale(0.99);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 249, 237, 0.13);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.72fr);
  align-items: end;
  gap: 70px;
  padding: 124px max(26px, calc((100% - 1280px) / 2)) 46px;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 249, 237, 0.16);
}

.hero-media,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 1100ms ease, transform 5200ms linear;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 16, 18, 0.9) 0%, rgba(3, 16, 18, 0.68) 44%, rgba(3, 16, 18, 0.26) 100%),
    linear-gradient(180deg, rgba(3, 16, 18, 0.08), rgba(3, 16, 18, 0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--reef);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.reasons-section .eyebrow,
.booking-section .eyebrow,
.contact-section .eyebrow {
  color: #b0f6ee;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(255, 249, 237, 0.64);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 249, 237, 0.18);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

h1 {
  max-width: 920px;
  font-size: 158px;
  line-height: 0.88;
}

.title-desktop,
.title-mobile {
  display: block;
}

.title-desktop span,
.title-mobile span {
  display: block;
}

.title-mobile {
  display: none;
}

h2 {
  font-size: 82px;
  line-height: 0.94;
}

h3 {
  line-height: 1.12;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 249, 237, 0.82);
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 249, 237, 0.24);
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.08);
  color: rgba(255, 249, 237, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 590px;
  align-self: center;
}

.stage-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 237, 0.26);
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: var(--shadow);
}

.stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.stage-frame figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(3, 16, 18, 0.72);
  color: rgba(255, 249, 237, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.stage-frame-main {
  right: 0;
  top: 0;
  width: 360px;
  height: 480px;
}

.stage-frame-small {
  left: 0;
  top: 96px;
  width: 230px;
  height: 310px;
}

.hero-stage .route-stack {
  position: absolute;
  left: 54px;
  right: 28px;
  bottom: 0;
}

.route-stack {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(3, 16, 18, 0.7);
  backdrop-filter: blur(18px);
}

.route-stack a {
  display: grid;
  grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255, 249, 237, 0.12);
  color: rgba(255, 249, 237, 0.74);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.route-stack a:last-child {
  border-bottom: 0;
}

.route-stack a:hover,
.route-stack a:focus-visible {
  background: rgba(255, 249, 237, 0.12);
  color: #fff;
  outline: none;
  transform: translateX(4px);
}

.route-stack strong {
  color: #fff;
  font-size: 17px;
}

.route-stack span {
  color: rgba(255, 249, 237, 0.7);
  font-size: 14px;
  line-height: 1.38;
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100% - 1280px) / 2));
  bottom: 18px;
  color: rgba(255, 249, 237, 0.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

section:not(.hero) {
  padding: 112px max(26px, calc((100% - 1280px) / 2));
}

main > section {
  scroll-margin-top: 106px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin-bottom: 42px;
}

.section-heading-split {
  max-width: none;
  grid-template-columns: 0.32fr 1.05fr 0.63fr;
  align-items: end;
  gap: 30px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.66;
}

.atelier-section {
  padding-top: 38px !important;
  background: var(--paper);
}

.proof-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-ledger div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.proof-ledger div:last-child {
  border-right: 0;
}

.proof-ledger strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.proof-ledger span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.atelier-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.atelier-layout .section-heading {
  margin: 0;
}

.atelier-image-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-auto-rows: 190px;
  gap: 10px;
}

.atelier-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.atelier-image-grid img:first-child {
  grid-row: span 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-card {
  min-height: 282px;
  grid-column: span 2;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 237, 0.58);
  transition: background 180ms ease, transform 180ms ease;
}

.trust-card:nth-child(1),
.trust-card:nth-child(4) {
  grid-column: span 3;
}

.trust-card:hover {
  background: #fff;
  transform: translateY(-4px);
}

.trust-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(13, 123, 131, 0.2);
  border-radius: 50%;
  background: #edf8f4;
  color: var(--reef);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3,
.reason-card h3,
.package-card h3 {
  font-size: 23px;
  line-height: 1.16;
}

.trust-card p,
.reason-card p,
.package-card p,
.story-copy p,
.mission-grid p,
.booking-card p,
.contact-shell p,
.site-footer p {
  color: var(--body);
  line-height: 1.66;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 76px;
  align-items: center;
  overflow: hidden;
  background: var(--canvas);
}

.story-kicker {
  position: absolute;
  top: 42px;
  right: max(26px, calc((100% - 1280px) / 2));
  color: rgba(6, 23, 25, 0.07);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 190px;
  line-height: 0.8;
  pointer-events: none;
}

.story-image {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.9);
  color: var(--ink);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.story-copy {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.mission-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 237, 0.54);
}

.mission-grid span {
  color: var(--reef);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reasons-section {
  background: var(--deep);
  color: var(--paper);
}

.reasons-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 249, 237, 0.74);
}

.reasons-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.5fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.reasons-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.reasons-feature div {
  min-height: 420px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 249, 237, 0.06);
}

.reasons-feature span {
  color: var(--sun);
  font-weight: 900;
  text-transform: uppercase;
}

.reasons-feature strong {
  max-width: 420px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.reason-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.reason-card {
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
}

.reason-card span {
  color: var(--sun);
  font-weight: 900;
}

.reason-card h3 {
  margin-top: 54px;
  color: #fff;
}

.reason-card p {
  color: rgba(255, 249, 237, 0.68);
}

.packages-section {
  background: #eadcc5;
}

.package-tabs-shell {
  position: sticky;
  top: 86px;
  z-index: 30;
  display: flex;
  margin-bottom: 28px;
  padding: 10px 0 12px;
  background:
    linear-gradient(180deg, #eadcc5 0%, #eadcc5 78%, rgba(234, 220, 197, 0));
}

.package-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.9);
  backdrop-filter: blur(16px);
}

.tab {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--body);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.tab.is-active {
  background: var(--ink);
  color: #fff;
}

.region-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.82fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.region-intro h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 0.98;
}

.region-intro p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--body);
  line-height: 1.66;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.package-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.package-card:first-child {
  grid-column: span 6;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 123, 131, 0.34);
  box-shadow: var(--shadow);
}

.package-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.package-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 420ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.package-card:first-child .package-media img {
  min-height: 500px;
}

.package-media span {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 249, 237, 0.3);
  border-radius: 999px;
  background: rgba(3, 16, 18, 0.74);
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.package-card:hover .package-media img,
.package-card:focus-within .package-media img {
  transform: scale(1.04);
}

.package-body {
  min-width: 0;
  display: grid;
  align-content: space-between;
  padding: 24px;
}

.package-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-kicker span:first-child {
  color: var(--coral);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.package-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(13, 123, 131, 0.1);
  color: var(--reef);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  max-width: 440px;
  font-size: 30px;
}

.package-body p {
  min-height: 76px;
  margin-bottom: 0;
}

.package-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 9px;
  margin-top: 24px;
}

.package-actions a,
.package-actions button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  background: transparent;
  color: var(--reef);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.package-actions a {
  background: var(--ink);
  color: #fff;
}

.package-actions button {
  border: 1px solid var(--line);
}

.package-actions a:hover,
.package-actions a:focus-visible,
.package-actions button:hover,
.package-actions button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.package-actions a:active,
.package-actions button:active {
  transform: translateY(1px) scale(0.99);
}

.gallery-section {
  background: var(--paper);
}

.gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

.gallery-feature img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-feature p {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--body);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: 142px;
  grid-auto-flow: dense;
  gap: 8px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #e6d7bd;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease, filter 480ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.04);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--reef);
  outline-offset: 3px;
}

.testimonials-section {
  overflow: hidden;
  background: var(--canvas);
}

.testimonial-marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 20px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-padding-inline: 26px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(5, 47, 53, 0.34) transparent;
  scrollbar-width: thin;
  touch-action: pan-y;
}

.testimonial-marquee:focus-visible {
  outline: 3px solid var(--reef);
  outline-offset: 4px;
}

.testimonial-marquee.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.testimonial-marquee::-webkit-scrollbar {
  height: 8px;
}

.testimonial-marquee::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(5, 47, 53, 0.28);
}

.testimonial-shell {
  position: relative;
  display: grid;
}

.testimonial-track {
  display: flex;
  gap: 12px;
  padding: 0 26px;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 410px;
  min-height: 224px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 237, 0.64);
  scroll-snap-align: center;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.66;
}

.testimonial-card strong {
  color: var(--reef);
}

.testimonial-control {
  position: absolute;
  z-index: 2;
  top: calc(50% - 10px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 47, 53, 0.18);
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.92);
  color: var(--deep);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform var(--speed), opacity var(--speed), background var(--speed);
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  background: var(--paper);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-control:focus-visible {
  outline: 3px solid var(--reef);
  outline-offset: 3px;
}

.testimonial-control:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.testimonial-control span {
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-1px);
}

.testimonial-control-prev {
  left: 12px;
}

.testimonial-control-next {
  right: 12px;
}

.booking-section {
  background: var(--deep);
  color: var(--paper);
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.booking-card h2,
.contact-shell h2 {
  color: #fff;
}

.booking-card p,
.booking-card .booking-points,
.contact-shell p {
  color: rgba(255, 249, 237, 0.74);
}

.booking-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.booking-points li {
  position: relative;
  padding-left: 26px;
}

.booking-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.booking-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 249, 237, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(6, 23, 25, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--reef);
  box-shadow: 0 0 0 4px rgba(13, 123, 131, 0.16);
}

.booking-form .button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

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

.form-note {
  margin: 0;
  color: var(--body);
  font-size: 12px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(3, 16, 18, 0.94), rgba(13, 123, 131, 0.72)),
    url("../assets/images/hero-1.jpg") center / cover;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact-grid > * {
  min-height: 148px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 249, 237, 0.06);
  color: #fff;
  text-decoration: none;
}

.contact-grid > a:hover,
.contact-grid > a:focus-visible {
  background: rgba(255, 249, 237, 0.12);
  outline: none;
}

.contact-grid span {
  color: #b0f6ee;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  padding: 58px max(26px, calc((100% - 1280px) / 2)) 32px;
  background: #020b0c;
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 249, 237, 0.64);
}

.site-footer nav,
.footer-services {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a,
.footer-services span {
  color: rgba(255, 249, 237, 0.76);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 249, 237, 0.1);
}

.footer-credit::before {
  content: "·";
  margin-right: 14px;
  color: rgba(255, 249, 237, 0.4);
}

@media (max-width: 560px) {
  .footer-credit::before { display: none; }
}

.copyright {
  margin: 0;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  color: rgba(255, 249, 237, 0.92);
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-actions a {
  display: inline-flex;
  width: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(6, 23, 25, 0.24);
}

.floating-actions a:last-child {
  background: #0a8f5c;
}

.floating-actions a::before {
  content: "";
  width: 23px;
  height: 23px;
  background: center / contain no-repeat;
}

.floating-actions a:first-child::before {
  background-image: url("../assets/images/phone11.png");
}

.floating-actions a:last-child::before {
  background-image: url("../assets/images/whats2.png");
}

.lightbox {
  width: min(1100px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(3, 16, 18, 0.8);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #031012;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

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

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

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--deep);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 8px;
  }

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

  h1 {
    font-size: 110px;
  }

  h2 {
    font-size: 66px;
  }

  .hero-stage {
    min-height: auto;
    width: min(780px, 100%);
  }

  .stage-frame {
    display: none;
  }

  .hero-stage .route-stack {
    position: static;
  }

  .route-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .route-stack a {
    grid-template-columns: 1fr;
    min-height: 74px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(3, 16, 18, 0.58);
  }

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

  .atelier-layout,
  .story-section,
  .reasons-feature,
  .booking-card,
  .contact-shell,
  .site-footer,
  .gallery-feature,
  .region-intro {
    grid-template-columns: 1fr;
  }

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

  .trust-card,
  .trust-card:nth-child(1),
  .trust-card:nth-child(4) {
    grid-column: span 1;
  }

  .package-card,
  .package-card:first-child {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }

  .package-card:first-child .package-media img,
  .package-media img {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 10px 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 74px;
    left: 10px;
    right: 10px;
  }

  .hero {
    min-height: 88svh;
    gap: 16px;
    padding: 104px 18px 26px;
  }

  .hero .eyebrow {
    max-width: 32ch;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero-meta-row {
    display: none;
  }

  h1 {
    font-size: 66px;
    line-height: 0.9;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: block;
  }

  h2 {
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 36ch;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-proof span {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 7px 9px;
    text-align: center;
    font-size: 10px;
    line-height: 1.24;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
  }

  .hero-stage {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  section:not(.hero) {
    padding: 64px 18px;
  }

  .atelier-section {
    padding-top: 34px !important;
  }

  main > section {
    scroll-margin-top: 86px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 26px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .proof-ledger,
  .trust-grid,
  .reason-track,
  .package-grid,
  .mission-grid,
  .contact-grid,
  .form-pair {
    grid-template-columns: 1fr;
  }

  .proof-ledger {
    margin-bottom: 54px;
  }

  .proof-ledger div,
  .proof-ledger div:last-child {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-ledger div:last-child {
    border-bottom: 0;
  }

  .proof-ledger strong {
    font-size: 28px;
  }

  .atelier-layout {
    gap: 30px;
  }

  .atelier-image-grid {
    grid-auto-rows: 132px;
  }

  .trust-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 14px;
    padding: 18px;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
    grid-row: span 2;
    margin: 0;
  }

  .trust-card h3 {
    font-size: 18px;
  }

  .trust-card p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.56;
  }

  .story-kicker {
    display: none;
  }

  .story-section {
    gap: 28px;
  }

  .story-image,
  .story-image img {
    min-height: 340px;
  }

  .reasons-feature img {
    height: 300px;
  }

  .reasons-feature div {
    min-height: 0;
    align-content: start;
    gap: 14px;
    padding: 22px;
  }

  .reasons-feature strong {
    font-size: 32px;
    line-height: 1.05;
  }

  .reason-card {
    min-height: 0;
  }

  .reason-card h3 {
    margin-top: 26px;
  }

  .package-tabs-shell {
    top: 78px;
    margin-bottom: 16px;
    padding: 8px 0 10px;
  }

  .package-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab {
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .region-intro {
    gap: 12px;
    margin-bottom: 18px;
  }

  .region-intro h3 {
    font-size: 38px;
  }

  .region-intro p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.6;
  }

  .package-card:first-child .package-media img,
  .package-media img {
    height: 218px;
  }

  .package-body {
    padding: 18px;
  }

  .package-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .package-meta {
    margin-bottom: 12px;
  }

  .package-meta span {
    min-height: 27px;
    font-size: 10px;
  }

  .package-card h3 {
    font-size: 22px;
  }

  .package-body p {
    min-height: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .package-actions {
    grid-template-columns: 1fr 0.72fr;
    gap: 8px;
    margin-top: 16px;
  }

  .package-actions a,
  .package-actions button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 13px;
  }

  .gallery-feature img {
    height: 300px;
  }

  .gallery-feature p {
    padding: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 8px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonial-card {
    flex-basis: min(340px, calc(100vw - 38px));
  }

  .booking-card {
    gap: 28px;
  }

  .booking-form {
    padding: 16px;
  }

  .floating-actions {
    left: auto;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand span {
    max-width: 102px;
  }

  .nav-cta {
    padding: 0 10px;
  }
}
