@font-face {
  font-family: Lato;
  src: url('../assets/fonts/lato.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: EB Garamond;
  src: url('../assets/fonts/eb-garamond.woff2') format('woff2');
  font-display: swap;
}

:root {
  --ink: #493023;
  --espresso: #4a2a18;
  --gold: #c8a16e;
  --gold-deep: #ad7f49;
  --header: #faf4ed;
  --hero: #fbf6f0;
  --journey: #faf5f0;
  --warm-sand: #f8f0e8;
  --footer: #f5ece3;
  --paper: url('../assets/decor/sand-paper-texture.png');
  --display: 'EB Garamond', Georgia, serif;
  --body: Lato, Arial, sans-serif;
  --numeric: "Times New Roman", Times, serif;
  --container: min(1180px, calc(100vw - 80px));
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 40px;
  --s5: 64px;
  --s6: 96px;
  --rule: rgb(105 76 53 / .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--journey);
  font-family: var(--body);
}

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

button,
input {
  font: inherit;
}

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

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

.surface-journey,
.surface-sand,
.surface-footer {
  background-repeat: repeat;
  background-size: auto, 560px 560px;
  background-blend-mode: normal;
}

.surface-journey {
      padding: 40px 0;
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .975), rgb(250 245 240 / .975)), var(--paper);
}

.surface-sand {
  background-color: var(--warm-sand);
  background-image: linear-gradient(rgb(248 240 232 / .975), rgb(248 240 232 / .975)), var(--paper);
}

.surface-footer {
  background-color: var(--footer);
  background-image: linear-gradient(rgb(245 236 227 / .98), rgb(245 236 227 / .98)), var(--paper);
}

.topbar {
  min-height: 32px;
  color: #f7e7ca;
  background: var(--espresso);
  font: 12px/1 var(--display);
}

.topbar .container {
  min-height: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.topbar span:last-child {
  justify-self: end;
}

.topbar .star {
  color: var(--gold);
  margin-right: 8px;
}

.site-nav {
  position: relative;
  z-index: 20;
  background-color: var(--header);
  background-image: linear-gradient(rgb(250 244 237 / .98), rgb(250 244 237 / .98)), var(--paper);
  background-size: auto, 560px 560px;
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand img {
  width: 110px;
  height: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  font: 14px/1 var(--display);
  white-space: nowrap;
}

.nav-links a:not(.button):hover {
  color: var(--gold-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  gap: 18px;
  color: #fff3dc;
  background: var(--espresso);
  border: 1px solid transparent;
  border-radius: 3px;
  font: 16px/1 var(--display);
  box-shadow: 0 9px 18px rgb(53 24 4 / .14);
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  background: #4a260e;
  transform: translateY(-2px);
}

.button .arrow {
  color: #d8ae69;
  font-size: 25px;
  line-height: .5;
}

.menu-button {
  display: none;
  color: var(--ink);
  border: 0;
  background: none;
  font-size: 26px;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 24px;
    right: 24px;
    padding: 24px;
    background: var(--header);
    box-shadow: 0 16px 30px rgb(53 24 4 / .18);
    white-space: normal;
  }

  .nav-links.open {
    display: grid;
    gap: 20px;
  }
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}

.hero-photo {
  min-height: 100%;
  background: url('../assets/images/hero-v3.png') center / cover no-repeat;
}

.hero-copy {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--hero);
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .17;
  background: url('../assets/decor/hero-door-v3.png') center / 100% 100% no-repeat;
  pointer-events: none;
}

.hero-copy::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 72px));
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6a4a36;
  font: 700 12px/1.2 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-star {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 32px;
  line-height: 1;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}

.hero h1 {
  max-width: 510px;
  margin: 0 auto 24px;
  font-size: clamp(64px, 5.7vw, 104px);
  line-height: .88;
  letter-spacing: -.045em;
}

.hero-description {
  max-width: 410px;
  margin: 26px auto 30px;
  font: 18px/1.55 var(--display);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-deep);
}

.ornament::before,
.ornament::after {
  content: '';
  width: 92px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.play-story {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: 17px/1 var(--display);
  cursor: pointer;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--gold-deep);
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  font-size: 10px;
}

section {
  position: relative;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
}

.section-head .ornament {
  margin-top: 12px;
}

.section-head .ornament::before,
.section-head .ornament::after {
  width: 72px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-header>div {
  max-width: 650px;
}

.section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
}

.section-header p {
  margin: 0;
  color: #684a36;
  font: 18px/1.5 var(--display);
}

.section-cta {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
  min-height: 48px;
  padding: 0 50px;
  color: var(--espresso);
  border: 1px solid rgb(167 122 65 / .54);
  border-radius: 2px;
  font: 13px/1 var(--body);
  letter-spacing: .01em;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.section-cta:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}

.section-cta span {
  color: var(--gold-deep);
  font: 23px/1 var(--body);
  letter-spacing: 0;
}

.journeys {
  padding: var(--s6) 0 104px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 80px;
}

.journey-card {
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgb(173 124 64 / .30);
  border-radius: 8px;
  box-shadow: 0 13px 24px rgb(78 49 29 / .045);
}

.journey-card>img {
  width: calc(100% + 2px);
  height: 235px;
  margin: -1px -1px 0;
  object-fit: cover;
}

.journey-card-body {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  padding: 28px 28px 24px;
}

.journey-card h3 {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1;
}

.journey-card p {
  margin-bottom: 22px;
  color: #6a4a36;
  font: 16px/1.45 var(--display);
}

.card-rule {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--gold-deep);
}

.card-rule::before,
.card-rule::after {
  content: '';
  width: 76px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
  font-family: var(--display);
}

.price-row small {
  font-size: 16px;
}

.price-row strong {
  margin-left: 4px;
  font-family: var(--numeric);
  font-size: 29px;
  font-weight: 400;
}

.numeric {
  font-family: var(--numeric);
  font-variant-numeric: lining-nums proportional-nums;
}

body input[type="number"],
body input[type="tel"],
body input[type="date"],
input.numeric-placeholder::placeholder,
textarea.numeric-placeholder::placeholder {
  font-family: var(--numeric);
  font-variant-numeric: lining-nums proportional-nums;
}

.price-row .arrow {
  color: var(--gold-deep);
  font-size: 32px;
  line-height: .7;
}

.process {
  padding: var(--s6) 0;
  overflow: hidden;
  border-block: 1px solid var(--rule);
}

.process::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 210px;
  opacity: .23;
  background: url('../assets/decor/palm-shadow.png') left center / cover no-repeat;
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  inset: 0 -12px 0 auto;
  width: 152px;
  background: url('../assets/decor/side-sticker.png?v=2') right top / 100% 100% no-repeat;
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 80px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 44px;
  left: calc(50% + 50px);
  width: calc(100% - 100px);
  height: 3px;
  background: radial-gradient(circle, var(--gold-deep) 1.4px, transparent 1.7px) center / 8px 3px repeat-x;
}

.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 38px;
  right: -5px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--warm-sand);
  border-radius: 50%;
  background: var(--gold-deep);
}

.process-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1;
}

.process-step p {
  max-width: 160px;
  margin: 0 auto;
  color: #684a36;
  font: 15px/1.43 var(--display);
}

.stories {
  padding: var(--s6) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr .78fr;
  align-items: center;
  gap: 48px;
  margin-top: 80px;
}

.micro-label {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .15em;
  text-transform: uppercase;
}

blockquote {
  position: relative;
  margin: 0;
  padding-left: 34px;
  font: italic 20px/1.46 var(--display);
}

blockquote::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 0;
  color: var(--gold-deep);
  font: 52px/1 var(--display);
}

.guest {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.guest img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.guest strong,
.guest span {
  display: block;
  font: 16px/1.35 var(--display);
}

.guest span {
  color: #74533c;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border: 1px solid rgb(148 99 45 / .28);
  border-radius: 8px;
  aspect-ratio: 1.23;
  object-fit: cover;
}

.story-image button {
  position: absolute;
  top: 50%;
  border: 0;
  color: var(--gold-deep);
  background: transparent;
  font: 34px/1 var(--display);
  transform: translateY(-50%);
  cursor: pointer;
}

.story-image button:first-child {
  left: -38px;
}

.story-image button:last-child {
  right: -38px;
}

.press {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding-left: 42px;
  border-left: 1px solid var(--rule);
  text-align: center;
}

.press .micro-label {
  width: 100%;
  margin-bottom: 16px;
  text-align: center;
}

.press-logos {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.press-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.conde-logo {
  width: 150px;
}

.forbes-logo {
  width: 158px;
}

.virtuoso-logo {
  width: 138px;
}

.journal {
  padding: var(--s6) 0;
  border-top: 1px solid var(--rule);
}

.journal-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.journal-top .section-head {
  text-align: left;
}

.journal-top .ornament {
  justify-content: flex-start;
}

.journal-top .ornament::before {
  display: none;
}

.journal-intro {
  max-width: 360px;
  margin: 0;
  color: #684a36;
  font: 17px/1.5 var(--display);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, .8fr);
  gap: 36px;
  margin-top: 80px;
}

.feature-post {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgb(173 124 64 / .34);
  border-radius: 9px;
  color: #fff4df;
  background: #4c2b14;
}

.feature-post>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.feature-post:hover>img {
  transform: scale(1.035);
}

.feature-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(22 11 4 / .06) 30%, rgb(45 22 8 / .89) 100%);
}

.feature-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.journal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-bottom: 16px;
  padding: 0 13px;
  color: var(--espresso);
  border-radius: 100px;
  background: #f5e4cf;
  font: 700 10px/1 var(--body);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-copy h3 {
  max-width: 690px;
  margin: 0 0 14px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: .98;
}

.feature-meta {
  margin: 0;
  color: #f4dfc5;
  font: 14px/1.4 var(--display);
}

.latest-posts {
  padding: 4px 0 0;
}

.latest-posts h3 {
  margin: 0 0 22px;
  font-size: 33px;
  line-height: 1;
}

.latest-post {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 17px;
  align-items: center;
  padding: 0 0 17px;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--rule);
}

.latest-post:last-child {
  margin-bottom: 0;
}

.latest-post img {
  width: 92px;
  height: 78px;
  border: 1px solid rgb(173 124 64 / .28);
  border-radius: 5px;
  object-fit: cover;
}

.latest-post h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font: 22px/1.03 var(--display);
}

.latest-post p {
  margin: 0;
  color: #74533c;
  font: 13px/1.3 var(--display);
}

.faq {
  padding: var(--s6) 0;
  border-top: 1px solid var(--rule);
}

.faq-intro {
  max-width: 650px;
  margin: 20px auto 46px;
  text-align: center;
  font: 18px/1.5 var(--display);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 72px;
  margin-top: 80px;
}

.faq-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(167 122 65 / .28);
  border-radius: 7px;
  background: var(--hero);
}

.faq-media img {
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  object-position: center;
}

.faq-list {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 23px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: 26px/1.15 var(--display);
}

.faq-trigger::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--gold-deep);
  font: 32px/1 var(--display);
  transition: transform .32s ease;
}

.faq-item.is-open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .36s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer>p {
  max-width: 720px;
  margin: 0;
  padding: 0 42px 25px 0;
  color: #684a36;
  font: 17px/1.55 var(--display);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .28s ease;
}

.faq-item.is-open .faq-answer>p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease .1s, transform .34s ease;
}

footer {
  border-top: 1px solid var(--rule);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, .82fr) 1.25fr;
  gap: 30px;
  padding: 72px 0 34px;
}

.footer-brand img {
  width: 130px;
  mix-blend-mode: multiply;
}

.footer-brand p {
  max-width: 250px;
  margin: 16px 0 18px;
  font: 16px/1.45 var(--display);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

footer h4 {
  margin: 3px 0 16px;
  font: 700 11px/1.2 var(--body);
  letter-spacing: .08em;
}

footer a {
  display: block;
  margin: 0 0 9px;
  font: 16px/1.25 var(--display);
}

footer a:hover {
  color: #8d633e;
}

.newsletter p {
  margin: 0 0 16px;
  font: 16px/1.4 var(--display);
}

.email-field {
  display: flex;
  height: 46px;
}

.email-field input {
  min-width: 0;
  flex: 1;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid rgb(131 87 36 / .32);
  border-right: 0;
  border-radius: 3px 0 0 3px;
  background: rgb(255 252 248 / .78);
  font: 15px var(--display);
}

.email-field button {
  width: 48px;
  color: #f4d899;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: var(--espresso);
  font-size: 25px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--rule);
  font: 13px/1.3 var(--display);
}

.footer-bottom a {
  display: inline;
  margin-left: 22px;
  font-size: inherit;
}

@media (max-width:960px) {
  :root {
    --container: min(100% - 48px, 1180px);
  }

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

  .journey-grid {
    gap: 16px;
  }

  .journey-card-body {
    padding: 22px;
  }

  .journey-card h3 {
    font-size: 26px;
  }

  .story-grid {
    gap: 28px;
  }

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

  .footer-brand,
  .newsletter {
    grid-column: span 3;
  }
}

@media (max-width:720px) {
  :root {
    --container: calc(100% - 40px);
    --s6: 72px;
  }

  .topbar .container {
    display: flex;
    justify-content: center;
  }

  .topbar .container span:not(:first-child) {
    display: none;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand img {
    width: 100px;
  }

  .nav-links {
    left: 20px;
    right: 20px;
  }

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

  .hero-photo {
    min-height: 62vh;
  }

  .hero-copy {
    min-height: 690px;
  }

  .hero-content {
    width: min(100% - 40px, 500px);
  }

  .hero h1 {
    font-size: clamp(62px, 18vw, 86px);
  }

  .journey-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    margin-top: 40px;
  }

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

  .journey-card>img {
    height: 270px;
  }

  .journey-card-body {
    min-height: 0;
  }

  .process::before,
  .process::after {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 46px;
  }

  .process-step:not(:last-child)::before,
  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step p {
    max-width: 270px;
    font-size: 17px;
  }

  .press {
    padding: 36px 0 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .press .micro-label {
    text-align: center;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 56px;
  }

  .footer-brand,
  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    margin: 12px 16px 0 0;
  }
}

@media (max-width:720px) {
  .section-header {
    display: block;
  }

  .section-header p {
    max-width: 540px;
  }

  .section-cta {
    margin-top: 24px;
  }

  .journal-top {
    display: block;
  }

  .journal-top .section-head {
    text-align: center;
  }

  .journal-top .ornament {
    justify-content: center;
  }

  .journal-intro {
    margin: 24px auto 0;
    text-align: center;
  }

  .journal-layout {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 56px;
  }

  .faq-media img {
    aspect-ratio: 1.2;
  }

  .feature-post {
    min-height: 410px;
  }

  .feature-copy {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }
}

@media (max-width:720px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-nav {
    position: relative;
    z-index: 20;
  }

  .nav-inner {
    position: relative;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--espresso);
    font: 34px/1 var(--display);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 120px 40px 56px;
    background-color: var(--header);
    background-image: linear-gradient(rgb(250 244 237 / .985), rgb(250 244 237 / .985)), var(--paper);
    background-size: auto, 560px 560px;
    box-shadow: none;
    font-size: clamp(28px, 8vw, 38px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    clip-path: circle(0% at calc(100% - 34px) 70px);
  }

  .nav-links.open {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-links .button {
    min-width: 230px;
    margin-top: 12px;
    font-size: 19px;
  }
}

/* =========================================================
   ALLOMOROCCO — CINEMATIC 3D SCROLL SYSTEM v3
   Progressive enhancement only. The base site remains intact
   when JavaScript / GSAP is unavailable.
   ========================================================= */

/* Immediate first-visit hero choreography uses the native Web Animations API.
   These rules only provide the 3D stage and a non-blocking light sweep. */
html.hero-entry-running .hero {
  perspective: 1700px;
  overflow: clip;
  isolation: isolate;
}

html.hero-entry-running .hero-photo,
html.hero-entry-running .hero-copy,
html.hero-entry-running .hero-content>* {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-entry-sweep {
  position: absolute;
  z-index: 7;
  top: -18%;
  bottom: -18%;
  left: -10vw;
  width: 11vw;
  min-width: 120px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgb(255 240 207 / .02) 22%, rgb(255 235 194 / .18) 48%, rgb(255 244 218 / .52) 50%, rgb(255 235 194 / .14) 54%, transparent 100%);
  filter: blur(1px);
  transform-origin: 50% 50%;
}

html.motion-3d,
html.motion-3d body {
  overflow-x: clip;
}

html.motion-3d .hero,
html.motion-3d .journey-grid,
html.motion-3d .process-grid,
html.motion-3d .story-grid,
html.motion-3d .journal-layout,
html.motion-3d .faq-layout {
  transform-style: preserve-3d;
}

html.motion-3d .hero {
  perspective: 1700px;
  isolation: isolate;
  overflow: clip;
  background: var(--journey);
}

html.motion-3d .hero-photo,
html.motion-3d .hero-copy,
html.motion-3d .hero-content,
html.motion-3d .journey-card,
html.motion-3d .process-step,
html.motion-3d .story-grid>div:not(.press),
html.motion-3d .feature-post,
html.motion-3d .latest-post,
html.motion-3d .faq-media,
html.motion-3d .faq-item {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html.motion-3d .hero-photo,
html.motion-3d .hero-copy {
  transform-style: preserve-3d;
}

html.motion-3d .hero-photo {
  transform-origin: 100% 50%;
}

html.motion-3d .hero-copy {
  transform-origin: 0 50%;
}

html.motion-3d .hero-content {
  transform-origin: 50% 50%;
}

/* Thin depth shadow at the central hero seam. It is static and cheap. */
html.motion-3d .hero::after {
  content: '';
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgb(53 24 4 / .22) 18%, rgb(53 24 4 / .22) 82%, transparent);
  box-shadow: 0 0 24px rgb(53 24 4 / .13);
  opacity: .45;
}

/* 3D editorial heading mask. The content is never hidden in base CSS. */
html.motion-3d .motion-title-mask {
  overflow: hidden;
  perspective: 900px;
}

html.motion-3d .motion-title-mask>h2 {
  transform-origin: 50% 100%;
  backface-visibility: hidden;
}

html.motion-3d .journey-grid {
  perspective: 1500px;
}

html.motion-3d .journey-card {
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
}

html.motion-3d .journey-card>img {
  backface-visibility: hidden;
}

html.motion-3d .process-grid {
  perspective: 1300px;
  isolation: isolate;
}

/* Keep the original dotted process connector only. V2 added a second
   generated rail; it is intentionally disabled in V3. */
html.motion-3d .motion-process-track {
  display: none !important;
}

html.motion-3d .process-step {
  transform-style: preserve-3d;
}

html.motion-3d .process-icon {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

html.motion-3d .story-grid {
  /* The left testimonial and center photo receive perspective individually
     in JS. A flat parent keeps logo multiply blending on the sand surface. */
  perspective: none;
}

html.motion-3d .press {
  transform: none;
  transform-style: flat;
  isolation: auto;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

html.motion-3d .press-logos {
  isolation: auto;
}

html.motion-3d .press-logo {
  background: transparent !important;
  mix-blend-mode: multiply !important;
  isolation: auto;
}

html.motion-3d .story-image {
  transform-style: preserve-3d;
  overflow: visible;
}

html.motion-3d .story-image img {
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}

html.motion-3d .journal-layout {
  perspective: 1600px;
}

html.motion-3d .feature-post,
html.motion-3d .latest-posts {
  transform-style: preserve-3d;
}

html.motion-3d .feature-post {
  transform-origin: 0 50%;
}

html.motion-3d .latest-posts {
  transform-origin: 100% 50%;
}

html.motion-3d .faq-layout {
  perspective: 1450px;
}

html.motion-3d .faq-list {
  transform-style: preserve-3d;
}

@media (min-width: 961px) {
  html.motion-3d .faq-media {
    position: sticky;
    top: 48px;
    transform-origin: 50% 50%;
  }
}

/* JS temporarily applies will-change only while the motion system is active. */
html.motion-3d .motion-gpu {
  will-change: transform;
}

/* Keep interaction layers above transformed 3D planes.
   Story navigation is intentionally excluded: those controls must remain
   absolutely anchored to the static .story-image shell. */
html.motion-3d .hero a,
html.motion-3d .hero button,
html.motion-3d .journey-card a,
html.motion-3d .faq-trigger {
  position: relative;
  z-index: 8;
}

/* Geometry-locked story navigation.
   The 3D animation belongs to .story-visual-frame only; these buttons never
   enter normal document flow and therefore cannot drift when GSAP starts. */
html.motion-3d .story-image>button {
  position: absolute !important;
  top: 50% !important;
  z-index: 12;
  margin: 0;
  transform: translateY(-50%) !important;
}

html.motion-3d .story-image>button:first-child {
  left: -38px !important;
  right: auto !important;
}

html.motion-3d .story-image>button:last-child {
  right: -38px !important;
  left: auto !important;
}

@media (max-width: 960px) {

  html.motion-3d .hero,
  html.motion-3d .journey-grid,
  html.motion-3d .process-grid,
  html.motion-3d .story-grid,
  html.motion-3d .journal-layout,
  html.motion-3d .faq-layout {
    perspective: none;
  }

  html.motion-3d .hero::after,
  html.motion-3d .motion-process-track {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.motion-3d .motion-gpu {
    will-change: auto;
  }

  html.motion-3d .faq-media {
    position: static;
  }
}

/* =========================================================
   ALLOMOROCCO — CINEMATIC 3D SCROLL SYSTEM v4
   Stability pass: independent hero layers, natural process focus,
   fixed story navigation geometry, and logo-safe reveals.
   ========================================================= */

/* Hero media is now an inner visual layer. The outer .hero-photo is reserved
   for scroll-camera transforms, so first-load animation can never fight it. */
.hero-photo {
  position: relative;
  overflow: hidden;
  background: none;
}

.hero-photo-media {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-v3.png') center / cover no-repeat;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html.hero-intro-running .hero {
  overflow: clip;
  isolation: isolate;
}

html.hero-intro-running .hero-photo-media,
html.hero-intro-running .hero-content>* {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Story image gets its own frame. The arrows remain siblings of the frame,
   therefore no 3D transform can move their anchor position. */
.story-visual-frame {
  width: 100%;
  aspect-ratio: 1.23;
  overflow: hidden;
  border: 1px solid rgb(148 99 45 / .5);
  border-radius: 8px;
  background: var(--warm-sand);
  transform-origin: 50% 50%;
}

.story-visual-frame img,
html.motion-3d .story-visual-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.story-image>button {
  position: absolute;
  top: 50%;
  z-index: 12;
  transform: translateY(-50%);
}

/* The source logo files have white pixels. The logo itself must stay on the
   normal sand compositing plane so multiply blending remains reliable. */
.press-logo-reveal {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: 0;
}

.press-logo-curtain {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background-color: var(--warm-sand);
  background-image: linear-gradient(rgb(248 240 232 / .985), rgb(248 240 232 / .985)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
  transform-origin: 100% 50%;
}

html.motion-3d .story-grid {
  perspective: none !important;
  transform-style: flat !important;
  isolation: auto !important;
}

html.motion-3d .story-image {
  transform: none !important;
  transform-style: flat !important;
  overflow: visible;
}

html.motion-3d .story-visual-frame {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html.motion-3d .press,
html.motion-3d .press-logos,
html.motion-3d .press-logo-reveal,
html.motion-3d .press-logo {
  isolation: auto !important;
}

html.motion-3d .press,
html.motion-3d .press-logos,
html.motion-3d .press-logo-reveal,
html.motion-3d .press-logo {
  transform: none !important;
}

html.motion-3d .press-logo {
  opacity: 1 !important;
  background: transparent !important;
  mix-blend-mode: multiply !important;
  will-change: auto !important;
}

/* Process cards must look like the final design before the scroll choreography
   begins. No pre-scroll miniature / distant state is declared in CSS. */
html.motion-3d .process-step {
  transform-origin: 50% 45%;
}

@media (max-width: 960px) {
  .story-visual-frame {
    aspect-ratio: 1.23;
  }

  .press-logo-curtain {
    display: none;
  }
}

/* Curtains are progressive enhancement only. If GSAP fails, logos remain visible. */
.press-logo-curtain {
  display: none;
}

html.motion-3d .press-logo-curtain {
  display: block;
}

@media (max-width: 960px) {
  html.motion-3d .press-logo-curtain {
    display: none;
  }
}

/* =========================================================
   ALLOMOROCCO — PROCESS TRAVELLING LIGHT v8
   Stable highlight choreography: the original process step,
   connector line and connector dots never move or scale.
   ========================================================= */

html.motion-3d .process-grid {
  /* The earlier 3D stage is unnecessary for this section now. */
  perspective: none;
  transform-style: flat;
}

html.motion-3d .process-step,
html.motion-3d .process-icon {
  /* Critical: no transformed containing blocks / no geometry changes. */
  transform: none !important;
  transform-style: flat !important;
  will-change: auto !important;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.process-focus-halo {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 132px;
  height: 132px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%,
      rgb(204 167 117 / .24) 0%,
      rgb(204 167 117 / .12) 31%,
      rgb(204 167 117 / .045) 51%,
      transparent 72%);
}

/* Keep the halo visually behind the icon/text without changing layout. */
.process-step .process-icon,
.process-step h3,
.process-step p {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px),
(prefers-reduced-motion: reduce) {
  .process-focus-halo {
    display: none !important;
  }

  html.motion-3d .process-step,
  html.motion-3d .process-icon,
  .process-step .process-icon,
  .process-step h3,
  .process-step p {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   ALLOMOROCCO — FAQ PAGE / CLASSIC & CLEAN v3
   Hero and FAQ are separate sections. Scoped to .faq-page-body.
   ========================================================= */

.faq-page-body {
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.faq-page-body .site-nav {
  position: relative;
  z-index: 20;
}

.nav-links .is-active {
  position: relative;
  color: var(--gold-deep);
}

.nav-links .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .62;
}

/* ---------- Hero: independent section ---------- */
.faq-page-hero {
  border-bottom: 1px solid var(--rule);
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .978), rgb(251 246 240 / .978)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.faq-page-hero-grid {
  width: var(--container);
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  align-items: stretch;
  gap: 56px;
}

.faq-page-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 0 58px;
}

.faq-page-kicker {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.faq-page-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font: 500 clamp(56px, 5.1vw, 78px)/.91 var(--display);
  letter-spacing: -.045em;
}

.faq-page-subtitle {
  margin: 22px 0 0;
  color: #624431;
  font: 22px/1.25 var(--display);
}

.faq-page-subtitle strong {
  color: var(--ink);
  font-weight: 600;
}

.faq-page-subtitle em {
  font-style: italic;
}

.faq-page-hero-media {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--warm-sand);
}

.faq-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(.88) contrast(.99) brightness(1.02);
}

.faq-page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(250 245 240 / .08), transparent 24%);
}

.faq-page-note {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: 165px;
  padding: 9px 13px 8px;
  color: var(--espresso);
  border: 1px solid rgb(167 122 65 / .22);
  background: rgb(251 246 240 / .93);
  box-shadow: 0 8px 22px rgb(63 37 20 / .06);
  font: italic 18px/1.05 var(--display);
  text-align: center;
  transform: rotate(-2deg);
}

/* ---------- FAQ content: independent section ---------- */
.faq-classic {
  border-bottom: 1px solid var(--rule);
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .978), rgb(250 245 240 / .978)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.faq-classic-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  align-items: start;
  padding: 62px 0 74px;
}

.faq-page-main {
  min-width: 0;
}

.faq-page-main .faq-list {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.faq-page-main .faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-page-main .faq-trigger {
  min-height: 58px;
  padding: 14px 3px 14px 0;
  gap: 24px;
  color: var(--ink);
  font: 500 clamp(19px, 1.45vw, 22px)/1.16 var(--display);
  letter-spacing: -.008em;
}

.faq-page-main .faq-question {
  display: block;
  min-width: 0;
}

.faq-page-main .faq-trigger::after {
  font-size: 25px;
}

.faq-page-main .faq-answer>p {
  max-width: 760px;
  margin: 0;
  padding: 2px 54px 19px 0;
  color: #684a36;
  font: 16px/1.55 var(--display);
}

.faq-page-main .faq-answer em {
  color: var(--ink);
}

.faq-page-main .faq-answer strong {
  color: var(--espresso);
  font-weight: 600;
}

.faq-page-sidebar {
  position: sticky;
  top: 28px;
  width: 330px;
}

.faq-contact-card {
  position: relative;
  overflow: hidden;
  padding: 31px 27px 29px;
  border: 1px solid rgb(167 122 65 / .27);
  background-color: #fbf6f0;
  background-image: linear-gradient(rgb(251 246 240 / .966), rgb(251 246 240 / .966)), url('../assets/decor/hero-door-v3.png');
  background-position: center;
  background-size: auto, 100% 100%;
  box-shadow: 0 13px 30px rgb(78 49 29 / .038);
  text-align: center;
}

.faq-contact-card::before {
  content: '✦';
  display: block;
  margin-bottom: 15px;
  color: var(--gold-deep);
  font: 20px/1 var(--display);
}

.faq-contact-card h2 {
  max-width: 210px;
  margin: 0 auto 8px;
  color: var(--ink);
  font: 500 35px/.96 var(--display);
  letter-spacing: -.028em;
}

.faq-contact-lead {
  margin: 0 0 20px;
  color: #684a36;
  font: 17px/1.3 var(--display);
}

.faq-whatsapp {
  width: 100%;
  min-height: 46px;
  margin-bottom: 15px;
  padding-inline: 17px;
  gap: 11px;
  font-size: 15px;
}

.faq-whatsapp .arrow {
  margin-left: auto;
}

.faq-whatsapp .wa-mark {
  font-size: 17px;
}

.faq-contact-phone {
  display: block;
  margin-bottom: 15px;
  color: var(--ink);
  font: 23px/1 var(--display);
}

.faq-contact-response {
  max-width: 225px;
  margin: 0 auto;
  color: #70503a;
  font: 14px/1.45 var(--display);
}

.faq-contact-rule {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 18px;
  color: var(--gold-deep);
}

.faq-contact-rule::before,
.faq-contact-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .34;
}

.faq-contact-tagline {
  margin: 0;
  color: var(--ink);
  font: italic 16px/1.31 var(--display);
}

.faq-contact-brand {
  display: block;
  margin-top: 21px;
  color: var(--espresso);
  font: 700 10px/1.2 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.faq-page-body .footer-main {
  padding-top: 58px;
}

@media (max-width: 1080px) {
  .faq-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    min-height: 390px;
    gap: 42px;
  }

  .faq-page-hero-media {
    min-height: 390px;
  }

  .faq-page-hero-copy h1 {
    font-size: clamp(52px, 5.6vw, 68px);
  }

  .faq-classic-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 44px;
  }

  .faq-page-sidebar {
    width: 310px;
  }
}

@media (max-width: 820px) {
  .faq-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    min-height: 350px;
    gap: 30px;
  }

  .faq-page-hero-copy {
    padding: 48px 0;
  }

  .faq-page-hero-copy h1 {
    font-size: clamp(46px, 6.4vw, 58px);
  }

  .faq-page-hero-media {
    min-height: 350px;
  }

  .faq-classic-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 30px;
    padding-top: 52px;
  }

  .faq-page-sidebar {
    width: 270px;
  }

  .faq-contact-card {
    padding: 27px 20px 25px;
  }

  .faq-contact-card h2 {
    font-size: 31px;
  }
}

@media (max-width: 720px) {
  .faq-page-hero-grid {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-page-hero-copy {
    width: var(--container);
    margin-inline: auto;
    padding: 44px 0 38px;
  }

  .faq-page-hero-copy h1 {
    max-width: 560px;
    font-size: clamp(46px, 12.8vw, 64px);
  }

  .faq-page-subtitle {
    font-size: 20px;
  }

  .faq-page-hero-media {
    min-height: 0;
    height: 340px;
    border-top: 1px solid var(--rule);
    border-right: 0;
    border-left: 0;
  }

  .faq-page-note {
    right: 20px;
    bottom: 17px;
  }

  .faq-classic-grid {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 44px 0 56px;
  }

  .faq-page-main .faq-trigger {
    min-height: 56px;
    padding-block: 14px;
    font-size: 20px;
  }

  .faq-page-main .faq-answer>p {
    padding: 0 34px 18px 0;
    font-size: 16px;
  }

  .faq-page-sidebar {
    position: static;
    width: 100%;
  }

  .faq-contact-card {
    width: 100%;
    padding: 31px 26px 28px;
  }

  .faq-page-body .footer-main {
    padding-top: 50px;
  }
}


/* =========================================================
   ALLOMOROCCO — ABOUT PAGE / PERSONAL MOROCCO v1
   Dedicated page system based on the client-approved direction.
   Shared header/footer tokens remain the single global source of truth.
   ========================================================= */

.about-page-body {
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.about-page-body .site-nav {
  position: relative;
  z-index: 20;
}

/* ---------- Hero ---------- */
.about-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .982), rgb(251 246 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.about-hero-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 72px clamp(48px, 6vw, 96px) 72px max(40px, calc((100vw - 1180px) / 2));
}

.about-hero-copy-inner {
  width: min(520px, 100%);
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 23px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-kicker::before {
  content: '✦';
  font-size: 14px;
  letter-spacing: 0;
}

.about-kicker::after {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: .48;
}

.about-hero h1 {
  max-width: 560px;
  margin: 0 0 15px;
  color: var(--ink);
  font: 500 clamp(64px, 5.2vw, 86px)/.89 var(--display);
  letter-spacing: -.043em;
}

.about-hero-subtitle {
  margin: 0 0 22px;
  color: var(--ink);
  font: 27px/1.12 var(--display);
}

.about-hero-subtitle em {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-hero-intro {
  max-width: 475px;
  margin: 0 0 28px;
  color: #684a36;
  font: 17px/1.55 var(--display);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.about-hero-actions .button {
  min-width: 220px;
}

.about-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font: 17px/1 var(--display);
  cursor: pointer;
}

.about-watch-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--gold-deep);
  border: 1px solid rgb(173 127 73 / .58);
  border-radius: 50%;
  font-size: 10px;
}

.about-hero-media {
  min-width: 0;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--rule);
  background: #dfc3a4;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Meet Simo ---------- */
.about-founder {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.about-founder::after {
  content: '';
  position: absolute;
  top: 0;
  right: -14px;
  bottom: 0;
  width: 104px;
  opacity: .5;
  background: url('../assets/decor/side-sticker.png?v=2') right center / 100% 100% no-repeat;
  pointer-events: none;
}

.about-founder-grid {
  position: relative;
  z-index: 1;
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
  margin: 0 auto;
}

.about-founder-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(173 124 64 / .27);
  border-radius: 5px;
  background: var(--warm-sand);
  box-shadow: 0 14px 34px rgb(78 49 29 / .05);
}

.about-founder-media img {
  width: 100%;
  aspect-ratio: .88;
  object-fit: cover;
}

.about-founder-copy {
  max-width: 590px;
}

.about-eyebrow {
  margin: 0 0 15px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .17em;
  text-transform: uppercase;
}

.about-founder-copy h2,
.about-values h2,
.about-approach h2,
.about-cta h2 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(42px, 3.7vw, 57px)/.96 var(--display);
  letter-spacing: -.03em;
}

.about-founder-copy h2 {
  margin-bottom: 24px;
}

.about-founder-copy>p:not(.about-eyebrow) {
  max-width: 565px;
  margin: 0 0 21px;
  color: #5f402f;
  font: 18px/1.52 var(--display);
}

.about-signature {
  margin-top: 25px;
}

.about-signature-script {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font: italic 45px/1 var(--display);
  transform: rotate(-7deg);
  transform-origin: left center;
}

.about-signature small {
  display: block;
  margin-top: 9px;
  color: var(--espresso);
  font: 700 10px/1.2 var(--body);
  letter-spacing: .17em;
  text-transform: uppercase;
}

/* ---------- Values ---------- */
.about-values {
  padding: 72px 0 76px;
  border-bottom: 1px solid var(--rule);
  background-color: var(--warm-sand);
  background-image: linear-gradient(rgb(248 240 232 / .978), rgb(248 240 232 / .978)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
}

.about-section-heading .about-eyebrow {
  margin-bottom: 12px;
}

.about-section-heading>p {
  margin: 0 0 4px;
  color: #684a36;
  font: 17px/1.47 var(--display);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  border: 1px solid rgb(173 124 64 / .24);
  border-radius: 3px;
  background: rgb(255 252 248 / .5);
  text-align: center;
}

.about-value-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  object-fit: contain;
}

.about-value-card h3 {
  margin: 0 0 10px;
  font: 500 27px/1 var(--display);
}

.about-value-card p {
  max-width: 220px;
  margin: 0;
  color: #684a36;
  font: 16px/1.42 var(--display);
}

/* ---------- Approach / approved vertical editorial layout ---------- */
.about-approach {
  position: relative;
  padding: 86px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.about-approach-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(48px, 5.5vw, 82px);
}

.about-approach-intro {
  position: relative;
  min-width: 0;
  padding: 8px clamp(38px, 4vw, 64px) 4px 0;
  border-right: 1px solid var(--rule);
}

.about-approach-intro::before {
  content: '✦';
  display: block;
  width: 96px;
  margin: 0 0 22px;
  padding-bottom: 13px;
  color: var(--gold-deep);
  border-bottom: 1px solid rgb(173 127 73 / .52);
  font: 17px/1 var(--display);
}

.about-approach-intro .about-eyebrow {
  margin-bottom: 14px;
}

.about-approach-intro h2 {
  max-width: 560px;
  margin: 0;
  font: 500 clamp(52px, 5vw, 72px)/.93 var(--display);
  letter-spacing: -.035em;
}

.about-approach-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: #684a36;
  font: 27px/1.24 var(--display);
}

.about-approach-detail {
  max-width: 570px;
  margin: 27px 0 0;
  color: #684a36;
  font: 18px/1.52 var(--display);
}

.about-approach-media-wrap {
  position: relative;
  width: min(100%, 555px);
  margin-top: 42px;
  padding: 0 86px 0 32px;
}

.about-approach-arch {
  position: absolute;
  z-index: 0;
  top: 44px;
  bottom: 25px;
  left: 0;
  width: 108px;
  border: 1px solid rgb(173 127 73 / .22);
  border-right: 0;
  border-radius: 68px 0 0 0;
  opacity: .8;
}

.about-approach-arch::before,
.about-approach-arch::after {
  content: '';
  position: absolute;
  left: 17px;
  width: 72px;
  height: 1px;
  background: rgb(173 127 73 / .18);
  box-shadow: 0 10px 0 rgb(173 127 73 / .12), 0 20px 0 rgb(173 127 73 / .08);
}

.about-approach-arch::before {
  top: 94px;
  transform: rotate(58deg);
  transform-origin: left center;
}

.about-approach-arch::after {
  bottom: 84px;
  transform: rotate(-58deg);
  transform-origin: left center;
}

.about-approach-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(173 124 64 / .28);
  border-radius: 3px;
  background: var(--warm-sand);
  box-shadow: 0 18px 34px rgb(78 49 29 / .05);
}

.about-approach-media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: center;
}

.about-approach-note {
  position: absolute;
  z-index: 2;
  right: 102px;
  bottom: 193px;
  width: 153px;
  margin: 0;
  color: #5d4333;
  font: italic 16px / 1.38 "Segoe Print", "Bradley Hand", cursive;
  transform: rotate(-8deg);
}

.about-approach-timeline {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 0 0 0 4px;
}

.about-approach-timeline::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 64px;
  bottom: 64px;
  left: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0, rgb(173 127 73 / .42) 7%, rgb(173 127 73 / .42) 93%, transparent 100%);
}

.about-approach-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 158px;
}

.about-approach-step:not(:last-child)::after {
  content: '◆';
  position: absolute;
  z-index: 3;
  left: 52px;
  bottom: -8px;
  color: var(--gold-deep);
  background: var(--journey);
  font-size: 10px;
  line-height: 16px;
}

.about-approach-icon-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  background: var(--journey);
}

.about-approach-icon {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.about-approach-step-copy {
  min-width: 0;
  padding: 4px 0;
}

.about-approach-number {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font: 700 12px/1 var(--body);
  letter-spacing: .18em;
}

.about-approach-step h3 {
  margin: 0 0 10px;
  font: 500 clamp(31px, 3vw, 42px)/.96 var(--display);
  letter-spacing: -.02em;
}

.about-approach-step p {
  max-width: 390px;
  margin: 0;
  color: #684a36;
  font: 19px/1.38 var(--display);
}

/* ---------- Traveler story ---------- */
.about-story {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
  background-color: var(--warm-sand);
  background-image: linear-gradient(rgb(248 240 232 / .98), rgb(248 240 232 / .98)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.about-story-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
  margin: 0 auto;
}

.about-story-copy blockquote {
  max-width: 570px;
  margin: 0 0 27px;
  padding: 0;
  color: var(--ink);
  font: italic 31px/1.15 var(--display);
}

.about-story-copy blockquote::before {
  display: none;
}

.about-story-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.about-story-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.about-story-author strong,
.about-story-author span {
  display: block;
}

.about-story-author strong {
  margin-bottom: 3px;
  font: 700 11px/1.2 var(--body);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-story-author span {
  color: #684a36;
  font: 15px/1.2 var(--display);
}

.about-story-dots {
  display: flex;
  gap: 10px;
  margin-top: 29px;
}

.about-story-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
}

.about-story-dot.is-active {
  background: var(--gold-deep);
}

.about-story-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(173 124 64 / .27);
  border-radius: 5px;
  background: #d5aa75;
}

.about-story-media img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
}

/* ---------- CTA ---------- */
.about-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  border-bottom: 1px solid var(--rule);
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .982), rgb(251 246 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
  text-align: center;
}

.about-cta::before,
.about-cta::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 116px;
  opacity: .4;
  background: url('../assets/decor/side-sticker.png?v=2') center / 100% 100% no-repeat;
  pointer-events: none;
}

.about-cta::before {
  left: -14px;
}

.about-cta::after {
  right: -14px;
  transform: scaleX(-1);
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.about-cta-mark {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 29px;
  line-height: 1;
}

.about-cta h2 {
  margin-bottom: 13px;
}

.about-cta-copy {
  max-width: 610px;
  margin: 0 auto 25px;
  color: #684a36;
  font: 17px/1.45 var(--display);
}

.about-cta .button {
  min-width: 220px;
}

.about-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #684a36;
  font: 15px/1.2 var(--display);
}

.about-page-body .footer-main {
  padding-top: 58px;
}

@media (max-width: 1080px) {
  .about-hero {
    min-height: 550px;
  }

  .about-hero-media {
    min-height: 550px;
  }

  .about-hero-copy {
    padding-right: 52px;
  }

  .about-founder-grid {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: 54px;
  }

  .about-value-card {
    min-height: 220px;
    padding-inline: 18px;
  }

  .about-approach-layout {
    gap: 44px;
  }

  .about-approach-intro {
    padding-right: 38px;
  }

  .about-approach-intro h2 {
    font-size: clamp(50px, 5vw, 62px);
  }

  .about-approach-media-wrap {
    padding-right: 58px;
  }

  .about-approach-step {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 22px;
    min-height: 148px;
  }

  .about-approach-timeline::before {
    left: 53px;
  }

  .about-approach-step:not(:last-child)::after {
    left: 48px;
  }

  .about-approach-icon-wrap {
    width: 108px;
    height: 108px;
  }

  .about-approach-icon {
    width: 100px;
    height: 100px;
  }

  .about-story-grid {
    grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr);
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .about-hero-copy {
    padding: 58px 40px;
  }

  .about-hero h1 {
    font-size: clamp(54px, 7.2vw, 70px);
  }

  .about-founder::after,
  .about-cta::before,
  .about-cta::after {
    display: none;
  }

  .about-founder-grid {
    width: min(100% - 48px, 1180px);
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: 38px;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .about-approach-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-approach-intro {
    padding-right: 0;
    border-right: 0;
  }

  .about-approach-lead,
  .about-approach-detail {
    max-width: 650px;
  }

  .about-approach-media-wrap {
    width: min(100%, 620px);
  }

  .about-approach-timeline {
    width: min(100%, 720px);
  }


  .about-story-grid {
    width: min(100% - 48px, 1180px);
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .about-story-copy blockquote {
    font-size: 26px;
  }
}

@media (max-width: 720px) {
  .about-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    width: var(--container);
    justify-content: flex-start;
    margin: 0 auto;
    padding: 48px 0 44px;
  }

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

  .about-hero-subtitle {
    font-size: 23px;
  }

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

  .about-hero-media {
    min-height: 0;
    height: 420px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .about-founder,
  .about-values,
  .about-approach,
  .about-story,
  .about-cta {
    padding-block: 54px;
  }

  .about-founder-grid {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-founder-media {
    max-width: 480px;
  }

  .about-founder-copy h2,
  .about-values h2,
  .about-approach h2,
  .about-cta h2 {
    font-size: clamp(39px, 10.5vw, 52px);
  }

  .about-founder-copy>p:not(.about-eyebrow) {
    font-size: 17px;
  }

  .about-section-heading {
    margin-bottom: 31px;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .about-approach-intro::before {
    margin-bottom: 18px;
  }

  .about-approach-intro h2 {
    font-size: clamp(44px, 12vw, 56px);
  }

  .about-approach-lead {
    margin-top: 22px;
    font-size: 23px;
  }

  .about-approach-detail {
    margin-top: 20px;
    font-size: 17px;
  }

  .about-approach-media-wrap {
    margin-top: 34px;
    padding: 0;
  }

  .about-approach-arch {
    display: none;
  }

  .about-approach-note {
    right: 16px;
    bottom: 16px;
    width: 132px;
    padding: 9px 12px;
    background: rgb(250 245 240 / .88);
    font-size: 17px;
  }

  .about-approach-timeline {
    gap: 12px;
  }

  .about-approach-timeline::before {
    top: 48px;
    bottom: 48px;
    left: 43px;
  }

  .about-approach-step {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 20px;
    min-height: 128px;
  }

  .about-approach-step:not(:last-child)::after {
    left: 38px;
    bottom: -10px;
  }

  .about-approach-icon-wrap {
    width: 88px;
    height: 88px;
  }

  .about-approach-icon {
    width: 82px;
    height: 82px;
  }

  .about-approach-step h3 {
    font-size: 31px;
  }

  .about-approach-step p {
    max-width: 100%;
    font-size: 17px;
  }


  .about-story-grid {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story-copy blockquote {
    max-width: 100%;
    font-size: 28px;
  }

  .about-story-media {
    order: -1;
  }

  .about-cta {
    padding-inline: 0;
  }

  .about-page-body .footer-main {
    padding-top: 50px;
  }
}

/* =========================================================
   CONTACT PAGE v7 — approved hybrid reconstruction
   Classic & Clean hero + Visual / Immersive contact layout
   Scoped entirely to .contact-page-body.
   ========================================================= */

.contact-page-body {
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.contact-page-body .site-nav {
  position: relative;
  z-index: 20;
}

.contact-page-body .nav-links {
  gap: 28px;
}

.contact-page-body .nav-links .is-active {
  position: relative;
  color: var(--gold-deep);
}

.contact-page-body .nav-links .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .62;
}

/* ---------- Hero: compact Classic & Clean composition ---------- */
.contact-hero {
  width: var(--container);
  min-height: 438px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .985), rgb(251 246 240 / .985)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.contact-hero-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 58px 56px 54px 0;
}

.contact-hero-copy-inner {
  width: min(100%, 500px);
}

.contact-kicker,
.contact-eyebrow,
.contact-direct-kicker {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font: 500 clamp(52px, 4.6vw, 72px)/.93 var(--display);
  letter-spacing: -.042em;
}

.contact-hero-intro {
  max-width: 455px;
  margin: 18px 0 22px;
  color: #624431;
  font: 19px/1.42 var(--display);
}

.contact-signature-block {
  display: inline-flex;
  min-width: 164px;
  flex-direction: column;
  align-items: center;
  margin-left: 82px;
  color: var(--ink);
}

.contact-signature-script {
  margin-bottom: 2px;
  color: #a97a45;
  font: italic 400 44px/.86 var(--display);
  transform: rotate(-4deg);
}

.contact-signature-block span:last-child {
  font: 15px/1.25 var(--display);
}

.contact-hero-media {
  min-height: 438px;
  margin: 0;
  overflow: hidden;
  background: #d8bd9f;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.95) contrast(1.01) brightness(1.015);
}

/* ---------- Get in touch: flat Visual / Immersive composition ---------- */
.contact-touch {
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--rule);
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .984), rgb(250 245 240 / .984)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.contact-touch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, .72fr);
  align-items: stretch;
  gap: 42px;
}

.contact-form-panel,
.contact-direct-panel,
.contact-direct-card {
  min-width: 0;
}

.contact-form-panel,
.contact-direct-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-panel {
  padding: 0 42px 0 0;
}

.contact-section-heading {
  margin-bottom: 24px;
}

.contact-section-heading .contact-eyebrow {
  display: none;
}

.contact-section-heading h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font: 500 clamp(30px, 2.7vw, 39px)/1 var(--display);
  letter-spacing: -.024em;
}

.contact-section-heading > p:last-child {
  max-width: 570px;
  margin: 0;
  color: #604635;
  font: 16px/1.42 var(--display);
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgb(127 91 56 / .22);
  border-radius: 0;
  background: rgb(255 252 248 / .55);
  font: 14px/1.35 var(--display);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.contact-form input {
  height: 42px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #866b56;
  opacity: .85;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgb(173 127 73 / .72);
  background: rgb(255 254 251 / .9);
  box-shadow: 0 0 0 3px rgb(200 161 110 / .08);
}

.contact-form-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 2px;
}

.contact-form-actions .button {
  min-width: 146px;
  min-height: 42px;
  padding-inline: 19px;
  font-size: 14px;
  box-shadow: none;
}

.contact-privacy-note {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: #755a47;
  font: 12px/1.4 var(--display);
}

.contact-privacy-note::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: .08em;
  color: var(--espresso);
  font-size: 7px;
}

.contact-direct-panel {
  position: relative;
  padding-left: 34px;
  border-left: 1px solid var(--rule);
}

.contact-direct-card {
  position: static;
  padding: 0;
}

.contact-direct-kicker {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-direct-card h2 {
  display: none;
}

.contact-direct-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-direct-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 0;
  border: 0;
  color: #5e4432;
  font: 14px/1.38 var(--display);
}

.contact-direct-icon {
  grid-row: 1 / span 2;
  width: 26px;
  height: 26px;
  color: var(--gold-deep);
}

.contact-direct-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-direct-label {
  color: var(--ink);
  font: 600 15px/1.2 var(--display);
  letter-spacing: 0;
  text-transform: none;
}

.contact-direct-list a,
.contact-direct-list li > span:last-child {
  grid-column: 2;
  color: #5e4432;
}

.contact-direct-list a:hover {
  color: var(--gold-deep);
}

.contact-direct-mini-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 0;
  border: 0;
}

.contact-direct-mini-card img {
  width: 72px;
  height: 72px;
  border: 1px solid rgb(126 86 46 / .14);
  border-radius: 50%;
  object-fit: cover;
}

.contact-direct-mini-card strong {
  display: block;
  margin: 0 0 2px;
  color: var(--ink);
  font: italic 500 23px/1.05 var(--display);
}

.contact-direct-mini-card p {
  margin: 0;
  color: #684b37;
  font: 12px/1.35 var(--display);
}

.contact-direct-mini-card a {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold-deep);
  font: 700 10px/1.2 var(--body);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-page-body .footer-main {
  grid-template-columns: 1.25fr .92fr .92fr .92fr 1.1fr;
}

@media (max-width: 1040px) {
  .contact-page-body .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .contact-hero {
    grid-template-columns: minmax(0, .9fr) minmax(410px, 1.1fr);
  }

  .contact-signature-block {
    margin-left: 56px;
  }

  .contact-touch-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(270px, .75fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .contact-hero {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    padding: 52px 24px 42px;
  }

  .contact-hero-copy-inner {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .contact-hero-media {
    min-height: 390px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .contact-touch-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-form-panel {
    padding-right: 0;
  }

  .contact-direct-panel {
    padding: 30px 0 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .contact-page-body .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-page-body .footer-brand,
  .contact-page-body .newsletter {
    grid-column: span 3;
  }
}

@media (max-width: 720px) {
  .contact-page-body .nav-links .is-active::after {
    display: none;
  }

  .contact-hero-copy {
    padding: 46px 20px 36px;
  }

  .contact-hero h1 {
    max-width: 420px;
    font-size: clamp(50px, 14vw, 68px);
  }

  .contact-hero-intro {
    max-width: 420px;
    font-size: 18px;
  }

  .contact-signature-block {
    margin-left: 42px;
  }

  .contact-hero-media {
    min-height: 300px;
  }

  .contact-touch {
    padding: 42px 0 54px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-direct-mini-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .contact-direct-mini-card img {
    width: 64px;
    height: 64px;
  }

  .contact-page-body .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-body .footer-brand,
  .contact-page-body .newsletter {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   PRIVATE JOURNEYS LISTING PAGE — approved proposal 01
   Scoped to .journeys-page-body. Shared tokens/header/footer remain global.
   ========================================================= */

.sr-only {
  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;
}

.journeys-page-body {
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.journeys-page-body .site-nav {
  position: relative;
  z-index: 30;
}

.journeys-page-body .nav-links {
  gap: 27px;
}

.journeys-page-body .nav-links .is-active {
  position: relative;
  color: var(--ink);
}

.journeys-page-body .nav-links .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--gold-deep);
  opacity: .7;
}

/* ---------- hero ---------- */
.journeys-listing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  min-height: 454px;
  border-bottom: 1px solid var(--rule);
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .982), rgb(251 246 240 / .982)), var(--paper);
  background-size: auto, 560px 560px;
}

.journeys-listing-hero-copy {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 58px 42px 54px max(40px, calc((100vw - 1180px) / 2));
}

.journeys-listing-hero-copy-inner {
  width: min(100%, 560px);
}

.journeys-listing-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold-deep);
}

.journeys-listing-ornament span {
  font-size: 17px;
  line-height: 1;
}

.journeys-listing-ornament i {
  display: block;
  width: 68px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.journeys-listing-kicker {
  margin: 0 0 13px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.journeys-listing-hero h1 {
  max-width: 550px;
  margin: 0;
  color: var(--ink);
  font: 500 clamp(58px, 5.35vw, 82px)/.91 var(--display);
  letter-spacing: -.045em;
}

.journeys-listing-lead {
  max-width: 520px;
  margin: 20px 0 14px;
  color: var(--ink);
  font: 25px/1.18 var(--display);
}

.journeys-listing-intro {
  max-width: 535px;
  margin: 0;
  color: #644a38;
  font: 17px/1.48 var(--display);
}

.journeys-listing-hero-media {
  position: relative;
  min-width: 0;
  min-height: 454px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--rule);
  background: #d9b994;
}

.journeys-listing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(.9) contrast(.99) brightness(1.01);
}

.journeys-listing-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(74 42 24 / .08), transparent 23%);
}

.journeys-listing-hero-media figcaption {
  position: absolute;
  z-index: 2;
  top: 61px;
  right: 50px;
  color: #40291d;
  font: italic 24px/1.03 var(--display);
  text-align: center;
  transform: rotate(-5deg);
  text-shadow: 0 1px 0 rgb(255 247 235 / .5);
}

/* ---------- filters ---------- */
.journeys-catalog {
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--rule);
}

.journeys-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 115px;
  align-items: stretch;
  min-height: 76px;
  margin: 0 0 28px;
  border: 1px solid rgb(157 111 66 / .21);
  background: rgb(255 252 247 / .57);
}

.journeys-filter-field {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px 14px 13px 18px;
  border-right: 1px solid rgb(157 111 66 / .18);
  cursor: pointer;
}

.journeys-filter-icon {
  color: var(--gold-deep);
  font: 25px/1 var(--display);
  text-align: center;
}

.journeys-filter-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.journeys-filter-copy strong,
.journeys-filter-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journeys-filter-copy strong {
  color: var(--ink);
  font: 500 15px/1.15 var(--display);
}

.journeys-filter-copy small {
  color: #6c503c;
  font: 14px/1.2 var(--display);
}

.journeys-filter-field select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.journeys-filter-field::after {
  content: '⌄';
  grid-column: 3;
  grid-row: 1;
  color: var(--gold-deep);
  font: 18px/1 var(--display);
  text-align: center;
  pointer-events: none;
}

.journeys-result-count {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px;
  color: var(--gold-deep);
  font: 15px/1.2 var(--display);
  white-space: nowrap;
}

/* ---------- cards ---------- */
.journeys-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.journeys-listing-card {
  display: flex;
  min-width: 0;
  min-height: 506px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(157 111 66 / .22);
  border-radius: 3px;
  background: rgb(255 252 247 / .5);
  box-shadow: 0 10px 24px rgb(73 48 35 / .025);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.journeys-listing-card:hover {
  transform: translateY(-3px);
  border-color: rgb(157 111 66 / .38);
  box-shadow: 0 16px 30px rgb(73 48 35 / .065);
}

.journeys-listing-card[hidden] {
  display: none !important;
}

.journeys-listing-card figure {
  margin: 0;
  overflow: hidden;
  background: #d9b994;
}

.journeys-listing-card figure img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform .45s ease;
}

.journeys-listing-card:hover figure img {
  transform: scale(1.025);
}

.journeys-listing-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 20px 18px;
}

.journeys-listing-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font: 500 25px/1.04 var(--display);
  letter-spacing: -.02em;
}

.journeys-listing-meta {
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: #654a36;
  font: 600 15px/1.35 var(--body);
}

.journeys-listing-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.journeys-listing-meta li > span[aria-hidden="true"] {
  width: 17px;
  flex: 0 0 17px;
  color: var(--gold-deep);
  font: 17px/1 var(--display);
  text-align: center;
}

.journeys-listing-meta-copy {
  min-width: 0;
}

.journeys-listing-card-body > p {
  margin: 0 0 17px;
  color: #674d3a;
  font: 15px/1.38 var(--display);
}

.journeys-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 43px;
  margin-top: auto;
  color: var(--ink);
  border: 1px solid rgb(173 127 73 / .58);
  border-radius: 2px;
  background: rgb(255 251 246 / .42);
  font: 15px/1 var(--display);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.journeys-card-cta span {
  color: var(--gold-deep);
  font-size: 22px;
  line-height: .7;
}

.journeys-card-cta:hover {
  color: #fff3dc;
  border-color: var(--espresso);
  background: var(--espresso);
}

.journeys-card-cta:hover span {
  color: #efd5a6;
}

.journeys-listing-art {
  grid-column: 2 / 4;
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-height: 340px;
  padding: 36px 20px 2px;
}

.journeys-listing-art img {
  width: min(100%, 560px);
  mix-blend-mode: multiply;
  opacity: .78;
}

.journeys-empty-state {
  margin: 60px auto 20px;
  color: #6d513d;
  font: italic 22px/1.4 var(--display);
  text-align: center;
}

/* ---------- CTA ---------- */
.journeys-listing-cta {
  position: relative;
  overflow: hidden;
  padding: 48px 0 42px;
  border-bottom: 1px solid var(--rule);
  background-color: var(--warm-sand);
  background-image: linear-gradient(rgb(248 240 232 / .975), rgb(248 240 232 / .975)), var(--paper);
  background-size: auto, 560px 560px;
  text-align: center;
}

.journeys-listing-cta::before,
.journeys-listing-cta::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 104px;
  opacity: .66;
  background: url('../assets/decor/side-sticker.png?v=2') center / 100% 100% no-repeat;
  pointer-events: none;
}

.journeys-listing-cta::before { left: 0; }
.journeys-listing-cta::after { right: 0; transform: scaleX(-1); }

.journeys-listing-cta .container {
  position: relative;
  z-index: 1;
}

.journeys-cta-mark {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 28px;
  line-height: 1;
}

.journeys-listing-cta h2 {
  margin: 0 0 8px;
  font: 500 clamp(40px, 3.8vw, 54px)/1 var(--display);
  letter-spacing: -.035em;
}

.journeys-listing-cta p {
  margin: 0 auto 17px;
  color: #644a38;
  font: 17px/1.4 var(--display);
}

.journeys-listing-cta .button {
  min-width: 196px;
}

.journeys-whatsapp-link {
  display: block;
  width: fit-content;
  margin: 13px auto 0;
  color: #684c38;
  font: 14px/1.25 var(--display);
}

.journeys-whatsapp-link:hover {
  color: var(--gold-deep);
}

.journeys-page-body .footer-main {
  grid-template-columns: 1.25fr .92fr .92fr .92fr 1.1fr;
}

@media (max-width: 1120px) {
  .journeys-page-body .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .journeys-listing-grid {
    gap: 18px;
  }

  .journeys-listing-card h3 {
    font-size: 23px;
  }
}

@media (max-width: 960px) {
  .journeys-listing-hero {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }

  .journeys-listing-hero-copy {
    padding-left: 34px;
  }

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

  .journeys-filter-field:nth-of-type(2) {
    border-right: 0;
  }

  .journeys-filter-field:nth-of-type(1),
  .journeys-filter-field:nth-of-type(2) {
    border-bottom: 1px solid rgb(157 111 66 / .18);
  }

  .journeys-result-count {
    grid-column: 1 / -1;
    min-height: 45px;
    border-top: 1px solid rgb(157 111 66 / .18);
  }

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

  .journeys-listing-art {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .journeys-page-body .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .journeys-page-body .footer-brand,
  .journeys-page-body .newsletter {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .journeys-listing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .journeys-listing-hero-copy {
    padding: 48px 20px 42px;
  }

  .journeys-listing-hero-copy-inner {
    width: min(100%, 620px);
    margin: 0 auto;
  }

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

  .journeys-listing-lead {
    font-size: 22px;
  }

  .journeys-listing-hero-media {
    min-height: 330px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .journeys-listing-hero-media figcaption {
    top: 30px;
    right: 24px;
    font-size: 20px;
  }

  .journeys-catalog {
    padding-top: 16px;
  }

  .journeys-filter-bar {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .journeys-filter-field,
  .journeys-filter-field:nth-of-type(2) {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgb(157 111 66 / .18);
  }

  .journeys-filter-field:nth-of-type(4) {
    border-bottom: 0;
  }

  .journeys-listing-grid {
    grid-template-columns: 1fr;
  }

  .journeys-listing-card {
    min-height: 0;
  }

  .journeys-listing-card figure img {
    height: min(64vw, 310px);
  }

  .journeys-listing-art {
    grid-column: auto;
    min-height: 230px;
    padding-top: 18px;
  }

  .journeys-listing-cta::before,
  .journeys-listing-cta::after {
    display: none;
  }

  .journeys-page-body .nav-links .is-active::after {
    display: none;
  }

  .journeys-page-body .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .journeys-page-body .footer-brand,
  .journeys-page-body .newsletter {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   JOURNEYS FILTER DROPDOWNS v2
   Fully custom UI; native <select> remains only as the form/state source.
   ========================================================= */

.journeys-filter-field {
  isolation: isolate;
}

.journeys-filter-field .journeys-native-select,
.journeys-filter-field > select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.journeys-filter-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.journeys-filter-trigger:focus-visible {
  outline: 1px solid var(--gold-deep);
  outline-offset: -4px;
}

.journeys-filter-field::after {
  z-index: 3;
  transition: transform .22s ease, color .22s ease;
}

.journeys-filter-field.is-open::after {
  color: var(--espresso);
  transform: rotate(180deg);
}

.journeys-select-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  left: -1px;
  min-width: calc(100% + 2px);
  max-height: 292px;
  padding: 7px;
  overflow-y: auto;
  color: var(--ink);
  border: 1px solid rgb(141 95 49 / .27);
  border-radius: 3px;
  background-color: #fbf6f0;
  background-image: linear-gradient(rgb(251 246 240 / .985), rgb(251 246 240 / .985)), var(--paper);
  background-size: auto, 560px 560px;
  box-shadow: 0 18px 38px rgb(62 38 23 / .13), 0 2px 8px rgb(62 38 23 / .05);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-7px);
  transform-origin: 50% 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .2s ease, visibility .2s linear;
}

.journeys-filter-field.is-open .journeys-select-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.journeys-select-option {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  color: #5a3e2c;
  border: 0;
  border-bottom: 1px solid rgb(141 95 49 / .10);
  border-radius: 2px;
  background: transparent;
  text-align: left;
  font: 16px/1.2 var(--display);
  cursor: pointer;
  transition: color .16s ease, background .16s ease, padding-left .16s ease;
}

.journeys-select-option:last-child {
  border-bottom: 0;
}

.journeys-select-option::after {
  content: '✦';
  flex: 0 0 auto;
  color: var(--gold-deep);
  font: 9px/1 var(--body);
  opacity: 0;
  transform: scale(.65);
  transition: opacity .16s ease, transform .16s ease;
}

.journeys-select-option:hover,
.journeys-select-option:focus-visible {
  color: var(--espresso);
  outline: 0;
  background: rgb(200 161 110 / .10);
  padding-left: 16px;
}

.journeys-select-option.is-selected,
.journeys-select-option[aria-selected="true"] {
  color: var(--espresso);
  background: rgb(200 161 110 / .14);
}

.journeys-select-option.is-selected::after,
.journeys-select-option[aria-selected="true"]::after {
  opacity: 1;
  transform: scale(1);
}

.journeys-select-menu::-webkit-scrollbar {
  width: 7px;
}

.journeys-select-menu::-webkit-scrollbar-track {
  background: transparent;
}

.journeys-select-menu::-webkit-scrollbar-thumb {
  border: 2px solid #fbf6f0;
  border-radius: 99px;
  background: rgb(173 127 73 / .55);
}

/* The illustration file itself now has alpha. No cream rectangle should ever
   be introduced by the layout shell. */
.journeys-listing-art,
.journeys-listing-art img {
  background: transparent !important;
}

.journeys-listing-art img {
  mix-blend-mode: normal;
}

@media (max-width: 960px) {
  .journeys-select-menu {
    min-width: max(100%, 220px);
  }
}

@media (max-width: 720px) {
  .journeys-select-menu {
    right: -1px;
    left: -1px;
    min-width: 0;
  }

  .journeys-select-option {
    min-height: 48px;
    font-size: 17px;
  }
}


/* =========================================================
   SINGLE JOURNEY PAGE — approved right-sidebar editorial concept
   Scoped to .single-journey-page-body.
   Built on the existing AlloMorocco design tokens and shared components.
   ========================================================= */

.single-journey-page-body {
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.single-journey-page-body .site-nav {
  position: relative;
  z-index: 40;
}

.single-journey-page-body .nav-links {
  gap: 27px;
}

.single-journey-page-body .nav-links .is-active {
  position: relative;
  color: var(--ink);
}

.single-journey-page-body .nav-links .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--gold-deep);
  opacity: .7;
}

/* ---------- hero ---------- */
.single-journey-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  min-height: 488px;
  border-bottom: 1px solid var(--rule);
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .982), rgb(251 246 240 / .982)), var(--paper);
  background-size: auto, 560px 560px;
}

.single-journey-hero-copy {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 54px 44px 52px max(40px, calc((100vw - 1180px) / 2));
}

.single-journey-hero-copy-inner {
  width: min(100%, 545px);
}

.single-journey-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #78593f;
  font: 14px/1 var(--display);
}

.single-journey-back span {
  color: var(--gold-deep);
  font-size: 18px;
}

.single-journey-back:hover {
  color: var(--gold-deep);
}

.single-journey-kicker,
.single-journey-section-kicker {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font: 700 11px/1.2 var(--body);
  letter-spacing: .21em;
  text-transform: uppercase;
}

.single-journey-hero h1 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(57px, 5.1vw, 79px)/.91 var(--display);
  letter-spacing: -.045em;
}

.single-journey-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 22px;
  color: #523929;
  font: 18px/1.25 var(--display);
}

.single-journey-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.single-journey-hero-meta b {
  color: var(--gold-deep);
  font: 22px/1 var(--display);
}

.single-journey-hero-description {
  max-width: 520px;
  margin: 20px 0 0;
  color: #604634;
  font: 17px/1.48 var(--display);
}

.single-journey-script,
.single-journey-script-note,
.single-journey-testimonial-art > p {
  color: #b17f48;
  font: italic 26px/1.03 var(--display);
}

.single-journey-script {
  width: fit-content;
  margin: 25px 0 0 8px;
  transform: rotate(-3deg);
}

.single-journey-script span {
  display: inline-block;
  margin-left: 34px;
}

.single-journey-hero-media {
  position: relative;
  min-width: 0;
  min-height: 488px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--rule);
  background: #c79d73;
}

.single-journey-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(.92) contrast(.99) brightness(1.01);
}

.single-journey-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(74 42 24 / .08), transparent 20%);
}

.single-journey-hero-media figcaption {
  position: absolute;
  z-index: 2;
  top: 75px;
  right: 36px;
  padding: 13px 15px;
  color: #f9ead5;
  border-right: 1px solid rgb(250 234 211 / .55);
  font: 700 11px/1.55 var(--body);
  letter-spacing: .16em;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 1px 7px rgb(49 29 17 / .32);
}

/* ---------- gallery strip ---------- */
.single-journey-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 150px;
  border-bottom: 1px solid var(--rule);
  background: var(--hero);
}

.single-journey-gallery figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  background: #d7b28b;
}

.single-journey-gallery figure img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  transition: transform .45s ease;
}

.single-journey-gallery figure:hover img {
  transform: scale(1.025);
}

.single-journey-gallery-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  color: #674a35;
  font: 15px/1.2 var(--display);
  text-align: center;
}

.single-journey-gallery-action:hover {
  color: var(--gold-deep);
}

.single-journey-play {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding-left: 2px;
  color: var(--gold-deep);
  border: 1px solid rgb(173 127 73 / .68);
  border-radius: 50%;
  font-size: 12px;
}

/* ---------- two-column page body ---------- */
.single-journey-content {
  padding: 54px 0 70px;
  border-bottom: 1px solid var(--rule);
}

.single-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 338px;
  gap: 44px;
  align-items: start;
}

.single-journey-main {
  min-width: 0;
}

.single-journey-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}

.single-journey-heading-row h2,
.single-journey-itinerary h2,
.single-journey-inclusion-card h2,
.single-journey-request-card h2,
.single-journey-aside-card h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
}

.single-journey-heading-row h2 {
  margin: 0;
  font-size: clamp(38px, 3.7vw, 50px);
  line-height: .98;
  letter-spacing: -.03em;
}

.single-journey-heading-row > p {
  max-width: 360px;
  margin: 0;
  color: #765842;
  font: italic 17px/1.35 var(--display);
  text-align: right;
}

.single-journey-highlights {
  padding: 2px 0 48px;
  border-bottom: 1px solid var(--rule);
}

.single-journey-highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
}

.single-journey-highlight-grid article {
  min-width: 0;
  padding: 0 17px;
  border-right: 1px solid var(--rule);
  text-align: center;
}

.single-journey-highlight-grid article:first-child {
  padding-left: 0;
}

.single-journey-highlight-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.single-journey-line-icon {
  display: block;
  min-height: 36px;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font: 34px/1 var(--display);
}

.single-journey-highlight-grid h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font: 500 18px/1.04 var(--display);
}

.single-journey-highlight-grid p {
  margin: 0;
  color: #6c513d;
  font: 13px/1.34 var(--display);
}

/* ---------- itinerary ---------- */
.single-journey-itinerary {
  padding: 48px 0 0;
}

.itinerary-heading-row {
  align-items: end;
  margin-bottom: 22px;
}

.single-journey-itinerary h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 54px);
  line-height: .96;
  letter-spacing: -.035em;
}

.single-journey-script-note {
  max-width: 280px !important;
  margin: 0 9px 6px 0 !important;
  text-align: center !important;
  transform: rotate(-3deg);
}

.single-journey-days {
  position: relative;
  border-top: 1px solid var(--rule);
}

.single-journey-day {
  position: relative;
  border-bottom: 1px solid var(--rule);
}

.single-journey-day-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 42px 60px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  min-height: 69px;
  padding: 8px 4px 8px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.single-journey-day-trigger:focus-visible {
  outline: 1px solid var(--gold-deep);
  outline-offset: -2px;
}

.single-journey-day-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff4df;
  border-radius: 50%;
  background: var(--gold-deep);
  font: 15px/1 var(--display);
}

.single-journey-day-label {
  color: #604532;
  font: 15px/1 var(--display);
}

.single-journey-day-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.single-journey-day-copy strong {
  color: var(--ink);
  font: 500 17px/1.12 var(--display);
}

.single-journey-day-copy small {
  overflow: hidden;
  color: #715540;
  font: 13px/1.25 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-journey-day-chevron {
  justify-self: end;
  color: var(--gold-deep);
  font: 22px/1 var(--display);
  transition: transform .24s ease;
}

.single-journey-day.is-open .single-journey-day-chevron {
  transform: rotate(180deg);
}

.single-journey-day-detail {
  height: 0;
  overflow: hidden;
  transition: height .34s cubic-bezier(.4, 0, .2, 1);
}

.single-journey-day-detail > div {
  padding: 0 44px 18px 112px;
}

.single-journey-day-detail p {
  max-width: 640px;
  margin: 0;
  color: #694e3a;
  font: 15px/1.5 var(--display);
}

/* ---------- support gallery ---------- */
.single-journey-support-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
}

.single-journey-support-gallery figure {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #d7b28b;
}

.single-journey-support-gallery img {
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.single-journey-support-gallery figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  color: #8e633a;
  background: rgb(251 246 240 / .9);
  font: italic 13px/1 var(--display);
  transform: rotate(-2deg);
}

/* ---------- inclusions ---------- */
.single-journey-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.single-journey-inclusion-card {
  min-width: 0;
  padding: 24px 25px 25px;
  border: 1px solid rgb(153 106 61 / .18);
  background: rgb(255 252 247 / .5);
}

.single-journey-inclusion-card h2 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  font-size: 27px;
  line-height: 1;
}

.single-journey-inclusion-card h2 span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--gold-deep);
  border: 1px solid rgb(173 127 73 / .55);
  border-radius: 50%;
  font: 18px/1 var(--display);
}

.single-journey-excluded h2 span {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-size: 25px;
  line-height: 1;
}

.single-journey-inclusion-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-journey-inclusion-card li {
  position: relative;
  padding-left: 19px;
  color: #654a36;
  font: 14px/1.33 var(--display);
}

.single-journey-included li::before,
.single-journey-excluded li::before {
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}

.single-journey-included li::before { content: '✓'; }
.single-journey-excluded li::before {
  content: '×';
  top: -1px;
  font: 18px/1 var(--display);
}

/* ---------- sidebar ---------- */
.single-journey-aside {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.single-journey-aside-sticky {
  position: sticky;
  top: 26px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.single-journey-request-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 39px 28px 28px;
  border: 1px solid rgb(157 111 66 / .22);
  background-color: #fbf6f0;
  background-image: linear-gradient(rgb(251 246 240 / .975), rgb(251 246 240 / .975)), var(--paper);
  background-size: auto, 560px 560px;
  box-shadow: 0 14px 34px rgb(73 48 35 / .055);
}

.single-journey-request-arch {
  position: absolute;
  top: -86px;
  left: 50%;
  width: 255px;
  height: 190px;
  border: 1px solid rgb(173 127 73 / .18);
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.single-journey-request-card > *:not(.single-journey-request-arch) {
  position: relative;
  z-index: 1;
}

.single-journey-request-card h2 {
  margin: 0;
  font-size: 43px;
  line-height: .91;
  letter-spacing: -.035em;
}

.single-journey-request-intro {
  margin: 13px 0 21px;
  color: #644a37;
  font: 16px/1.38 var(--display);
}

.single-journey-request-form {
  display: grid;
  gap: 14px;
}

.single-journey-request-form label,
.single-journey-form-field,
.single-journey-payment-field {
  position: relative;
  display: grid;
  gap: 7px;
}

.single-journey-request-form label > span,
.single-journey-form-label,
.single-journey-payment-field > span {
  color: #5d4230;
  font: 500 14px/1.1 var(--display);
}

.single-journey-request-form b,
.single-journey-form-label b {
  color: #a85d3d;
  font-weight: 500;
}

.single-journey-request-form input,
.single-journey-select-trigger,
.single-journey-payment-value {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgb(142 98 54 / .26);
  border-radius: 2px;
  background: rgb(255 253 250 / .85);
  font: 15px/1 var(--display);
}

.single-journey-request-form input:focus {
  outline: 0;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgb(200 161 110 / .10);
}

.single-journey-request-form input::placeholder {
  color: #9a806c;
}

.single-journey-request-form input[type="date"] {
  color-scheme: light;
}

.single-journey-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.single-journey-select-trigger i {
  color: var(--gold-deep);
  font: 18px/1 var(--display);
  transition: transform .2s ease;
}

.single-journey-form-field.is-open .single-journey-select-trigger i {
  transform: rotate(180deg);
}

.single-journey-select-trigger:focus-visible {
  outline: 1px solid var(--gold-deep);
  outline-offset: 2px;
}

.single-journey-select-menu {
  position: absolute;
  z-index: 25;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  padding: 6px;
  border: 1px solid rgb(142 98 54 / .28);
  border-radius: 2px;
  background-color: #fbf6f0;
  background-image: linear-gradient(rgb(251 246 240 / .985), rgb(251 246 240 / .985)), var(--paper);
  background-size: auto, 560px 560px;
  box-shadow: 0 16px 30px rgb(65 39 22 / .12);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .17s ease, transform .2s ease, visibility .2s linear;
}

.single-journey-form-field.is-open .single-journey-select-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.single-journey-select-menu button {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  color: #614632;
  border: 0;
  border-bottom: 1px solid rgb(142 98 54 / .09);
  border-radius: 2px;
  background: transparent;
  font: 15px/1.1 var(--display);
  text-align: left;
  cursor: pointer;
}

.single-journey-select-menu button:last-child { border-bottom: 0; }
.single-journey-select-menu button:hover,
.single-journey-select-menu button:focus-visible,
.single-journey-select-menu button.is-selected {
  color: var(--espresso);
  outline: 0;
  background: rgb(200 161 110 / .13);
}

.single-journey-select-menu button.is-selected::after {
  content: '✦';
  color: var(--gold-deep);
  font: 9px/1 var(--body);
}

.single-journey-payment-value {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5b4230;
  background: rgb(248 240 232 / .82);
}

.single-journey-payment-value span {
  color: var(--gold-deep);
}

.single-journey-submit {
  width: 100%;
  margin-top: 2px;
  border-radius: 2px;
  box-shadow: none;
}

.single-journey-secure-note {
  margin: 0;
  padding-top: 2px;
  color: #7b614e;
  font: 12px/1.4 var(--display);
  text-align: center;
}

.single-journey-secure-note span {
  display: inline-block;
  margin-right: 7px;
  color: var(--gold-deep);
}

.single-journey-aside-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 22px;
  border: 1px solid rgb(157 111 66 / .18);
  background: rgb(255 252 247 / .46);
}

.single-journey-aside-icon {
  color: var(--gold-deep);
  font: 34px/1 var(--display);
}

.single-journey-aside-card h3 {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: .98;
}

.single-journey-aside-card p {
  margin: 0 0 9px;
  color: #705440;
  font: 14px/1.35 var(--display);
}

.single-journey-aside-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--espresso);
  border-bottom: 1px solid rgb(173 127 73 / .5);
  font: 14px/1.3 var(--display);
}

.single-journey-aside-card a span { color: var(--gold-deep); }

.single-journey-custom-card {
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  padding: 0 18px 0 0;
  overflow: hidden;
}

.single-journey-custom-card img {
  width: 118px;
  height: 150px;
  object-fit: contain;
  object-position: left bottom;
}

/* ---------- testimonial ---------- */
.single-journey-testimonial {
  padding: 48px 0 46px;
  border-bottom: 1px solid var(--rule);
}

.single-journey-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 300px minmax(230px, .68fr);
  align-items: center;
  gap: 34px;
}

.single-journey-testimonial-copy blockquote {
  max-width: 650px;
  font-size: 20px;
}

.single-journey-testimonial-author {
  margin: 18px 0 0 34px;
  color: #5f4431;
  font: 14px/1.35 var(--display);
}

.single-journey-testimonial-author span {
  display: block;
  color: #82644e;
}

.single-journey-testimonial figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(157 111 66 / .2);
}

.single-journey-testimonial figure img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.single-journey-testimonial-art {
  position: relative;
  min-height: 185px;
  overflow: hidden;
}

.single-journey-testimonial-art > p {
  position: relative;
  z-index: 2;
  margin: 17px 0 0;
  text-align: center;
  transform: rotate(-4deg);
}

.single-journey-testimonial-art img {
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: 250px;
  max-width: none;
  opacity: .27;
  object-fit: contain;
}

.single-journey-page-body .footer-main {
  grid-template-columns: 1.25fr .92fr .92fr .92fr 1.1fr;
}

@media (max-width: 1120px) {
  .single-journey-page-body .nav-links { gap: 18px; font-size: 14px; }
  .single-journey-layout { grid-template-columns: minmax(0, 1fr) 315px; gap: 30px; }
  .single-journey-highlight-grid article { padding-inline: 12px; }
  .single-journey-request-card { padding-inline: 23px; }
}

@media (max-width: 960px) {
  .single-journey-hero { grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); }
  .single-journey-hero-copy { padding-left: 34px; }
  .single-journey-layout { grid-template-columns: 1fr; }
  .single-journey-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .single-journey-request-card { position: static; grid-column: 1 / -1; }
  .single-journey-custom-card { min-height: 150px; }
  .single-journey-page-body .footer-main { grid-template-columns: repeat(3, 1fr); }
  .single-journey-page-body .footer-brand,
  .single-journey-page-body .newsletter { grid-column: span 3; }
}

@media (max-width: 760px) {
  .single-journey-page-body .nav-links .is-active::after { display: none; }
  .single-journey-hero { grid-template-columns: 1fr; min-height: 0; }
  .single-journey-hero-copy { padding: 44px 20px 40px; }
  .single-journey-hero-copy-inner { width: min(100%, 620px); margin: 0 auto; }
  .single-journey-hero h1 { font-size: clamp(49px, 14vw, 70px); }
  .single-journey-hero-meta { display: grid; gap: 9px; }
  .single-journey-hero-media { min-height: 340px; border-top: 1px solid var(--rule); border-left: 0; }
  .single-journey-hero-media figcaption { top: 30px; right: 20px; }
  .single-journey-gallery { grid-template-columns: repeat(2, 1fr); }
  .single-journey-gallery figure img { height: 130px; }
  .single-journey-gallery .single-journey-gallery-button { height: 130px; }
  .single-journey-gallery-action { grid-column: 1 / -1; min-height: 84px; flex-direction: row; border-top: 1px solid var(--rule); }
  .single-journey-content { padding: 44px 0 56px; }
  .single-journey-heading-row { display: block; }
  .single-journey-heading-row > p { margin-top: 10px; text-align: left; }
  .single-journey-highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .single-journey-highlight-grid article { padding: 0 14px; border-right: 1px solid var(--rule); }
  .single-journey-highlight-grid article:nth-child(2n) { border-right: 0; }
  .single-journey-highlight-grid article:last-child { grid-column: 1 / -1; border-right: 0; }
  .itinerary-heading-row { display: block; }
  .single-journey-script-note { margin: 14px 0 0 !important; text-align: left !important; }
  .single-journey-day-trigger { grid-template-columns: 36px 50px minmax(0, 1fr) 22px; gap: 7px; min-height: 70px; }
  .single-journey-day-number { width: 30px; height: 30px; font-size: 13px; }
  .single-journey-day-copy strong { font-size: 16px; }
  .single-journey-day-copy small { display: none; }
  .single-journey-day-detail > div { padding: 0 12px 17px 93px; }
  .single-journey-support-gallery { grid-template-columns: repeat(2, 1fr); }
  .single-journey-support-gallery img { height: 130px; }
  .single-journey-inclusions { grid-template-columns: 1fr; }
  .single-journey-aside { grid-template-columns: 1fr; }
  .single-journey-request-card { grid-column: auto; }
  .single-journey-testimonial-grid { grid-template-columns: 1fr; gap: 25px; }
  .single-journey-testimonial figure img { height: 240px; }
  .single-journey-testimonial-art { min-height: 150px; }
  .single-journey-page-body .footer-main { grid-template-columns: repeat(2, 1fr); }
  .single-journey-page-body .footer-brand,
  .single-journey-page-body .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .single-journey-gallery figure img { height: 112px; }
  .single-journey-gallery .single-journey-gallery-button { height: 112px; }
  .single-journey-highlight-grid { grid-template-columns: 1fr; }
  .single-journey-highlight-grid article,
  .single-journey-highlight-grid article:nth-child(2n),
  .single-journey-highlight-grid article:last-child { grid-column: auto; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .single-journey-highlight-grid article:last-child { border-bottom: 0; }
  .single-journey-day-label { display: none; }
  .single-journey-day-trigger { grid-template-columns: 36px minmax(0, 1fr) 22px; }
  .single-journey-day-detail > div { padding-left: 43px; }
  .single-journey-support-gallery { grid-template-columns: 1fr 1fr; }
  .single-journey-inclusion-card { padding: 22px 20px; }
  .single-journey-request-card { padding: 34px 20px 24px; }
}


/* =========================================================
   SINGLE JOURNEY — GALLERY LIGHTBOX + COMPLETE STICKY ASIDE v4
   ========================================================= */

.single-journey-gallery-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}


.single-journey-gallery .single-journey-gallery-button {
  height: 165px;
}

.single-journey-support-gallery .single-journey-gallery-button {
  height: 152px;
}
.single-journey-gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
}

.single-journey-gallery-button:hover img,
.single-journey-gallery-button:focus-visible img {
  transform: scale(1.035);
  filter: saturate(.94) brightness(.96);
}

.single-journey-gallery-button:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: -2px;
}

.single-journey-gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff6e8;
  border: 1px solid rgb(255 246 232 / .62);
  border-radius: 50%;
  background: rgb(62 34 17 / .62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font: 19px/1 var(--display);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .22s ease, transform .22s ease;
}

.single-journey-gallery-button:hover .single-journey-gallery-zoom,
.single-journey-gallery-button:focus-visible .single-journey-gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.single-journey-support-gallery .single-journey-gallery-button img {
  height: 100%;
}

.single-journey-support-gallery figcaption {
  pointer-events: none;
}

.single-journey-lightbox[hidden] {
  display: none;
}

.single-journey-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
}

.single-journey-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(32 18 10 / .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.single-journey-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1240px, calc(100vw - 56px));
  height: min(820px, calc(100vh - 56px));
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
}

.single-journey-lightbox-figure {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.single-journey-lightbox-figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 26px 50px rgb(0 0 0 / .24));
}

.single-journey-lightbox-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
  padding: 12px 2px 0;
  color: #f3e5d2;
  font: 16px/1.3 var(--display);
}

.single-journey-lightbox-figure figcaption small {
  flex: 0 0 auto;
  color: #c8a16e;
  font: 11px/1.2 var(--body);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.single-journey-lightbox-close,
.single-journey-lightbox-nav {
  display: grid;
  place-items: center;
  color: #f7e7ca;
  border: 1px solid rgb(247 231 202 / .28);
  background: rgb(74 42 24 / .52);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.single-journey-lightbox-close:hover,
.single-journey-lightbox-nav:hover,
.single-journey-lightbox-close:focus-visible,
.single-journey-lightbox-nav:focus-visible {
  border-color: var(--gold);
  outline: 0;
  background: rgb(74 42 24 / .9);
}

.single-journey-lightbox-close {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font: 31px/1 var(--display);
}

.single-journey-lightbox-nav {
  width: 42px;
  height: 42px;
  justify-self: center;
  border-radius: 50%;
  font: 21px/1 var(--display);
}

.single-journey-lightbox-prev:hover { transform: translateX(-2px); }
.single-journey-lightbox-next:hover { transform: translateX(2px); }

body.single-journey-lightbox-open {
  overflow: hidden;
}

/* The entire sidebar follows as one composition so the request card never
   overlays the WhatsApp or customization cards. */
.single-journey-aside-sticky {
  z-index: 3;
}

@media (min-width: 961px) and (max-height: 859px) {
  .single-journey-aside-sticky {
    position: static;
  }
}

@media (max-width: 960px) {
  .single-journey-aside-sticky {
    position: static;
    display: contents;
  }
}

@media (max-width: 760px) {
  .single-journey-support-gallery .single-journey-gallery-button {
    height: 130px;
  }

  .single-journey-lightbox {
    padding: 14px;
  }

  .single-journey-lightbox-dialog {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .single-journey-lightbox-close {
    top: 5px;
    right: 5px;
  }

  .single-journey-lightbox-nav {
    width: 36px;
    height: 36px;
  }

  .single-journey-lightbox-figure figcaption {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .single-journey-gallery-zoom {
    right: 8px;
    bottom: 8px;
    width: 28px;
    height: 28px;
    opacity: 1;
    transform: none;
  }

  .single-journey-lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .single-journey-lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
  }

  .single-journey-lightbox-prev { left: 6px; }
  .single-journey-lightbox-next { right: 6px; }
  .single-journey-lightbox-prev:hover,
  .single-journey-lightbox-next:hover { transform: translateY(-50%); }
}


/* =========================================================
   PORTFOLIO PAGE — approved visual gallery direction
   Image-first composition; scoped to .portfolio-page-body.
   Shared AlloMorocco tokens/header/footer remain untouched.
   ========================================================= */

.portfolio-page-body {
  background-color: var(--journey);
  background-image: linear-gradient(rgb(250 245 240 / .982), rgb(250 245 240 / .982)), var(--paper);
  background-repeat: repeat;
  background-size: auto, 560px 560px;
}

.portfolio-page-body .site-nav { position: relative; z-index: 30; }
.portfolio-page-body .nav-links { gap: 22px; font-size: 14px; }
.portfolio-page-body .nav-links .is-active { position: relative; color: var(--gold-deep); }
.portfolio-page-body .nav-links .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

/* ---------- Full-bleed image hero ---------- */
.portfolio-hero {
  position: relative;
  min-height: 505px;
  overflow: hidden;
  color: #fff4e5;
  background: #442817;
  border-bottom: 1px solid rgb(105 76 53 / .24);
}

.portfolio-hero-image,
.portfolio-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-hero-image {
  object-position: center 56%;
  filter: saturate(.88) contrast(1.01) brightness(.86);
}

.portfolio-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(42 24 14 / .75) 0%, rgb(42 24 14 / .54) 27%, rgb(42 24 14 / .12) 52%, transparent 72%),
    linear-gradient(180deg, rgb(34 18 9 / .08), rgb(34 18 9 / .1));
  pointer-events: none;
}

.portfolio-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 505px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 66px 48px;
}

.portfolio-hero-copy { max-width: 500px; }
.portfolio-kicker,
.portfolio-hero-sub {
  text-transform: uppercase;
  letter-spacing: .26em;
}
.portfolio-kicker {
  margin: 0 0 22px;
  color: #f0ddc6;
  font: 700 11px/1.2 var(--body);
}
.portfolio-hero h1 {
  margin: 0;
  color: #fff6e9;
  font: 500 clamp(68px, 6vw, 98px)/.89 var(--display);
  letter-spacing: -.045em;
  text-shadow: 0 10px 30px rgb(30 14 4 / .22);
}
.portfolio-hero-rule {
  display: block;
  width: 68px;
  height: 1px;
  margin: 28px 0 22px;
  background: #d5ad6b;
}
.portfolio-hero-sub {
  margin: 0;
  color: #eedac1;
  font: 700 10px/1.35 var(--body);
}
.portfolio-hero-location {
  align-self: flex-end;
  margin: 0 4px 2px 0;
  color: #f3e6d4;
  font: 700 10px/1.2 var(--body);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.portfolio-hero-location span { color: #e2ba77; margin-right: 7px; }

/* ---------- Filters ---------- */
.portfolio-filter-shell {
  position: relative;
  z-index: 4;
  background-color: var(--hero);
  background-image: linear-gradient(rgb(251 246 240 / .985), rgb(251 246 240 / .985)), var(--paper);
  background-size: auto, 560px 560px;
}
.portfolio-filter-bar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.portfolio-filter-scroll {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}
.portfolio-filter {
  min-width: 72px;
  min-height: 38px;
  padding: 0 18px;
  color: #614735;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: 15px/1 var(--display);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.portfolio-filter:hover { color: var(--gold-deep); border-color: rgb(173 127 73 / .28); }
.portfolio-filter.is-active {
  color: #fff4df;
  border-color: var(--espresso);
  background: var(--espresso);
  box-shadow: 0 6px 16px rgb(53 24 4 / .1);
}
.portfolio-filter:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.portfolio-filter-note {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #78604d;
  font: 700 9px/1.25 var(--body);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.portfolio-filter-note span { width: 34px; height: 1px; background: var(--gold-deep); opacity: .7; }

/* ---------- Image-first mosaic ---------- */
.portfolio-mosaic {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
  padding: 16px 0 18px;
}
.portfolio-tile { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #dcc7af; }
.portfolio-tile-third { grid-column: span 4; aspect-ratio: 1.34; }
.portfolio-tile-wide { grid-column: span 8; aspect-ratio: 2.02; }
.portfolio-tile-narrow { grid-column: span 4; aspect-ratio: 1.01; }
.portfolio-tile-quarter { grid-column: span 3; aspect-ratio: .98; }

.portfolio-image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff5e6;
  border: 0;
  background: #d9c5af;
  cursor: zoom-in;
}
.portfolio-image-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgb(30 14 5 / .54) 100%);
  opacity: .76;
  transition: opacity .35s ease;
  pointer-events: none;
}
.portfolio-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.portfolio-image-button:hover img,
.portfolio-image-button:focus-visible img { transform: scale(1.035); filter: saturate(.93) contrast(1.02); }
.portfolio-image-button:hover::after { opacity: .9; }
.portfolio-image-button:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: -2px; }
.portfolio-tile-label {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 16px;
  color: #fff5e8;
  font: 700 10px/1.2 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgb(20 8 2 / .5);
}
.portfolio-zoom {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff4e4;
  border: 1px solid rgb(255 244 228 / .55);
  border-radius: 50%;
  background: rgb(52 27 13 / .5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font: 19px/1 var(--display);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .22s ease, transform .22s ease;
}
.portfolio-image-button:hover .portfolio-zoom,
.portfolio-image-button:focus-visible .portfolio-zoom { opacity: 1; transform: none; }

.portfolio-tile.is-filter-hidden { display: none; }
.portfolio-empty {
  grid-column: 1 / -1;
  margin: 52px 0 70px;
  color: #6f5542;
  font: italic 23px/1.4 var(--display);
  text-align: center;
}

/* ---------- Lower cinematic band ---------- */
.portfolio-banner {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  color: #fff5e6;
  border-top: 1px solid rgb(105 76 53 / .18);
  border-bottom: 1px solid rgb(105 76 53 / .18);
  background: #6d4125;
}
.portfolio-banner > img { object-position: center 57%; filter: saturate(.82) brightness(.85); }
.portfolio-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(48 26 13 / .56), transparent 52%, rgb(66 38 20 / .22));
}
.portfolio-banner-inner {
  position: relative;
  z-index: 2;
  min-height: 245px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.portfolio-banner-inner > p {
  margin: 0;
  color: #f3e4cf;
  font: 700 11px/1.7 var(--body);
  letter-spacing: .28em;
  text-transform: uppercase;
}
.portfolio-banner-inner > span {
  margin: 0 6px 0 auto;
  color: #f3dcc1;
  font: italic 35px/1.05 var(--display);
  text-align: right;
  transform: rotate(-3deg);
  text-shadow: 0 4px 18px rgb(32 13 3 / .28);
}
.portfolio-banner-inner em { font-size: 24px; }

/* ---------- Portfolio lightbox ---------- */
.portfolio-lightbox[hidden] { display: none; }
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}
.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(29 16 9 / .94);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}
.portfolio-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1420px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
}
.portfolio-lightbox-figure {
  min-width: 0;
  min-height: 0;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.portfolio-lightbox-figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 108px);
  max-height: calc(100dvh - 108px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 54px rgb(0 0 0 / .26));
}
.portfolio-lightbox-figure figcaption {
  display: flex;
  width: min(100%, 980px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 11px 3px 0;
  color: #f3e4d0;
  font: 17px/1.25 var(--display);
}
.portfolio-lightbox-figure small {
  color: #c9a36f;
  font: 700 10px/1.2 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  display: grid;
  place-items: center;
  color: #f5e5ce;
  border: 1px solid rgb(245 229 206 / .28);
  border-radius: 50%;
  background: rgb(74 42 24 / .5);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.portfolio-lightbox-close:hover,
.portfolio-lightbox-nav:hover,
.portfolio-lightbox-close:focus-visible,
.portfolio-lightbox-nav:focus-visible { outline: 0; border-color: var(--gold); background: rgb(74 42 24 / .9); }
.portfolio-lightbox-close { position: absolute; top: 0; right: 0; z-index: 3; width: 44px; height: 44px; font: 30px/1 var(--display); }
.portfolio-lightbox-nav { width: 42px; height: 42px; justify-self: center; font: 21px/1 var(--display); }
.portfolio-lightbox-prev:hover { transform: translateX(-2px); }
.portfolio-lightbox-next:hover { transform: translateX(2px); }
html.portfolio-lightbox-open,
body.portfolio-lightbox-open { overflow: hidden; }

.portfolio-page-body .footer-main { grid-template-columns: 1.25fr .92fr .92fr .92fr 1.1fr; }

@media (max-width: 1120px) {
  .portfolio-page-body .nav-links { gap: 14px; font-size: 13px; }
  .portfolio-page-body .nav-links .button { padding-inline: 18px; }
  .portfolio-filter-scroll { gap: 7px; }
  .portfolio-filter { min-width: auto; padding-inline: 14px; }
}

@media (max-width: 960px) {
  .portfolio-hero,
  .portfolio-hero-inner { min-height: 450px; }
  .portfolio-filter-bar { align-items: stretch; flex-direction: column; gap: 0; padding-block: 13px 12px; }
  .portfolio-filter-scroll { overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
  .portfolio-filter-scroll::-webkit-scrollbar { height: 4px; }
  .portfolio-filter-scroll::-webkit-scrollbar-thumb { background: rgb(173 127 73 / .35); }
  .portfolio-filter-note { padding: 8px 3px 0; }
  .portfolio-tile-third { grid-column: span 6; }
  .portfolio-tile-wide { grid-column: span 12; }
  .portfolio-tile-narrow { grid-column: span 6; }
  .portfolio-tile-quarter { grid-column: span 6; }
  .portfolio-page-body .footer-main { grid-template-columns: repeat(3,1fr); }
  .portfolio-page-body .footer-brand,
  .portfolio-page-body .newsletter { grid-column: span 3; }
}

@media (max-width: 720px) {
  .portfolio-page-body .nav-links .is-active::after { display: none; }
  .portfolio-hero { min-height: 510px; }
  .portfolio-hero-inner { min-height: 510px; align-items: flex-end; padding: 52px 0 44px; }
  .portfolio-hero-image { object-position: 60% center; }
  .portfolio-hero-shade { background: linear-gradient(180deg, rgb(31 16 8 / .08) 18%, rgb(31 16 8 / .76) 100%); }
  .portfolio-hero-copy { max-width: 370px; }
  .portfolio-hero h1 { font-size: clamp(62px, 18vw, 82px); }
  .portfolio-hero-location { position: absolute; top: 24px; right: 0; }
  .portfolio-filter-shell { position: sticky; top: 0; z-index: 18; }
  .portfolio-filter-bar { width: 100%; padding-inline: 20px; }
  .portfolio-filter-scroll { width: 100%; }
  .portfolio-filter-note { display: none; }
  .portfolio-mosaic { width: 100%; gap: 6px; padding-top: 10px; }
  .portfolio-tile-third,
  .portfolio-tile-wide,
  .portfolio-tile-narrow,
  .portfolio-tile-quarter { grid-column: span 6; aspect-ratio: .9; }
  .portfolio-tile-wide { grid-column: 1 / -1; aspect-ratio: 1.45; }
  .portfolio-tile-label { bottom: 11px; left: 12px; font-size: 8px; letter-spacing: .14em; }
  .portfolio-zoom { right: 10px; bottom: 9px; width: 28px; height: 28px; opacity: 1; transform: none; }
  .portfolio-banner,
  .portfolio-banner-inner { min-height: 205px; }
  .portfolio-banner-inner > p { font-size: 9px; }
  .portfolio-banner-inner > span { font-size: 26px; }
  .portfolio-banner-inner em { font-size: 19px; }
  .portfolio-lightbox { padding: 14px; }
  .portfolio-lightbox-dialog {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    grid-template-columns: 42px minmax(0,1fr) 42px;
  }
  .portfolio-lightbox-figure {
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
  }
  .portfolio-lightbox-figure img {
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
  }
  .portfolio-lightbox-close { top: 5px; right: 5px; }
  .portfolio-lightbox-nav { width: 36px; height: 36px; }
  .portfolio-page-body .footer-main { grid-template-columns: repeat(2,1fr); }
  .portfolio-page-body .footer-brand,
  .portfolio-page-body .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .portfolio-hero { min-height: 470px; }
  .portfolio-hero-inner { min-height: 470px; }
  .portfolio-kicker { margin-bottom: 16px; }
  .portfolio-hero-sub { font-size: 9px; letter-spacing: .2em; }
  .portfolio-mosaic { width: 100%; }
  .portfolio-tile-third,
  .portfolio-tile-wide,
  .portfolio-tile-narrow,
  .portfolio-tile-quarter { grid-column: 1 / -1; aspect-ratio: 1.2; }
  .portfolio-banner-inner { justify-content: center; text-align: center; }
  .portfolio-banner-inner > p { display: none; }
  .portfolio-banner-inner > span { margin: 0; text-align: center; }
  .portfolio-lightbox-dialog { grid-template-columns: 1fr; }
  .portfolio-lightbox-figure { width: 100%; }
  .portfolio-lightbox-figure img { max-width: calc(100% - 44px); }
  .portfolio-lightbox-nav { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); }
  .portfolio-lightbox-prev { left: 6px; }
  .portfolio-lightbox-next { right: 6px; }
  .portfolio-lightbox-prev:hover,
  .portfolio-lightbox-next:hover { transform: translateY(-50%); }
  .portfolio-lightbox-figure figcaption { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-image-button img,
  .portfolio-filter,
  .portfolio-zoom { transition: none !important; }
}
