@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/dm-sans.woff2") format("woff2");
}

@font-face {
  font-family: "Italiana";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/italiana.woff2") format("woff2");
}

:root {
  --ink: #17362f;
  --ink-deep: #102b25;
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --coral: #ef6a50;
  --coral-dark: #d9543d;
  --brand-blue: #0b3f79;
  --sage: #a9b7a1;
  --line: rgba(23, 54, 47, 0.18);
  --white: #fff;
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4.5vw, 5.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.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: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--white);
  transform: translateY(-200%);
}

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

.section {
  padding: clamp(5.5rem, 11vw, 10rem) var(--page-pad);
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  margin: 0 0.8rem 0.25rem 0;
  background: currentColor;
  content: "";
}

.light {
  color: rgba(255, 255, 255, 0.86);
}

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

h1,
h2,
h3 {
  line-height: 1;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 6.3vw, 6.6rem);
}

em {
  color: var(--coral);
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-coral {
  color: var(--white);
  background: var(--coral);
}

.button-coral:hover {
  background: var(--coral-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--coral);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--page-pad);
  color: var(--white);
  background: transparent;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, padding 200ms ease;
}

.site-header.is-fixed {
  position: fixed;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  color: var(--ink);
  background: rgba(251, 248, 242, 0.95);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 180ms ease;
}

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

.brand-logo {
  width: clamp(9.5rem, 15vw, 12rem);
  height: auto;
  transition: filter 200ms ease, width 200ms ease;
}

.site-header:not(.is-fixed) .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header.is-fixed .brand {
  padding: 0;
}

.site-header.is-fixed .brand-logo {
  width: clamp(8.5rem, 12vw, 10rem);
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--brand-blue);
}

.site-header:not(.is-fixed) .site-nav > a:not(.button) {
  color: var(--white);
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.8rem;
  border: 0;
  background: none;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 0.4rem 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: max(700px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-scale 1.8s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 28, 23, 0.35), transparent 23%),
    linear-gradient(90deg, rgba(7, 28, 23, 0.78) 0%, rgba(7, 28, 23, 0.36) 48%, rgba(7, 28, 23, 0.08) 75%),
    linear-gradient(0deg, rgba(7, 28, 23, 0.45), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(72rem, 82vw);
  min-height: max(700px, 100svh);
  padding: 8rem var(--page-pad) 7rem;
  animation: hero-rise 900ms 150ms ease both;
}

.hero h1 {
  max-width: 64rem;
  margin-bottom: 2rem;
  font-size: clamp(4.2rem, 9vw, 9.5rem);
}

.hero h1 em {
  color: var(--white);
}

.hero-intro {
  max-width: 35rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  font-size: 1rem;
  animation: scroll-bounce 1.7s infinite;
}

.intro {
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 3rem;
  background: var(--paper);
}

.intro-copy {
  max-width: 64rem;
}

.intro-copy h2 {
  max-width: 60rem;
}

.intro-copy > p {
  max-width: 40rem;
  margin: 0 0 2.3rem auto;
  color: rgba(23, 54, 47, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.intro-copy .text-link {
  margin-left: calc(100% - min(100%, 40rem));
}

.destinations {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 0.75fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.section-heading h2 {
  max-width: 65rem;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 24rem;
  margin-bottom: 0.5rem;
  color: rgba(23, 54, 47, 0.72);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 27vw));
  gap: 1rem;
}

.destination-card {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.destination-card-tall {
  grid-row: span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.destination-card:hover img {
  transform: scale(1.045);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 28, 23, 0.72), transparent 62%);
}

.destination-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.destination-copy > span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.destination-copy > div {
  text-align: right;
}

.destination-copy p {
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
}

.destinations-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.destinations-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--white);
  background: var(--ink);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.process-intro h2 {
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.process-intro > p:last-child {
  max-width: 29rem;
  color: rgba(255, 255, 255, 0.65);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 2rem 5rem 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.step-number {
  color: var(--coral);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.step-icon svg {
  width: 3.6rem;
  fill: none;
  stroke: var(--sage);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.process-list h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
}

.process-list p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  background: var(--paper);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  right: -3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  padding: 1.4rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.about-stamp span {
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stamp strong {
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 0.95;
}

.about-copy > p:not(.eyebrow) {
  max-width: 37rem;
  color: rgba(23, 54, 47, 0.74);
  font-size: 1.03rem;
}

.trust-points {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.trust-points > div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.trust-points > div > span {
  color: var(--coral);
  font-size: 1.2rem;
}

.trust-points p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.trust-points strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
  background: #dce3d7;
}

.stories-heading h2 {
  font-size: clamp(3.4rem, 5.6vw, 5.8rem);
}

.quote-wrap {
  position: relative;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper);
}

.quote-mark {
  position: absolute;
  top: -1rem;
  left: 2rem;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.quote-slider {
  position: relative;
  min-height: 18rem;
}

.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  opacity: 0;
  transform: translateX(1.5rem);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}

.quote-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-slide > p {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.25;
}

.quote-slide footer {
  display: flex;
  flex-direction: column;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-slide footer span {
  color: rgba(23, 54, 47, 0.55);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.slider-controls button {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.slider-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

.slider-controls span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.planner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--white);
  background: var(--ink-deep);
}

.planner-copy {
  align-self: center;
}

.planner-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6.3rem);
}

.planner-copy > p:not(.eyebrow) {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.65);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.instagram-link > span:first-child {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.2rem;
}

.enquiry-form {
  padding: clamp(1.7rem, 4vw, 3.5rem);
  color: var(--ink);
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.enquiry-form label {
  display: block;
  margin-bottom: 1.5rem;
}

.enquiry-form label > span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 180ms ease;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--coral);
}

.enquiry-form ::placeholder {
  color: rgba(23, 54, 47, 0.42);
}

.form-submit {
  width: 100%;
  margin-top: 0.7rem;
  gap: 1rem;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 1rem 0 0;
  color: rgba(23, 54, 47, 0.5);
  font-size: 0.68rem;
  text-align: center;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 1.4rem var(--page-pad);
  color: var(--white);
  background: var(--coral);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-strip p {
  margin: 0;
}

.contact-strip a {
  font-weight: 600;
}

.contact-strip a:hover {
  text-decoration: underline;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 3rem;
  padding: 5rem var(--page-pad) 2rem;
  color: var(--white);
  background: #0b211c;
}

.footer-brand {
  align-self: start;
  justify-self: start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.footer-brand:hover {
  box-shadow: none;
}

.footer-address span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-address p {
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.footer-address a:hover {
  color: var(--coral);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  align-content: start;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 15;
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0.8rem 2rem rgba(7, 28, 23, 0.25);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
}

@keyframes hero-scale {
  from {
    transform: scale(1.06);
  }
}

@keyframes scroll-bounce {
  50% {
    transform: translateY(0.35rem);
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    visibility: hidden;
  }

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

  .site-nav .button {
    font-family: var(--sans);
    font-size: 0.75rem;
  }

  .site-header:not(.is-fixed) .site-nav.is-open > a:not(.button) {
    color: var(--brand-blue);
  }

  .site-header:has(.site-nav.is-open) {
    color: var(--ink);
  }

  .hero-content {
    width: 90vw;
  }

  .section-heading,
  .process,
  .testimonials,
  .planner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.2rem;
  }

  .process-intro {
    position: static;
  }

  .about {
    gap: 4rem;
  }

  .testimonials {
    gap: 2rem;
  }

  .stories-heading h2 {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .brand-logo {
    width: 9rem;
  }

  .site-header.is-fixed .brand-logo {
    width: 8rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 28, 23, 0.42), transparent 24%),
      linear-gradient(90deg, rgba(7, 28, 23, 0.75), rgba(7, 28, 23, 0.18)),
      linear-gradient(0deg, rgba(7, 28, 23, 0.68), transparent 58%);
  }

  .hero-content {
    justify-content: flex-end;
    width: 100%;
    min-height: 760px;
    padding: 8rem var(--page-pad) 8rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 19vw, 5.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .scroll-cue {
    left: auto;
    right: var(--page-pad);
    align-items: flex-end;
    transform: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .intro-copy > p,
  .intro-copy .text-link {
    margin-left: 0;
  }

  .destination-grid {
    display: flex;
    gap: 0.75rem;
    margin-right: calc(var(--page-pad) * -1);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .destination-grid::-webkit-scrollbar {
    display: none;
  }

  .destination-card,
  .destination-card-tall,
  .destination-card-wide {
    flex: 0 0 82vw;
    min-height: 30rem;
    scroll-snap-align: start;
  }

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

  .process-list li {
    grid-template-columns: 1.5rem 3.4rem 1fr;
  }

  .step-icon svg {
    width: 3rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-stamp {
    right: 1rem;
    bottom: -3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .contact-strip > span {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }
}

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

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

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