@font-face {
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/league-spartan.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --ink: #090a09;
  --ink-raised: #111310;
  --ink-soft: #171a16;
  --paper: #f3f2ec;
  --paper-deep: #e9e8e0;
  --text: #f4f5ef;
  --text-dark: #151713;
  --muted: #a9ada3;
  --muted-dark: #62675e;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(10, 12, 10, .13);
  --accent: #c9f456;
  --accent-soft: rgba(201, 244, 86, .14);
  --content: 1280px;
  --reading: 760px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 92% 4%, rgba(201, 244, 86, .065), transparent 28rem), var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--accent); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 16px;
  width: min(calc(100% - 32px), 1360px);
  min-height: 72px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(9, 10, 9, .78);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.site-logo { width: clamp(188px, 21vw, 272px); flex: 0 1 auto; }
.site-logo img { width: 100%; height: auto; filter: invert(1); }

.primary-nav { display: flex; align-items: center; gap: 4px; }

.primary-nav a {
  position: relative;
  padding: 10px 17px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .68);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .105em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background-color .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: #fff; background: rgba(255, 255, 255, .07); }
.primary-nav a[aria-current="page"] { background: var(--accent); color: var(--ink); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Home */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 104px);
  overflow: hidden;
}

.home-hero__background {
  position: absolute;
  z-index: -2;
  inset: -8%;
  background: url("/assets/images/home/hero-portrait.webp") 68% 38% / cover no-repeat;
  filter: blur(48px) saturate(.55) brightness(.33);
  opacity: .76;
  transform: scale(1.08);
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 10, 9, .97) 0%, rgba(9, 10, 9, .76) 46%, rgba(9, 10, 9, .2) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 24%);
}

.home-hero__content {
  width: min(calc(100% - 64px), 1360px);
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  padding: 64px 0 112px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.home-hero__copy { position: relative; z-index: 2; }

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(76px, 8.5vw, 142px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .83;
  text-wrap: balance;
}

.home-hero p {
  max-width: 560px;
  margin: 46px 0 0 6px;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.home-hero__portrait-wrap { position: relative; justify-self: end; width: 100%; }

.home-hero__portrait-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  opacity: .78;
}

.home-hero__portrait {
  width: 100%;
  aspect-ratio: 1.16;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 64% center;
  box-shadow: var(--shadow);
}

.profile-list { position: relative; padding: 32px 32px 132px; background: var(--ink); }

.profile-row {
  width: min(100%, var(--content));
  margin: 0 auto 38px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  overflow: hidden;
}

.profile-row--reverse { grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); }
.profile-row--reverse .profile-row__media { order: 2; }

.profile-row__media {
  min-height: 440px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--ink-soft);
}

.profile-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.profile-row:hover .profile-row__media img { transform: scale(1.025); }

.profile-row__copy {
  align-self: center;
  padding: clamp(22px, 3vw, 52px) clamp(10px, 2vw, 30px);
  color: var(--muted);
}

.profile-row__copy h2 {
  margin: 0 0 28px;
  color: var(--text);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(39px, 4vw, 63px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .98;
  text-wrap: balance;
}

.profile-row__copy h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--accent);
}

.profile-row__copy p { max-width: 590px; margin: 0; font-size: 16px; line-height: 1.72; }
.profile-row__copy p + p { margin-top: 16px; }

/* Shared editorial headings */
.section-heading {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto 40px;
  color: var(--text);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(52px, 6.7vw, 104px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .9;
  text-align: left;
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--accent);
}

/* Journey */
.journey-main { padding: 112px 0 132px; }
.journey-section { padding: 0 32px 84px; }
.journey-section + .journey-section { padding-top: 84px; border-top: 1px solid var(--line); }
.journey-section:last-child { padding-bottom: 0; }

.journey-item {
  width: min(100%, var(--content));
  margin: 0 auto 34px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: stretch;
  gap: clamp(28px, 4.5vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-raised);
  overflow: hidden;
}

.journey-item--reverse { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.journey-item--reverse .journey-item__media { order: 2; }

.journey-item__media {
  min-height: 340px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: #030403;
}

.journey-item__media img,
.journey-item__media iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  object-fit: cover;
}

.journey-item__copy {
  align-self: center;
  padding: clamp(24px, 3vw, 48px) clamp(8px, 2vw, 26px);
  color: var(--muted);
}

.journey-item__copy h3 {
  margin: 0 0 24px;
  color: var(--text);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.journey-item__copy p { margin: 0; font-size: 15px; line-height: 1.68; }
.journey-item__copy strong { color: #d9ddd2; font-weight: 650; }
.journey-item__copy a { color: var(--text); text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.journey-item__copy a:hover { color: var(--accent); }

.journey-item--current {
  border-color: rgba(201, 244, 86, .32);
  background: linear-gradient(135deg, var(--accent-soft), var(--ink-raised) 52%);
}

/* Travel */
.travel-main { padding-top: 112px; }
.world-map-section { padding: 0 32px 72px; }

.world-map-frame {
  display: block;
  width: min(100%, var(--content));
  height: 470px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow);
}

.travel-stats {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-raised);
}

.travel-stats p {
  min-height: 164px;
  margin: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--paper);
  color: var(--text-dark);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 18px;
  font-weight: 550;
  letter-spacing: .015em;
  line-height: 1.2;
  text-align: center;
}

.travel-stats strong {
  display: block;
  margin-bottom: 8px;
  color: #080908;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -.06em;
}

.travel-gallery-section { padding: 144px 32px 140px; }
.travel-gallery-section .section-heading { width: min(100%, var(--content)); margin-bottom: 52px; }

.gallery-columns {
  width: min(100%, var(--content));
  margin: 0 auto;
  column-count: 3;
  column-gap: 16px;
}

.gallery-item {
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: var(--ink-soft);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.gallery-item img:hover {
  position: relative;
  z-index: 1;
  filter: saturate(1.06) contrast(1.02);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .3);
}

.gallery-noscript {
  width: min(100%, var(--content));
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
}

.show-more-button {
  min-width: 160px;
  min-height: 52px;
  margin: 52px auto 0;
  padding: 14px 24px;
  display: block;
  border: 1px solid rgba(201, 244, 86, .5);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  cursor: pointer;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .06em;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.show-more-button:hover,
.show-more-button:focus-visible { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.show-more-button[hidden] { display: none; }
html:not(.js) .show-more-button { display: none; }

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

/* Contact */
.contact-form-section { position: relative; padding: 112px 32px 128px; }

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -15%;
  width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 244, 86, .12), transparent 66%);
  pointer-events: none;
}

.contact-form-section .section-heading { width: min(100%, 960px); }

.contact-form-wrap {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}

.contact-lead {
  max-width: 650px;
  margin: 0 0 38px;
  color: var(--text);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field--wide { grid-column: 1 / -1; }

.form-label {
  color: #dfe2d9;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .035em;
}

.form-label span { color: var(--accent); }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  padding: 17px 18px;
  background: rgba(0, 0, 0, .22);
  color: #fff;
  font-size: 16px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.attachment-row,
.contact-submit { grid-column: 1 / -1; }
.contact-form textarea { min-height: 230px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a5aa9f; opacity: 1; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 0;
  background: rgba(0, 0, 0, .38);
  box-shadow: 0 0 0 4px rgba(201, 244, 86, .1);
}

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

.attachment-row {
  min-height: 44px;
  padding: 4px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.attachment-row input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.attachment-button { color: var(--text); cursor: pointer; font-weight: 650; }
.attachment-button span { margin-right: 6px; color: var(--accent); }
.attachment-button:hover,
.attachment-row:focus-within .attachment-button { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

.attachment-help {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

#attachment-count { color: var(--muted); font-size: 13px; }

.contact-submit {
  min-height: 58px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible { background: #dcff7e; box-shadow: 0 12px 34px rgba(201, 244, 86, .16); transform: translateY(-2px); }

.location-section {
  margin: 0 16px;
  padding: 116px 32px 104px;
  border-radius: 44px;
  background: var(--paper);
  color: var(--muted-dark);
  text-align: left;
}

.location-section .section-heading { color: var(--text-dark); }

.location-section > p {
  width: min(100%, var(--content));
  margin: -12px auto 34px;
  color: var(--muted-dark);
  font-size: 18px;
}

.location-map-wrap {
  width: min(100%, var(--content));
  height: 500px;
  margin: 0 auto 28px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 60px rgba(27, 31, 24, .14);
  overflow: hidden;
}

.location-map-wrap iframe { width: 100%; height: 100%; border: 0; border-radius: calc(var(--radius-lg) - 10px); }

.directions-button {
  width: fit-content;
  min-height: 50px;
  margin: 0 max(0px, calc((100% - var(--content)) / 2));
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease;
}

.directions-button:hover,
.directions-button:focus-visible { background: #30342d; transform: translateY(-2px); }
.directions-button span { color: var(--accent); }

.social-section { padding: 132px 32px 122px; }

.social-links {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink-raised);
  color: var(--text);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible { border-color: var(--accent); background: var(--accent); color: var(--ink); transform: translateY(-4px); }

/* Shared footer and response pages */
.site-footer {
  width: min(calc(100% - 64px), var(--content));
  min-height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p { margin: 0; }
.form-response-page { min-height: 100vh; display: grid; place-items: center; }

.form-response {
  width: min(calc(100% - 48px), 680px);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-raised);
  text-align: center;
}

.form-response h1 {
  margin: 0 0 18px;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -.04em;
  line-height: 1;
}

.form-response p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.form-response a { margin-top: 20px; padding: 13px 20px; display: inline-block; border: 1px solid var(--accent); border-radius: 999px; color: var(--accent); text-decoration: none; }

/* Motion progressively enhances the layout without hiding content when JS is unavailable. */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal-target {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  }

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

  .motion-ready .home-hero__copy,
  .motion-ready .home-hero__portrait-wrap {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-enter .85s cubic-bezier(.2, .7, .2, 1) forwards;
  }

  .motion-ready .home-hero__portrait-wrap { animation-delay: .12s; }

  @keyframes hero-enter {
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 980px) {
  .site-header { top: 8px; min-height: 64px; margin-top: 8px; padding: 8px 9px 8px 18px; }
  .site-logo { width: min(53vw, 224px); }
  .menu-toggle { display: block; margin-left: auto; }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(9, 10, 9, .98);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 16px 18px 14px; text-align: left; }

  html:not(.js) .site-header {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }

  html:not(.js) .menu-toggle { display: none; }

  html:not(.js) .primary-nav {
    position: static;
    width: 100%;
    display: flex;
    box-shadow: none;
  }
  .home-hero { min-height: auto; }
  .home-hero::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(9, 10, 9, .7) 66%, rgba(9, 10, 9, .88) 100%); }

  .home-hero__content {
    min-height: auto;
    padding: 96px 0;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .home-hero__copy { max-width: 740px; }
  .home-hero h1 { font-size: clamp(72px, 15vw, 124px); }
  .home-hero p { margin-top: 34px; }
  .home-hero__portrait-wrap { justify-self: stretch; }

  .profile-row,
  .profile-row--reverse,
  .journey-item,
  .journey-item--reverse { grid-template-columns: 1fr; gap: 8px; }

  .profile-row--reverse .profile-row__media,
  .journey-item--reverse .journey-item__media { order: 0; }

  .profile-row__media { min-height: 0; aspect-ratio: 16 / 10; }
  .profile-row__copy { padding: 32px 22px 36px; }

  .journey-item__media,
  .journey-item__media img,
  .journey-item__media iframe { min-height: 0; aspect-ratio: 16 / 9; }

  .journey-item__copy { padding: 32px 22px 38px; }
  .gallery-columns { column-count: 2; }
}

@media (max-width: 700px) {
  .home-hero__content { width: calc(100% - 40px); padding: 72px 0 78px; }
  .home-hero h1 { font-size: clamp(64px, 21vw, 96px); }
  .home-hero p { margin-left: 0; font-size: 18px; }
  .home-hero__portrait-wrap::before { top: -14px; right: -12px; }
  .home-hero__portrait { aspect-ratio: 1.04; border-radius: var(--radius-md); }

  .profile-list,
  .journey-section,
  .world-map-section,
  .travel-gallery-section,
  .contact-form-section,
  .social-section { padding-right: 16px; padding-left: 16px; }

  .profile-list { padding-bottom: 92px; }

  .profile-row,
  .journey-item { padding: 10px; border-radius: var(--radius-md); }

  .profile-row__media,
  .journey-item__media { border-radius: calc(var(--radius-md) - 6px); }

  .profile-row__copy,
  .journey-item__copy { padding-right: 14px; padding-left: 14px; }

  .section-heading { width: min(calc(100% - 32px), var(--content)); font-size: clamp(48px, 15vw, 74px); }
  .journey-main,
  .travel-main { padding-top: 82px; }
  .journey-section { padding-bottom: 60px; }
  .journey-section + .journey-section { padding-top: 66px; }
  .world-map-section { padding-bottom: 48px; }
  .world-map-frame { height: 290px; border-radius: var(--radius-md); }

  .travel-stats {
    width: calc(100% - 32px);
    padding: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: var(--radius-md);
  }

  .travel-stats p { min-height: 124px; border-radius: calc(var(--radius-md) - 6px); }
  .travel-stats strong { font-size: 52px; }
  .travel-gallery-section { padding-top: 96px; padding-bottom: 96px; }
  .travel-gallery-section .section-heading { width: 100%; }
  .contact-form-section { padding-top: 82px; padding-bottom: 96px; }
  .contact-form-section .section-heading { width: 100%; }
  .contact-form-wrap { padding: 26px 20px; border-radius: var(--radius-md); }
  .contact-form { grid-template-columns: 1fr; }

  .form-field--wide,
  .attachment-row,
  .contact-submit { grid-column: auto; }

  .contact-lead { margin-bottom: 30px; font-size: 24px; }

  .location-section {
    margin: 0 8px;
    padding: 82px 16px 74px;
    border-radius: 30px;
  }

  .location-section .section-heading { width: 100%; }
  .location-section > p { margin-top: -8px; font-size: 16px; }
  .location-map-wrap { height: 360px; padding: 7px; border-radius: var(--radius-md); }
  .location-map-wrap iframe { border-radius: calc(var(--radius-md) - 6px); }
  .directions-button { margin: 0; }
  .social-section { padding-top: 96px; padding-bottom: 90px; }
  .social-section .section-heading { width: 100%; }
  .social-links a { width: 56px; height: 56px; }

  .site-footer {
    width: calc(100% - 32px);
    min-height: 120px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .gallery-columns { column-count: 1; }
  .gallery-item { margin-bottom: 14px; }
}

@media (max-width: 430px) {
  .site-header { width: calc(100% - 16px); }
  .site-logo { width: 170px; }
  .primary-nav { width: calc(100vw - 16px); }
  .home-hero__content { width: calc(100% - 32px); }
  .home-hero h1 { font-size: 64px; }
  .profile-row__media { aspect-ratio: 4 / 3; }
  .profile-row__copy h2 { font-size: 39px; }
  .journey-item__copy h3 { font-size: 29px; }
  .attachment-row { align-items: flex-start; }
  .social-links { gap: 10px; }
}

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

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