:root {
  --paper: #faf3e8;
  --ink: #2a231e;
  --rust: #d8734f;
  --rust-deep: #a94f35;
  --sand: #e6d3ba;
  --stone: #b9a58e;
  --olive: #74806a;
  --olive-deep: #465044;
  --line: #d6c2a7;
  --line-dark: rgba(250, 243, 232, 0.22);
  --muted-ink: #62564d;
  --white: #fffdf9;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

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

img,
svg {
  max-width: 100%;
}

::selection {
  background: var(--rust);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -4rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.8rem 1rem;
  transition: top 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 3.2vw;
  display: grid;
  grid-template-columns: minmax(170px, 0.85fr) auto minmax(170px, 0.85fr);
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    height 0.35s ease,
    border 0.35s ease;
}

.site-header:not(.is-scrolled):not(.on-light):not(.menu-open) {
  background: linear-gradient(
    180deg,
    rgba(42, 35, 30, 0.58),
    rgba(42, 35, 30, 0.12)
  );
  text-shadow: 0 1px 14px rgba(42, 35, 30, 0.48);
}

.site-header.is-scrolled,
.site-header.on-light,
.site-header.menu-open {
  height: 76px;
  background: rgba(250, 243, 232, 0.97);
  color: var(--ink);
  border-color: var(--line);
}

.brand-mark {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-kicker {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-script {
  margin: -0.06rem 0 0 0.82rem;
  font-family: var(--serif);
  font-size: 1.58rem;
  font-style: italic;
  letter-spacing: -0.045em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.45vw, 1.7rem);
}

.desktop-nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.115em;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  background: var(--rust);
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.header-cta:hover {
  background: var(--paper);
  color: var(--ink);
}

.menu-toggle,
.mobile-menu,
.mobile-bottom-cta {
  display: none;
}

main {
  overflow: clip;
}

.section-shell {
  width: min(100% - 8vw, 1440px);
  margin-inline: auto;
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

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

h1 {
  font-size: clamp(3.7rem, 7.5vw, 8.6rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(3rem, 5.8vw, 6.7rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  line-height: 1;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.button {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button span:last-child {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.button:hover span:last-child {
  transform: translate(3px, -3px);
}

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

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

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

.button-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: var(--rust);
  color: var(--ink);
}

.button-text {
  min-height: auto;
  padding-inline: 0;
  border-bottom-color: currentColor;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #817b6b;
  color: var(--white);
}

.home-hero-slot {
  position: absolute !important;
  inset: 0;
  min-height: 100%;
}

.home-hero-slot .demo-badge {
  top: 7rem;
  left: auto;
  right: 3vw;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(42, 35, 30, 0.76),
      rgba(42, 35, 30, 0.2) 66%
    ),
    linear-gradient(0deg, rgba(42, 35, 30, 0.56), transparent 52%),
    linear-gradient(180deg, rgba(250, 243, 232, 0.08), transparent 36%);
}

.home-hero .demo-photo {
  filter: saturate(0.96) contrast(0.96) brightness(1.16) sepia(0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(90%, 1300px);
  margin: 0 auto;
  padding: 10rem 0 5.5rem;
}

.hero-content h1 {
  max-width: 1170px;
}

.hero-content h1 em {
  font-weight: 400;
}

.hero-content > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 2rem;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: 2.25rem;
}

.price-qualifier {
  display: block;
  margin-top: 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero-location {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 5.5rem;
  writing-mode: vertical-rl;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line-dark);
}

.trust-bar > div {
  min-height: 160px;
  padding: 2rem 3vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
}

.trust-bar > div:last-child {
  border-right: 0;
}

.trust-bar strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.trust-bar span {
  margin-top: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.image-slot {
  --slot-bg: #9f9a91;
  --slot-fg: #ded8cf;
  position: relative;
  overflow: hidden;
  margin: 0;
  isolation: isolate;
  background: var(--slot-bg);
}

.image-slot::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(18, 17, 15, 0.6),
    rgba(18, 17, 15, 0.02) 45%
  );
  pointer-events: none;
}

.image-slot::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.demo-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98) brightness(1.05) sepia(0.05);
}

.demo-badge {
  position: absolute;
  z-index: 3;
  left: 1rem;
  top: 1rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(29, 28, 25, 0.48);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.13em;
  backdrop-filter: blur(6px);
}

.slot-moss {
  --slot-bg: #69745f;
  --slot-fg: #c7c8b7;
}

.slot-fjord {
  --slot-bg: #667175;
  --slot-fg: #c1c9c8;
}

.slot-ocean {
  --slot-bg: #5f7a77;
  --slot-fg: #c4d3ce;
}

.slot-rust {
  --slot-bg: #9f6650;
  --slot-fg: #e0b296;
}

.slot-sun {
  --slot-bg: #b48a59;
  --slot-fg: #ead3ad;
}

.slot-stone {
  --slot-bg: #8d8277;
  --slot-fg: #d3c7b9;
}

.ratio-hero {
  aspect-ratio: 16 / 10;
}

.ratio-wide {
  aspect-ratio: 16 / 8.5;
}

.ratio-landscape {
  aspect-ratio: 4 / 3;
}

.ratio-portrait {
  aspect-ratio: 3 / 4;
}

.ratio-square {
  aspect-ratio: 1;
}

.image-slot figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.38);
}

.image-slot figcaption small {
  max-width: 160px;
  text-align: right;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.split-editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.68fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.split-copy h2 {
  max-width: 850px;
}

.copy-columns {
  max-width: 780px;
  margin: 3rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}

.copy-columns p:first-child {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.split-copy small {
  display: block;
  margin-top: 1rem;
  color: var(--muted-ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.6fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-heading h2 {
  max-width: 950px;
}

.section-heading > p {
  max-width: 500px;
  color: var(--muted-ink);
  font-size: 1.03rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4rem 1.5rem;
}

.story-card {
  grid-column: span 4;
}

.story-card:nth-child(2),
.story-card:nth-child(5) {
  transform: translateY(4rem);
}

.story-card-image {
  display: block;
  overflow: hidden;
}

.story-card .image-slot {
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.story-card-image:hover .image-slot {
  transform: scale(1.025);
}

.story-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.53rem;
  letter-spacing: 0.11em;
}

.story-card-meta span:last-child {
  text-align: right;
}

.story-card h3 {
  margin-top: 1.2rem;
}

.story-card p {
  margin-top: 0.75rem;
  color: var(--muted-ink);
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.section-action {
  margin-top: 7rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.section-action p {
  max-width: 470px;
  color: var(--muted-ink);
  font-size: 0.82rem;
}

.services-section {
  background: var(--ink);
  color: var(--paper);
}

.on-dark > p {
  color: var(--sand);
}

.service-list {
  margin-bottom: 3rem;
  border-top: 1px solid var(--line-dark);
}

.service-list article {
  display: grid;
  grid-template-columns: 80px 0.9fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-list article > span {
  color: var(--sand);
  font-size: 0.68rem;
}

.service-list article p {
  max-width: 540px;
  color: rgba(250, 243, 232, 0.8);
}

.camera-section {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.camera-section > div {
  max-width: 610px;
}

.camera-section h2 {
  margin-bottom: 2rem;
}

.camera-section p {
  margin-bottom: 1rem;
}

.camera-section .button {
  margin-top: 1.5rem;
}

.team-teaser {
  background: var(--sand);
}

.team-teaser .section-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.team-number {
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.7;
  color: rgba(42, 35, 30, 0.14);
}

.team-copy h2 {
  margin-bottom: 2rem;
}

.team-copy > p {
  margin-bottom: 1rem;
}

.team-copy ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(42, 35, 30, 0.25);
}

.team-copy li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(42, 35, 30, 0.25);
  font-size: 0.82rem;
}

.team-slots {
  display: grid;
  gap: 1.5rem;
}

.team-slots .image-slot:last-child {
  width: 74%;
  margin-left: auto;
}

.team-grid article:nth-child(8n + 1) .demo-photo {
  object-position: 4% center !important;
}

.team-grid article:nth-child(8n + 2) .demo-photo {
  object-position: 17% center !important;
}

.team-grid article:nth-child(8n + 3) .demo-photo {
  object-position: 30% center !important;
}

.team-grid article:nth-child(8n + 4) .demo-photo {
  object-position: 43% center !important;
}

.team-grid article:nth-child(8n + 5) .demo-photo {
  object-position: 57% center !important;
}

.team-grid article:nth-child(8n + 6) .demo-photo {
  object-position: 70% center !important;
}

.team-grid article:nth-child(8n + 7) .demo-photo {
  object-position: 83% center !important;
}

.team-grid article:nth-child(8n + 8) .demo-photo {
  object-position: 96% center !important;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 350px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article > span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.process-grid h3 {
  margin-top: auto;
}

.process-grid p {
  margin-top: 1.2rem;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.packages-section {
  padding-top: 4rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: clamp(2rem, 3.5vw, 4rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-right: 0;
}

.package-card:last-child {
  border-right: 1px solid var(--line);
}

.package-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.recommended {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.25rem 0.45rem;
  border: 1px solid #77726a;
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}

.package-label {
  min-height: 2.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.package-card h3 {
  margin-top: 2.5rem;
}

.package-price {
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1;
}

.package-subtitle {
  min-height: 8rem;
  margin: 2rem 0;
  color: var(--muted-ink);
}

.package-card.featured .package-subtitle {
  color: var(--sand);
}

.package-card ul {
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.3rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.package-card.featured li {
  border-color: var(--line-dark);
}

.package-card li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.package-card .button {
  margin-top: auto;
}

.package-note {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.package-note p {
  max-width: 700px;
  color: var(--muted-ink);
  font-size: 0.86rem;
}

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

.destinations-section .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.destination-intro h2 {
  margin-bottom: 2rem;
}

.destination-intro p {
  max-width: 520px;
  margin-bottom: 1rem;
  color: rgba(250, 243, 232, 0.82);
}

.destination-list {
  border-top: 1px solid rgba(250, 243, 232, 0.3);
}

.destination-list a {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250, 243, 232, 0.3);
}

.destination-list a > span {
  font-size: 0.58rem;
}

.destination-list strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 400;
}

.destination-list a i {
  font-style: normal;
  transition: transform 0.25s ease;
}

.destination-list a:hover i {
  transform: translate(4px, -4px);
}

.destination-more {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 243, 232, 0.3);
  color: rgba(250, 243, 232, 0.82);
  font-size: 0.8rem;
}

.destinations-section .button {
  grid-column: 2;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.testimonial-grid blockquote {
  min-height: 360px;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-grid blockquote > span {
  font-size: 0.6rem;
}

.testimonial-grid blockquote p {
  max-width: 620px;
  margin: auto 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  line-height: 1.18;
}

.testimonial-grid cite {
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.3fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  margin-bottom: 1.5rem;
}

.faq-intro p {
  max-width: 390px;
  color: var(--muted-ink);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 96px;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  font-size: 0.62rem;
}

.faq-list summary strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.faq-list summary i {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: normal;
  text-align: center;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 720px;
  padding: 0 0 2rem 71px;
  color: var(--muted-ink);
}

.faq-section > .button {
  grid-column: 2;
}

.global-inquiry {
  position: relative;
  min-height: 540px;
  padding: clamp(4rem, 8vw, 8rem) 5vw;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 5rem;
  align-items: end;
  overflow: hidden;
  background: var(--rust);
  color: var(--ink);
}

.global-inquiry h2 {
  max-width: 900px;
}

.global-inquiry > div:last-child {
  position: relative;
  z-index: 2;
}

.global-inquiry > div:last-child p {
  max-width: 520px;
  margin-bottom: 2rem;
}

.global-inquiry-number {
  position: absolute;
  right: -2vw;
  top: -4rem;
  color: rgba(42, 35, 30, 0.09);
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 32rem);
  line-height: 1;
}

.site-footer {
  padding: clamp(4rem, 8vw, 8rem) 5vw 2rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--serif);
  line-height: 0.82;
}

.footer-brand span {
  font-family: var(--sans);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.34em;
}

.footer-brand em {
  margin-left: clamp(1.5rem, 3vw, 3.5rem);
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.footer-cta {
  text-align: right;
}

.footer-cta p {
  margin-bottom: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.footer-cta .button {
  margin-left: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 3rem;
  padding: 4rem 0;
}

.footer-grid > div:first-child p {
  max-width: 390px;
  color: rgba(250, 243, 232, 0.76);
}

.footer-grid nav,
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-grid a:hover {
  color: var(--sand);
}

.destination-line {
  padding: 1.3rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(250, 243, 232, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-legal {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(250, 243, 232, 0.58);
  font-size: 0.64rem;
}

.footer-legal > div {
  display: flex;
  gap: 1.5rem;
}

.page-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--paper);
}

.page-hero-copy {
  padding: clamp(9rem, 14vw, 12rem) 5vw 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 2rem;
  color: rgba(250, 243, 232, 0.8);
  font-size: 1.05rem;
}

.hero-trust {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  color: var(--sand);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .image-slot {
  height: 100%;
  min-height: 92svh;
  aspect-ratio: auto;
}

.page-hero .demo-photo {
  filter: saturate(0.94) contrast(0.96) brightness(1.1) sepia(0.07);
}

.page-hero .demo-badge,
.story-detail-hero .demo-badge,
.contact-visual .demo-badge {
  top: 7rem;
}

.stories-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 74svh;
  padding: clamp(10rem, 17vw, 16rem) 5vw 5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 6rem;
  align-items: end;
  background: var(--ink);
  color: var(--paper);
}

.stories-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 35, 30, 0.84), rgba(42, 35, 30, 0.24)),
    linear-gradient(0deg, rgba(42, 35, 30, 0.68), transparent 60%);
}

.stories-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.stories-hero-image .demo-badge,
.stories-hero-image figcaption {
  display: none;
}

.stories-hero h1 {
  max-width: 1050px;
}

.stories-hero > p {
  max-width: 520px;
  color: var(--sand);
}

.portfolio-status {
  padding: 1.2rem 5vw;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 2rem;
  background: var(--rust);
  color: var(--ink);
}

.portfolio-status span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.portfolio-status p {
  max-width: 840px;
  font-size: 0.82rem;
}

.story-filters {
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-filters button {
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.story-filters button:hover,
.story-filters button.active {
  background: var(--ink);
  color: var(--paper);
}

.filter-empty {
  min-height: 420px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  text-align: center;
}

.filter-empty span {
  margin-bottom: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.filter-empty p {
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.mid-page-cta {
  margin-bottom: 8rem;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--sand);
}

.mid-page-cta h2 {
  max-width: 900px;
}

.mid-page-cta > p {
  max-width: 540px;
  margin: 2rem 0;
}

.story-detail-hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--white);
}

.story-detail-hero > .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
  aspect-ratio: auto;
}

.story-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(42, 35, 30, 0.78), transparent 68%);
}

.story-detail-title {
  position: absolute;
  z-index: 2;
  left: 5vw;
  right: 5vw;
  bottom: 5rem;
}

.story-detail-title h1 {
  max-width: 1000px;
}

.story-detail-title > p {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.story-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.story-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.story-intro-copy {
  padding-top: 3rem;
}

.story-intro-copy p {
  margin-bottom: 1.2rem;
  color: var(--muted-ink);
}

.quick-facts {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quick-facts > div {
  min-height: 150px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts span {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.quick-facts strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.gallery-placeholder {
  padding-top: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.gallery-grid .image-slot:nth-child(1) {
  grid-column: 1 / -1;
}

.gallery-grid .image-slot:nth-child(2) {
  grid-column: 1 / 6;
}

.gallery-grid .image-slot:nth-child(3) {
  grid-column: 7 / 12;
  margin-top: 8rem;
}

.gallery-grid .image-slot:nth-child(4) {
  grid-column: 1 / 8;
  margin-top: 2rem;
}

.gallery-grid .image-slot:nth-child(5) {
  grid-column: 9 / 13;
  margin-top: -2rem;
}

.gallery-grid .image-slot:nth-child(6) {
  grid-column: 2 / 6;
  margin-top: 5rem;
}

.gallery-grid .image-slot:nth-child(7) {
  grid-column: 7 / 11;
  margin-top: 1rem;
}

.gallery-grid .image-slot:nth-child(8) {
  grid-column: 1 / -1;
  margin-top: 4rem;
}

.gallery-grid .image-slot:nth-child(2) .demo-photo {
  object-position: center 68% !important;
}

.gallery-grid .image-slot:nth-child(3) .demo-photo {
  object-position: 58% center !important;
}

.gallery-grid .image-slot:nth-child(4) .demo-photo {
  object-position: center 55% !important;
}

.gallery-grid .image-slot:nth-child(5) .demo-photo {
  object-position: 40% center !important;
}

.gallery-grid .image-slot:nth-child(6) .demo-photo {
  object-position: 58% center !important;
}

.gallery-grid .image-slot:nth-child(7) .demo-photo {
  object-position: center !important;
}

.film-placeholder {
  padding: 7rem 5vw;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.film-frame {
  min-height: 520px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #5a5650;
  background:
    linear-gradient(150deg, transparent 48%, #4d4a44 48.3% 64%, transparent 64.3%),
    #34322e;
  text-align: center;
}

.film-frame > span {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.film-frame > strong {
  max-width: 620px;
  margin: 1.5rem 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.film-frame > small {
  color: var(--sand);
}

.film-placeholder > div:last-child p {
  margin-top: 2rem;
  color: rgba(250, 243, 232, 0.78);
}

.couple-quote {
  padding-inline: 10vw;
  text-align: center;
}

.couple-quote > span {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.couple-quote blockquote {
  max-width: 1080px;
  margin: 2.5rem auto 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  line-height: 1;
}

.couple-quote p {
  color: var(--muted-ink);
  font-size: 0.82rem;
}

.planning-similar {
  padding: clamp(4rem, 8vw, 8rem) 5vw;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  background: var(--sand);
}

.planning-similar > div:last-child {
  align-self: end;
}

.planning-similar > div:last-child p {
  max-width: 550px;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.story-card-compact {
  grid-column: auto;
}

.pricing-intro,
.why-section {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.pricing-intro > div:last-child,
.why-section > div:last-child {
  padding-top: 3rem;
}

.pricing-intro > div:last-child p,
.why-section > div:last-child p {
  margin-bottom: 1rem;
  color: var(--muted-ink);
}

.pricing-intro .button,
.why-section .button {
  margin-top: 1.5rem;
}

.full-pricing {
  padding-top: 2rem;
}

.full-pricing .package-card {
  padding-inline: clamp(1.5rem, 2.8vw, 3rem);
}

.full-pricing .package-subtitle {
  min-height: 7rem;
}

.pricing-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
}

.pricing-conditions p {
  padding: 1.5rem;
  border: 1px solid var(--line);
  color: var(--muted-ink);
}

.pricing-conditions strong {
  color: var(--ink);
}

.included-section,
.seven-steps,
.approach-section {
  background: var(--ink);
  color: var(--paper);
}

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

.included-grid article {
  min-height: 320px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.included-grid article > span {
  color: var(--sand);
  font-size: 0.62rem;
}

.included-grid h3 {
  margin-top: auto;
}

.included-grid p {
  margin-top: 1.2rem;
  color: rgba(250, 243, 232, 0.78);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.booking-section > div > p {
  max-width: 500px;
  margin: 2rem 0;
  color: var(--muted-ink);
}

.booking-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.booking-section li {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.booking-section li span {
  font-size: 0.6rem;
}

.booking-section li strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.meaning-section {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
}

.meaning-section > div {
  max-width: 780px;
}

.meaning-section h2 {
  margin-bottom: 2rem;
}

.meaning-section p {
  margin-bottom: 1rem;
}

.meaning-section .button {
  margin-top: 1.5rem;
}

.seven-step-list {
  margin-bottom: 3rem;
  border-top: 1px solid var(--line-dark);
}

.seven-step-list article {
  display: grid;
  grid-template-columns: 70px 0.65fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.seven-step-list article > span {
  color: var(--sand);
  font-size: 0.65rem;
}

.seven-step-list article p {
  color: rgba(250, 243, 232, 0.78);
}

.help-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.help-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.help-section li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid var(--line);
}

.help-section li span {
  font-size: 0.58rem;
}

.help-section li strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.guidance-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sand);
}

.guidance-triptych article {
  min-height: 720px;
  padding: clamp(2rem, 4.5vw, 5rem);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(42, 35, 30, 0.24);
}

.guidance-triptych article:last-child {
  border-right: 0;
}

.guidance-triptych h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  margin-bottom: auto;
}

.guidance-triptych article > p {
  margin-top: 1rem;
}

.map-later {
  position: relative;
  min-height: 650px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.map-later > span {
  position: absolute;
  left: 0;
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(20rem, 48vw, 50rem);
  line-height: 0.7;
}

.map-later > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.map-later p {
  max-width: 520px;
  margin: 2rem 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.approach-grid article {
  min-height: 350px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.approach-grid article > span {
  color: var(--sand);
  font-size: 0.62rem;
}

.approach-grid h3 {
  margin-top: auto;
}

.approach-grid p {
  margin-top: 1.3rem;
  color: rgba(250, 243, 232, 0.78);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 2rem;
}

.team-grid article {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 2rem;
  align-items: start;
}

.team-profile {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.team-profile > span {
  font-size: 0.58rem;
}

.team-profile h3 {
  margin-top: 2rem;
}

.team-role {
  margin: 0.4rem 0 1.5rem;
  color: var(--rust-deep);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-profile > p:not(.team-role) {
  margin-bottom: 0.8rem;
  color: var(--muted-ink);
  font-size: 0.88rem;
}

.serg-note {
  padding: 7rem 8vw;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  background: var(--sand);
}

.serg-note > div {
  max-width: 780px;
}

.serg-note h2 {
  margin-bottom: 2rem;
}

.serg-note p {
  margin-bottom: 1rem;
}

.values-section {
  position: relative;
  min-height: 720px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.values-mark {
  position: absolute;
  left: -2vw;
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(10rem, 30vw, 32rem);
  line-height: 0.8;
}

.values-section > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.values-section h2 {
  margin-bottom: 2rem;
}

.values-section p {
  margin-bottom: 1rem;
}

.values-section .button {
  margin-top: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: start;
  background: var(--paper);
}

.contact-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  background: var(--ink);
}

.contact-visual > .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
  aspect-ratio: auto;
}

.contact-visual > .image-slot figcaption {
  display: none;
}

.contact-visual-caption {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.contact-content {
  min-width: 0;
}

.contact-heading {
  padding: clamp(9rem, 14vw, 12rem) clamp(1.5rem, 6vw, 7rem) 5rem;
}

.contact-heading h1 {
  max-width: 920px;
  font-size: clamp(4rem, 7vw, 7.8rem);
}

.contact-heading > p {
  max-width: 720px;
  margin-top: 2rem;
  font-size: 1.05rem;
}

.contact-heading > ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.contact-heading > li {
  padding: 0.4rem 0;
}

.contact-heading > ul li::before {
  content: "—";
  margin-right: 0.8rem;
  color: var(--rust);
}

.contact-details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.contact-details > * {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}

.contact-details span {
  margin-bottom: 0.4rem;
  color: var(--muted-ink);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
}

.inquire-anchor {
  scroll-margin-top: 90px;
  padding: 5rem clamp(1.5rem, 6vw, 7rem) 7rem;
  background: var(--ink);
  color: var(--paper);
}

.prototype-notice,
.prototype-warning {
  margin-bottom: 2.5rem;
  padding: 1.2rem;
  border: 1px solid var(--line-dark);
  color: rgba(250, 243, 232, 0.8);
}

.prototype-notice span,
.prototype-warning strong {
  color: var(--paper);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.prototype-notice p,
.prototype-warning p {
  margin-top: 0.4rem;
  font-size: 0.78rem;
}

.form-error {
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--rust);
  background: #3b2b24;
  color: #ffd8c8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 1.2rem;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.inquiry-form label > span:first-child {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.inquiry-form label i {
  margin-left: 0.5rem;
  color: var(--sand);
  font-size: 0.47rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(250, 243, 232, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-size: 1rem;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(250, 243, 232, 0.56);
}

.inquiry-form select {
  color-scheme: dark;
}

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

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

.consent-row {
  margin-top: 2rem;
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 0.8rem !important;
  align-items: start;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  margin: 0.1rem 0 0;
  accent-color: var(--rust);
}

.consent-row > span {
  color: #b7b1a8;
  font-size: 0.72rem !important;
}

.submit-button {
  width: 100%;
  min-height: 64px;
  margin-top: 2.5rem;
  padding: 0 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: var(--rust);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-microcopy {
  margin-top: 1rem;
  color: rgba(250, 243, 232, 0.62);
  font-size: 0.7rem;
}

.form-success {
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line-dark);
}

.form-success > span {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.form-success h2 {
  margin: 2rem 0;
}

.form-success > p {
  max-width: 650px;
  color: rgba(250, 243, 232, 0.8);
}

.form-success .prototype-warning {
  margin-top: 3rem;
}

.form-reset {
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--paper);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.after-send-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.after-send-grid article {
  min-height: 300px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.after-send-grid article > span {
  font-size: 0.6rem;
}

.after-send-grid h3 {
  margin-top: auto;
}

.after-send-grid p {
  margin-top: 1rem;
  color: var(--muted-ink);
}

.final-reassurance {
  margin-top: 3rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
}

.legal-page {
  width: min(100% - 8vw, 1200px);
  margin-inline: auto;
  padding: clamp(10rem, 16vw, 14rem) 0 8rem;
}

.legal-page > header {
  max-width: 970px;
  margin-bottom: 6rem;
}

.legal-page > header h1 {
  margin-bottom: 2rem;
}

.legal-page > header > p {
  max-width: 760px;
  font-size: 1.05rem;
}

.legal-demo-image {
  margin-bottom: 5rem;
}

.legal-sections {
  border-top: 1px solid var(--line);
}

.legal-sections section {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid var(--line);
}

.legal-sections section > span {
  font-size: 0.62rem;
}

.legal-sections h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.legal-sections p {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--muted-ink);
}

.legal-contact {
  margin-top: 4rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--sand);
}

.guides-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.guides-intro > div:last-child {
  padding-top: 3rem;
}

.guides-intro > div:last-child > p {
  max-width: 620px;
  color: var(--muted-ink);
}

.guide-category-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-category-row span {
  padding: 0.75rem 0.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.guides-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 2rem;
}

.guide-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.guide-card .image-slot {
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.2, 1);
}

a.guide-card:hover .image-slot {
  transform: scale(1.012);
}

.guide-card-meta {
  margin-top: 1rem;
  padding-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.guide-card h3 {
  max-width: 760px;
  margin-top: 1.4rem;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.guide-card > p {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--muted-ink);
}

.guide-card-action {
  width: fit-content;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.guide-card-featured {
  grid-column: 1 / -1;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0 4rem;
  border-bottom: 1px solid var(--line);
}

.guide-card-featured .image-slot {
  grid-row: 1 / 6;
}

.guide-card-featured .guide-card-meta,
.guide-card-featured h3,
.guide-card-featured > p,
.guide-card-featured .guide-card-action {
  grid-column: 2;
}

.guide-card-featured .guide-card-meta {
  align-self: end;
}

.guide-card-planned {
  opacity: 0.8;
}

.guide-card-planned .guide-card-action {
  border-bottom: 0;
  color: var(--muted-ink);
}

.guide-library-note {
  padding: clamp(4rem, 8vw, 8rem) 5vw;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--olive-deep);
  color: var(--paper);
}

.guide-library-note > div:last-child {
  align-self: end;
}

.guide-library-note > div:last-child p {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(250, 243, 232, 0.82);
}

.guide-article-hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.guide-article-hero > .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
  aspect-ratio: auto;
}

.guide-article-hero > .image-slot .demo-photo {
  filter: saturate(0.95) contrast(0.97) brightness(1.12) sepia(0.06);
}

.guide-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 35, 30, 0.82), rgba(42, 35, 30, 0.2) 72%),
    linear-gradient(0deg, rgba(42, 35, 30, 0.68), transparent 58%);
}

.guide-article-title {
  position: absolute;
  z-index: 2;
  left: 5vw;
  right: 5vw;
  bottom: 5rem;
}

.guide-article-title h1 {
  max-width: 1180px;
}

.guide-article-title > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1.6rem;
  color: rgba(250, 243, 232, 0.84);
  font-size: 1.05rem;
}

.guide-quick-facts {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-quick-facts > div {
  min-height: 150px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-quick-facts span {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.guide-quick-facts strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.guide-article-layout {
  padding-top: 3rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: 118px;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-toc nav {
  display: flex;
  flex-direction: column;
}

.guide-toc nav a {
  padding: 0.72rem 0;
  border-top: 1px solid rgba(42, 35, 30, 0.12);
  color: var(--muted-ink);
  font-size: 0.77rem;
  line-height: 1.35;
}

.guide-toc nav a:hover {
  color: var(--rust-deep);
}

.guide-content {
  max-width: 860px;
}

.guide-lead {
  margin-bottom: 6rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.3vw, 3.6rem);
  line-height: 1.18;
}

.guide-content > section {
  scroll-margin-top: 110px;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.guide-content h2 {
  max-width: 820px;
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.guide-content section > p {
  max-width: 760px;
  margin-bottom: 1.15rem;
  color: var(--muted-ink);
  font-size: 1.02rem;
}

.guide-content section > ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.guide-content section > ul li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.guide-content section > ul li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--rust-deep);
}

.guide-content .guide-checklist {
  padding: clamp(2rem, 5vw, 5rem);
  border-top: 0;
  background: var(--sand);
}

.guide-checklist .button {
  margin-top: 2.5rem;
}

.guide-image-break {
  padding: clamp(3rem, 6vw, 6rem) 5vw;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: end;
  background: var(--ink);
}

.guide-image-break .image-slot:last-child {
  width: 86%;
}

.guide-next-step {
  text-align: center;
}

.guide-next-step h2 {
  max-width: 1060px;
  margin-inline: auto;
}

.guide-next-step > p {
  max-width: 700px;
  margin: 2rem auto;
  color: var(--muted-ink);
}

.guide-next-step .button {
  margin-inline: auto;
}

/* WordPress-managed Stories */

.story-card-image {
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

.story-card-compact .story-card-image {
  aspect-ratio: 4 / 3;
}

.story-card-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.story-card-image:hover > img {
  transform: scale(1.025);
}

.story-card-cover-empty {
  width: 100%;
  height: 100%;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 78% 20%, rgba(216, 115, 79, 0.32), transparent 34%),
    linear-gradient(145deg, var(--sand), #f5e6d3);
  color: var(--ink);
}

.story-card-cover-empty small {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.story-card-cover-empty strong {
  max-width: 90%;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.story-card > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.stories-coming-soon {
  min-height: 440px;
  padding: clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 115, 79, 0.18), transparent 30%),
    rgba(255, 253, 249, 0.34);
}

.stories-coming-soon h3 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.stories-coming-soon > p {
  max-width: 620px;
  margin: 1.5rem 0 2rem;
  color: var(--muted-ink);
}

.stories-live-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 78svh;
  padding: clamp(10rem, 16vw, 15rem) 5vw 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 115, 79, 0.38), transparent 23%),
    linear-gradient(140deg, #302822, var(--ink) 64%);
  color: var(--paper);
}

.stories-live-hero::after {
  content: "STORIES";
  position: absolute;
  z-index: -1;
  left: -0.025em;
  bottom: -0.21em;
  color: rgba(250, 243, 232, 0.035);
  font-family: var(--serif);
  font-size: clamp(11rem, 30vw, 34rem);
  line-height: 0.8;
  white-space: nowrap;
}

.stories-live-heading h1 {
  max-width: 1050px;
  font-size: clamp(4rem, 8vw, 9rem);
}

.stories-live-heading h1 em {
  color: var(--sand);
  font-weight: 400;
}

.stories-live-intro {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.stories-live-intro p {
  color: rgba(250, 243, 232, 0.82);
}

.stories-live-intro span {
  display: block;
  margin-top: 2rem;
  color: var(--sand);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.story-archive-intro {
  margin-bottom: 4rem;
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-archive-intro span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.story-archive-intro p {
  max-width: 760px;
  color: var(--muted-ink);
  font-size: 0.86rem;
}

.stories-production-state {
  min-height: 620px;
  padding: clamp(2rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 18%, rgba(216, 115, 79, 0.22), transparent 27%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.46), rgba(230, 211, 186, 0.3));
}

.stories-production-state.is-error {
  background:
    radial-gradient(circle at 80% 15%, rgba(116, 128, 106, 0.25), transparent 30%),
    rgba(255, 253, 249, 0.4);
}

.stories-production-state h2 {
  max-width: 980px;
}

.stories-production-state > p {
  max-width: 680px;
  margin: 2rem 0;
  color: var(--muted-ink);
}

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

.stories-pagination {
  margin-top: 7rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.stories-pagination a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 0.65rem;
}

.stories-pagination a:hover,
.stories-pagination a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.wordpress-story-cover {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.72fr);
  background: var(--ink);
  color: var(--paper);
}

.wordpress-story-cover-image {
  min-height: 100svh;
  overflow: hidden;
  background: #3a332d;
}

.wordpress-story-cover-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-cover-without-image {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  padding: 8rem 5vw 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 74% 22%, rgba(216, 115, 79, 0.42), transparent 29%),
    linear-gradient(150deg, #5e554a, #2a231e);
}

.story-cover-without-image span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.story-cover-without-image strong {
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
}

.wordpress-story-cover-copy {
  padding: clamp(9rem, 15vw, 14rem) 5vw 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wordpress-story-cover-copy h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 6.3vw, 7.2rem);
  line-height: 0.92;
}

.story-cover-place {
  margin-top: 2rem;
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.story-cover-season {
  margin-top: 0.7rem;
  color: rgba(250, 243, 232, 0.68);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wordpress-story-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 10vw, 11rem);
}

.wordpress-story-intro h2 {
  max-width: 780px;
}

.wordpress-story-intro > div:last-child > p {
  margin-bottom: 1.25rem;
  color: var(--muted-ink);
  font-size: 1.05rem;
  white-space: pre-line;
}

.story-tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.story-tags span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wordpress-story-meta {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
}

.wordpress-story-meta > div {
  padding: 0.95rem 0;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.wordpress-story-meta dt {
  font-size: 0.54rem;
  letter-spacing: 0.13em;
}

.wordpress-story-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.3;
}

.wordpress-gallery-section {
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.wordpress-gallery-heading {
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.wordpress-gallery-heading h2 {
  max-width: 1000px;
}

.wordpress-gallery-heading > p {
  max-width: 620px;
  margin-top: 2rem;
  color: var(--muted-ink);
}

.wordpress-gallery-shell {
  width: min(90vw, 1800px);
  margin-inline: auto;
}

.wordpress-story-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.wordpress-story-gallery.gallery-columns-1 {
  grid-template-columns: 1fr;
}

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

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

.story-gallery-image {
  min-width: 0;
  margin: 0;
}

.story-gallery-image.image-layout-wide {
  grid-column: span 2;
}

.story-gallery-image.image-layout-full {
  grid-column: 1 / -1;
}

.story-gallery-image button {
  width: 100%;
  min-height: 44px;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.story-gallery-image img {
  width: 100%;
  height: auto;
  display: block;
}

.wordpress-story-gallery.is-positioned {
  position: relative;
  display: block;
}

.wordpress-story-gallery.is-positioned .story-gallery-image {
  position: absolute;
  transition:
    left 0.35s ease,
    top 0.35s ease,
    width 0.35s ease,
    height 0.35s ease;
}

.wordpress-story-gallery.is-positioned .story-gallery-image button,
.wordpress-story-gallery.is-positioned .story-gallery-image img {
  width: 100%;
  height: 100%;
}

.wordpress-story-gallery.is-positioned .story-gallery-image img {
  object-fit: contain;
}

.story-gallery-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted-ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  text-align: center;
}

.gallery-load-sentinel {
  min-height: 80px;
  display: grid;
  place-items: center;
  color: var(--muted-ink);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-load-sentinel button {
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.story-lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  padding: clamp(1rem, 4vw, 4rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(250, 243, 232, 0.99);
  color: var(--ink);
  touch-action: none;
}

.lightbox-figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox-figure img {
  width: auto;
  height: auto;
  max-width: calc(100vw - clamp(2rem, 10vw, 10rem));
  max-height: calc(100svh - clamp(4rem, 12vw, 9rem));
  object-fit: contain;
  user-select: none;
}

.lightbox-figure figcaption {
  max-width: 760px;
  margin-top: 0.75rem;
  color: var(--muted-ink);
  font-size: 0.7rem;
  text-align: center;
  pointer-events: auto;
}

.lightbox-control {
  position: fixed;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(42, 35, 30, 0.25);
  background: rgba(250, 243, 232, 0.82);
  color: var(--ink);
  font-size: 1.45rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-control:hover {
  background: var(--ink);
  color: var(--paper);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.lightbox-previous {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  color: var(--muted-ink);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.story-contact-cta {
  padding: clamp(5rem, 9vw, 9rem) 5vw;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  background: var(--ink);
  color: var(--paper);
}

.story-contact-cta h2 {
  max-width: 980px;
}

.story-contact-cta > div:last-child p {
  max-width: 580px;
  margin-bottom: 2rem;
  color: rgba(250, 243, 232, 0.78);
}

.related-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-connection-state {
  min-height: 100svh;
  padding: 11rem 5vw 6rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 115, 79, 0.34), transparent 25%),
    var(--ink);
  color: var(--paper);
}

.story-connection-state > div {
  width: min(100%, 1180px);
}

.story-connection-state h1 {
  max-width: 1000px;
}

.story-connection-state > div > p {
  max-width: 680px;
  margin: 2rem 0;
  color: rgba(250, 243, 232, 0.78);
}

.story-connection-state .button-secondary {
  border-color: var(--paper);
  color: var(--paper);
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
    background: rgba(42, 35, 30, 0.34);
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .menu-toggle span {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    padding: 8rem 6vw 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 0.45rem 0;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 9vw, 5rem);
    line-height: 1;
  }

  .mobile-menu p {
    margin-top: 2rem;
    color: var(--muted-ink);
    font-size: 0.8rem;
  }

  .mobile-bottom-cta {
    position: fixed;
    z-index: 90;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-height: 54px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--rust);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  .story-card {
    grid-column: span 6;
  }

  .story-card:nth-child(2),
  .story-card:nth-child(5) {
    transform: none;
  }

  .team-teaser .section-shell {
    grid-template-columns: 0.3fr 1.1fr;
  }

  .team-slots {
    grid-column: 2;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .team-slots .image-slot:last-child {
    width: 100%;
  }

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

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

  .package-card,
  .package-card:last-child {
    border: 1px solid var(--line);
  }

  .package-subtitle {
    min-height: auto;
  }

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

  .page-hero-copy {
    min-height: 72svh;
  }

  .page-hero .image-slot {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .stories-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .film-placeholder,
  .planning-similar,
  .pricing-intro,
  .why-section,
  .booking-section,
  .help-section {
    grid-template-columns: 1fr;
  }

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

  .guidance-triptych {
    grid-template-columns: 1fr;
  }

  .guidance-triptych article {
    min-height: 540px;
    border-right: 0;
    border-bottom: 1px solid rgba(42, 35, 30, 0.24);
  }

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

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

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

  .after-send-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wordpress-story-gallery.gallery-columns-3,
  .wordpress-story-gallery.gallery-columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .section-shell {
    width: min(100% - 2.4rem, 680px);
    padding-block: 5.5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.75rem, 12vw, 4.4rem);
  }

  .home-hero {
    min-height: 90svh;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(22, 22, 19, 0.78),
      rgba(22, 22, 19, 0.12) 78%
    );
  }

  .hero-content {
    width: calc(100% - 2.4rem);
    padding: 8rem 0 3.5rem;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-location {
    display: none;
  }

  .home-hero-slot .demo-badge,
  .page-hero .demo-badge,
  .story-detail-hero .demo-badge,
  .contact-visual .demo-badge {
    top: 5.5rem;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar > div {
    min-height: 130px;
    padding: 1.5rem 1.2rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-bar > div:nth-child(2) {
    border-right: 0;
  }

  .split-editorial,
  .camera-section,
  .section-heading,
  .destinations-section .section-shell,
  .faq-section,
  .global-inquiry {
    grid-template-columns: 1fr;
  }

  .split-editorial .image-slot {
    grid-row: 1;
  }

  .copy-columns {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .copy-columns p:first-child {
    grid-column: auto;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-card {
    grid-column: auto;
  }

  .section-action,
  .package-note,
  .footer-top,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-list article {
    grid-template-columns: 42px 1fr;
    gap: 1rem;
  }

  .service-list article p {
    grid-column: 2;
  }

  .camera-section .image-slot {
    aspect-ratio: 4 / 3;
  }

  .team-teaser .section-shell {
    grid-template-columns: 1fr;
  }

  .team-number {
    font-size: 9rem;
  }

  .team-slots {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .process-grid article {
    min-height: 260px;
  }

  .destinations-section .section-shell {
    gap: 3rem;
  }

  .destination-more,
  .destinations-section .button {
    grid-column: auto;
  }

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

  .testimonial-grid blockquote {
    min-height: 300px;
  }

  .faq-intro {
    position: static;
  }

  .faq-list summary {
    grid-template-columns: 38px 1fr 24px;
  }

  .faq-list details > p {
    padding-left: 54px;
  }

  .faq-section > .button {
    grid-column: auto;
  }

  .global-inquiry {
    min-height: auto;
    padding: 5rem 1.2rem;
    gap: 2rem;
  }

  .global-inquiry-number {
    font-size: 14rem;
  }

  .footer-top {
    align-items: stretch;
  }

  .footer-cta {
    text-align: left;
  }

  .footer-cta .button {
    width: 100%;
    margin-left: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-legal > div {
    flex-wrap: wrap;
  }

  .page-hero-copy {
    min-height: 76svh;
    padding: 8rem 1.2rem 3rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .stories-hero {
    min-height: 78svh;
    padding: 8rem 1.2rem 3.5rem;
  }

  .portfolio-status {
    grid-template-columns: 1fr;
    padding-inline: 1.2rem;
  }

  .story-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .story-filters button {
    text-align: left;
  }

  .stories-live-hero,
  .story-archive-intro,
  .wordpress-story-intro,
  .story-contact-cta {
    grid-template-columns: 1fr;
  }

  .stories-live-hero {
    min-height: 76svh;
    padding: 8rem 1.2rem 3.5rem;
    gap: 2.5rem;
  }

  .stories-live-heading h1 {
    font-size: clamp(3.3rem, 15vw, 5.3rem);
  }

  .story-archive-intro {
    gap: 0.8rem;
  }

  .stories-production-state,
  .stories-coming-soon {
    min-height: 480px;
    padding: 2rem 1.2rem;
  }

  .wordpress-story-cover {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .wordpress-story-cover-image,
  .story-cover-without-image {
    width: 100%;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .wordpress-story-cover-image > img {
    object-fit: contain;
    background: var(--ink);
  }

  .story-cover-without-image {
    padding: 7rem 1.2rem 2rem;
  }

  .wordpress-story-cover-copy {
    padding: 3.5rem 1.2rem 5rem;
  }

  .wordpress-story-cover-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .wordpress-story-meta > div {
    grid-template-columns: 0.44fr 1fr;
  }

  .wordpress-gallery-heading {
    padding-bottom: 3rem;
  }

  .wordpress-gallery-shell {
    width: calc(100% - 1.5rem);
  }

  .wordpress-story-gallery.gallery-columns-1,
  .wordpress-story-gallery.gallery-columns-2,
  .wordpress-story-gallery.gallery-columns-3,
  .wordpress-story-gallery.gallery-columns-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-gallery-image.image-layout-wide,
  .story-gallery-image.image-layout-full {
    grid-column: auto;
  }

  .story-contact-cta {
    padding: 5rem 1.2rem;
    gap: 2rem;
  }

  .related-grid-three {
    grid-template-columns: 1fr;
  }

  .story-connection-state {
    padding: 9rem 1.2rem 5rem;
  }

  .lightbox-control {
    width: 46px;
    height: 46px;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .lightbox-previous {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-figure img {
    max-width: calc(100vw - 1rem);
    max-height: calc(100svh - 6rem);
  }

  .filter-empty {
    min-height: 340px;
    padding: 2rem;
  }

  .mid-page-cta {
    margin-bottom: 5rem;
  }

  .story-detail-title {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 3rem;
  }

  .story-intro,
  .film-placeholder,
  .planning-similar,
  .pricing-intro,
  .why-section,
  .meaning-section,
  .booking-section,
  .help-section,
  .serg-note {
    grid-template-columns: 1fr;
  }

  .story-intro-copy,
  .pricing-intro > div:last-child,
  .why-section > div:last-child {
    padding-top: 0;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid .image-slot:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .film-placeholder {
    padding: 5rem 1.2rem;
  }

  .film-frame {
    min-height: 360px;
  }

  .couple-quote {
    padding-inline: 1.2rem;
  }

  .planning-similar {
    padding: 5rem 1.2rem;
    gap: 2rem;
  }

  .related-grid,
  .pricing-conditions,
  .included-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .seven-step-list article {
    grid-template-columns: 42px 1fr;
  }

  .seven-step-list article p {
    grid-column: 2;
  }

  .guidance-triptych {
    grid-template-columns: 1fr;
  }

  .guidance-triptych article {
    min-height: auto;
    padding: 4rem 1.2rem;
  }

  .guidance-triptych h2 {
    margin-bottom: 3rem;
  }

  .map-later {
    min-height: 540px;
  }

  .map-later > span {
    font-size: 23rem;
  }

  .team-grid article {
    grid-template-columns: 1fr;
  }

  .team-grid article .image-slot {
    aspect-ratio: 4 / 5;
  }

  .serg-note {
    padding: 5rem 1.2rem;
  }

  .serg-note .image-slot {
    max-height: 580px;
  }

  .values-section {
    min-height: 650px;
  }

  .values-mark {
    font-size: 12rem;
  }

  .contact-layout {
    display: flex;
    flex-direction: column;
  }

  .contact-visual {
    position: relative;
    order: 2;
    width: 100%;
    height: 64svh;
  }

  .contact-content {
    order: 1;
  }

  .contact-heading {
    padding: 8rem 1.2rem 4rem;
  }

  .contact-heading h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

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

  .inquire-anchor {
    padding: 4rem 1.2rem 5rem;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .after-send-grid {
    grid-template-columns: 1fr;
  }

  .guides-intro,
  .guide-library-note,
  .guide-article-layout,
  .guide-image-break {
    grid-template-columns: 1fr;
  }

  .guides-intro > div:last-child {
    padding-top: 0;
  }

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

  .guide-card-featured {
    grid-column: auto;
    padding-bottom: 3rem;
    display: flex;
    gap: 0;
  }

  .guide-card-featured .image-slot,
  .guide-card-featured .guide-card-meta,
  .guide-card-featured h3,
  .guide-card-featured > p,
  .guide-card-featured .guide-card-action {
    grid-column: auto;
    grid-row: auto;
  }

  .guide-library-note {
    padding: 5rem 1.2rem;
    gap: 2rem;
  }

  .guide-article-title {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 3rem;
  }

  .guide-article-title h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .guide-quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .guide-article-layout {
    padding-top: 5rem;
    gap: 4rem;
  }

  .guide-toc {
    position: static;
  }

  .guide-lead {
    margin-bottom: 4rem;
  }

  .guide-content > section {
    padding: 4rem 0;
  }

  .guide-image-break {
    padding: 4rem 1.2rem;
  }

  .guide-image-break .image-slot:last-child {
    width: 100%;
  }

  .legal-page {
    width: calc(100% - 2.4rem);
    padding-top: 9rem;
  }

  .legal-sections section {
    grid-template-columns: 40px 1fr;
  }

  .legal-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Expanded testimonial collection — 1.7.0 */

.testimonial-grid blockquote {
  min-height: 0;
  padding: clamp(1.75rem, 3vw, 3rem);
}

.testimonial-grid blockquote p {
  max-width: 680px;
  margin: 0 0 2rem;
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  line-height: 1.42;
}

.testimonial-grid cite {
  margin-top: auto;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .testimonial-grid blockquote {
    min-height: 0;
    padding: 1.6rem;
  }

  .testimonial-grid blockquote p {
    font-size: 1.08rem;
    line-height: 1.5;
  }
}

/* Story masonry containment + gallery tags — 1.6.0 */

/*
 * These rules intentionally come after the legacy 1.4 gallery repair.
 * The older grid declarations otherwise override the calculated masonry
 * item width and make translated items overflow to the right.
 */
.single-story .wp-block-gallery.is-masonry-ready {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  gap: clamp(1.1rem, 2vw, 2.3rem) !important;
  overflow: hidden;
}

.single-story
  .wp-block-gallery.is-masonry-ready
  > figure.wp-block-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: var(--masonry-item-width) !important;
  max-width: var(--masonry-item-width) !important;
  height: var(--masonry-item-height) !important;
  margin: 0 !important;
  flex: 0 0 var(--masonry-item-width) !important;
  transform: translate3d(
    var(--masonry-x),
    var(--masonry-y),
    0
  ) !important;
}

.single-story
  .wp-block-gallery.is-masonry-ready
  > figure.wp-block-image
  img {
  width: 100% !important;
  max-width: 100% !important;
  height: var(--masonry-image-height) !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  cursor: default;
}

.single-story
  .wp-block-gallery.is-masonry-ready
  button.lightbox-trigger {
  display: none !important;
  pointer-events: none !important;
}

.single-story .story-gallery-tags {
  width: min(94vw, 1560px);
  max-width: none !important;
  margin: clamp(3.5rem, 7vw, 7rem) auto 0;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.single-story .story-gallery-tags .eyebrow {
  margin-bottom: 1rem;
}

.single-story .story-gallery-tag-list {
  gap: 0.65rem !important;
}

.single-story .story-gallery-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
}

.single-story .story-gallery-taxonomy .wp-block-post-terms__separator {
  display: none;
}

.single-story .story-gallery-taxonomy a {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  border: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.single-story .story-gallery-taxonomy a:hover,
.single-story .story-gallery-taxonomy a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 760px) {
  .single-story .wp-block-gallery.is-masonry-ready {
    gap: 1rem !important;
  }

  .single-story .story-gallery-tags {
    width: calc(100% - 2.4rem);
    margin-top: 4rem;
  }
}

/* Classic Story masonry — 1.5.0 */

/*
 * The public Story gallery follows the reference layout: each photograph
 * keeps its ratio and the next photograph fills the shortest column.
 * Gutenberg keeps a simple grid in the editor so bulk selection and
 * reordering remain easy.
 */
.single-story .wp-block-gallery.is-masonry-ready {
  position: relative !important;
  display: block !important;
  grid-template-columns: none !important;
}

.single-story
  .wp-block-gallery.is-masonry-ready
  > figure.wp-block-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: var(--masonry-item-width) !important;
  height: var(--masonry-item-height) !important;
  margin: 0 !important;
  transform: translate3d(
    var(--masonry-x),
    var(--masonry-y),
    0
  ) !important;
}

.single-story
  .wp-block-gallery.is-masonry-ready
  > figure.wp-block-image
  img {
  width: 100% !important;
  height: var(--masonry-image-height) !important;
  object-fit: contain !important;
}

.single-story
  .wp-block-gallery.is-masonry-ready
  > figure.wp-block-image
  figcaption {
  position: static;
  width: 100%;
  margin: 0.55rem 0 0;
  padding: 0;
  background: none;
  color: var(--muted-ink);
  font-size: 0.72rem;
  line-height: 1.4;
}


@media (prefers-reduced-motion: no-preference) {
  @keyframes gentle-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-content > * {
    animation: gentle-rise 0.8s ease both;
  }

  .hero-content > :nth-child(2) {
    animation-delay: 0.08s;
  }

  .hero-content > :nth-child(3) {
    animation-delay: 0.16s;
  }

  .hero-content > :nth-child(4),
  .hero-content > :nth-child(5) {
    animation-delay: 0.24s;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* WordPress Full Site Editing integration */
.wp-site-blocks,
.wp-site-blocks > *,
.wp-block-post-content,
.wp-block-post-content > * {
  margin-block-start: 0;
}

.wp-site-blocks {
  overflow: clip;
}

.site-main {
  max-width: none !important;
}

.site-main > .wp-block-post-content {
  max-width: none !important;
}

.site-header .wp-block-navigation {
  background: transparent;
}

.site-header .wp-block-navigation__container {
  gap: clamp(0.8rem, 1.45vw, 1.7rem);
}

.site-header .wp-block-navigation-item__content {
  position: relative;
  white-space: nowrap;
}

.site-header .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-header .wp-block-navigation-item__content:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header .header-cta-wrap {
  margin: 0;
}

.site-header .header-cta .wp-block-button__link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  background: var(--rust);
  color: var(--ink);
  border: 1px solid var(--rust);
}

.home .site-header:not(.is-scrolled) {
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(42, 35, 30, 0.58),
    rgba(42, 35, 30, 0.12)
  );
  border-color: rgba(255, 255, 255, 0.24);
  text-shadow: 0 1px 14px rgba(42, 35, 30, 0.48);
}

.home .site-header:not(.is-scrolled) .wp-block-button__link {
  text-shadow: none;
}

.mobile-bottom-cta-wrap {
  display: none !important;
}

.wp-block-navigation__responsive-container.is-menu-open {
  background: var(--paper) !important;
  color: var(--ink) !important;
  padding: 7rem 1.5rem 2rem;
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content {
  align-items: flex-start;
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__container {
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item__content {
  width: 100%;
  padding: 1.05rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 8vw, 3.5rem);
  letter-spacing: -0.03em;
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  color: currentColor;
}

.wp-block-navigation__responsive-container-close {
  top: 1.75rem;
  right: 1.5rem;
}

.wp-block-post-featured-image img,
.wp-block-image img {
  width: 100%;
  height: auto;
}

.wp-block-image.image-slot {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.wp-block-image.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-block-image.image-slot figcaption {
  position: absolute;
  inset: auto 1.2rem 1rem;
  margin: 0;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(42, 35, 30, 0.7);
}

.wp-block-image.ratio-hero {
  aspect-ratio: 16 / 9;
}

.wp-block-image.ratio-wide {
  aspect-ratio: 16 / 10;
}

.wp-block-image.ratio-landscape {
  aspect-ratio: 4 / 3;
}

.wp-block-image.ratio-portrait {
  aspect-ratio: 4 / 5;
}

.wp-block-image.ratio-square {
  aspect-ratio: 1;
}

.wp-block-button .wp-block-button__link,
.us-global-cta .wp-block-button__link {
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 58px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.wp-block-button .wp-block-button__link:hover,
.us-global-cta .wp-block-button__link:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.section-shell {
  width: min(92vw, 1380px);
  max-width: none !important;
  margin-inline: auto !important;
}

.simple-page-title {
  padding-top: 9rem;
  padding-bottom: 3rem;
}

.simple-page-title h1 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.69rem;
  font-weight: 600;
}

.editorial-query-grid,
.story-grid,
.guide-grid {
  gap: clamp(1.4rem, 2.5vw, 3rem);
}

.story-card,
.guide-card {
  margin: 0;
}

.story-card .wp-block-post-featured-image,
.guide-card .wp-block-post-featured-image {
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.story-card .wp-block-post-featured-image img,
.guide-card .wp-block-post-featured-image img {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-card:hover .wp-block-post-featured-image img,
.guide-card:hover .wp-block-post-featured-image img {
  transform: scale(1.025);
}

.story-card h2,
.guide-card h2 {
  margin: 0.7rem 0;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
}

.story-card-meta {
  margin-top: 0.7rem;
  color: var(--muted-ink);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card-meta .wp-block-post-terms {
  margin: 0;
}

.story-card .wp-block-post-excerpt__more-link,
.guide-card .wp-block-post-excerpt__more-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.single-story .wordpress-story-cover,
.single-guide .guide-article-hero {
  margin-top: 0;
}

.single-story .wordpress-story-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-story .wordpress-story-intro .wp-block-post-excerpt__more-text {
  display: none;
}

.single-story .wordpress-gallery-section .wp-block-post-content {
  width: min(94vw, 1560px);
  max-width: none !important;
  margin-inline: auto;
  padding-bottom: 8rem;
}

.single-story .wp-block-gallery {
  align-items: start;
  gap: clamp(0.7rem, 1.2vw, 1.35rem) !important;
}

.single-story .wp-block-gallery .wp-block-image {
  align-self: start;
}

.single-story .wp-block-gallery .wp-block-image img {
  height: auto !important;
  object-fit: contain !important;
}

.single-guide .guide-content {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.single-guide .guide-content > * {
  max-width: 820px;
  margin-inline: auto;
}

.single-guide .guide-content h2 {
  margin-top: 4.5rem;
  font-size: clamp(2rem, 4vw, 4.3rem);
}

.single-guide .guide-content p,
.single-guide .guide-content li {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.85;
}

.fluentform {
  --fluentform-primary: var(--rust);
}

.fluentform .ff-el-form-control {
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0.9rem 0 !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}

.fluentform .ff-el-input--label label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fluentform .ff-btn-submit {
  width: 100%;
  border-radius: 0 !important;
  background: var(--rust) !important;
  border: 1px solid var(--rust) !important;
  color: var(--ink) !important;
  padding: 1.1rem 1.5rem !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.us-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gentle-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto;
  }

  .site-header .desktop-nav {
    order: 3;
  }

  .site-header .header-cta-wrap {
    display: none;
  }

  .site-header .wp-block-navigation__responsive-container-open {
    display: flex;
  }

  .site-header
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    height: 72px;
    padding-inline: 1.2rem;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .mobile-bottom-cta-wrap {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: block !important;
    margin: 0 !important;
  }

  .mobile-bottom-cta {
    width: 100%;
  }

  .mobile-bottom-cta .wp-block-button__link {
    width: 100%;
    min-height: 58px;
    justify-content: center;
    background: var(--rust);
    color: var(--ink);
  }

  .wp-block-image.ratio-hero,
  .wp-block-image.ratio-wide {
    aspect-ratio: 4 / 5;
  }

  .editorial-query-grid,
  .story-grid,
  .guide-grid {
    grid-template-columns: 1fr !important;
  }

  .single-story .wp-block-gallery {
    grid-template-columns: 1fr !important;
  }

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

/* WordPress layout repair — 1.1.0
 *
 * Gutenberg adds structural wrappers around Columns and Query Loop items.
 * The original visual rules were written for the inner content, so applying
 * those grids to the outer Group blocks created a second, competing layout.
 * These rules put every grid on the wrapper that owns the actual columns.
 */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.wp-site-blocks,
.site-main,
.wp-block-post-content,
.wp-block-columns,
.wp-block-column,
.wp-block-query,
.wp-block-post-template,
.wp-block-post-template > li {
  min-width: 0;
}

.page-hero,
.split-editorial,
.camera-section,
.pricing-intro,
.booking-section,
.meaning-section,
.help-section,
.why-section,
.serg-note,
.contact-layout,
.guides-intro {
  display: block !important;
}

.page-hero {
  min-height: 0;
}

.page-hero > .page-hero-grid {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 !important;
  align-items: stretch;
}

.page-hero-grid > .wp-block-column {
  min-width: 0;
}

.page-hero-copy {
  min-height: clamp(660px, 82svh, 820px);
  padding: clamp(8.5rem, 12vw, 11rem) 5vw clamp(3.5rem, 6vw, 5.5rem);
}

.page-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  overflow-wrap: anywhere;
}

.page-hero-grid > .wp-block-column:last-child,
.page-hero-grid > .wp-block-column:last-child > .image-slot {
  width: 100%;
  height: clamp(660px, 82svh, 820px);
  min-height: 0;
}

.page-hero-grid > .wp-block-column:last-child > .image-slot {
  aspect-ratio: auto !important;
}

.split-editorial > .split-editorial-grid,
.camera-section > .camera-section-grid,
.pricing-intro > .pricing-intro-grid,
.booking-section > .booking-grid,
.meaning-section > .meaning-grid,
.help-section > .help-grid,
.why-section > .why-grid,
.serg-note > .serg-note-grid,
.guides-intro > .guides-intro-grid {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  align-items: center;
}

.split-editorial > .split-editorial-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.68fr);
  gap: clamp(3rem, 8vw, 9rem) !important;
}

.camera-section > .camera-section-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem) !important;
}

.camera-section > .camera-section-grid,
.meaning-section > .meaning-grid,
.serg-note > .serg-note-grid {
  max-width: none !important;
}

.pricing-intro > .pricing-intro-grid,
.why-section > .why-grid,
.guides-intro > .guides-intro-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem) !important;
  padding-top: 0;
}

.pricing-intro-grid > .wp-block-column:last-child,
.why-grid > .wp-block-column:last-child,
.guides-intro-grid > .wp-block-column:last-child {
  padding-top: 3rem;
}

.booking-section > .booking-grid,
.help-section > .help-grid {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem) !important;
  align-items: start;
}

.meaning-section > .meaning-grid {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem) !important;
}

.serg-note > .serg-note-grid {
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem) !important;
}

.team-teaser,
.destinations-section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.team-teaser > .team-teaser-grid,
.destinations-section > .destinations-grid {
  width: min(92vw, 1380px);
  max-width: none !important;
  margin: 0 auto !important;
  display: grid !important;
  align-items: center;
}

.team-teaser > .team-teaser-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(3rem, 7vw, 8rem) !important;
}

.destinations-section > .destinations-grid {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem) !important;
}

.team-teaser-grid > .wp-block-column,
.destinations-grid > .wp-block-column,
.split-editorial-grid > .wp-block-column,
.camera-section-grid > .wp-block-column,
.pricing-intro-grid > .wp-block-column,
.booking-grid > .wp-block-column,
.meaning-grid > .wp-block-column,
.help-grid > .wp-block-column,
.why-grid > .wp-block-column,
.serg-note-grid > .wp-block-column,
.guides-intro-grid > .wp-block-column {
  min-width: 0;
}

.team-teaser-grid .team-slots {
  grid-column: auto;
}

.service-list,
.seven-step-list {
  display: block !important;
  grid-template-columns: none !important;
  width: 100%;
}

.service-list > article,
.seven-step-list > article {
  width: 100%;
  min-width: 0;
  grid-template-columns:
    minmax(52px, 80px)
    minmax(180px, 0.72fr)
    minmax(280px, 1.08fr);
}

.service-list > article > *,
.seven-step-list > article > * {
  min-width: 0;
  overflow-wrap: break-word;
}

.wp-block-query.guides-grid {
  display: block !important;
}

.story-grid,
.guide-grid {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  list-style: none;
}

.story-grid > li,
.guide-grid > li {
  width: auto;
  min-width: 0;
  margin: 0;
}

.story-grid .story-card,
.guide-grid .guide-card {
  width: 100%;
  min-width: 0;
  grid-column: auto;
}

.story-grid .story-card h2,
.guide-grid .guide-card h2,
.story-grid .story-card p,
.guide-grid .guide-card p {
  overflow-wrap: break-word;
}

.global-inquiry-number {
  right: 0;
  font-size: clamp(10rem, 22vw, 24rem);
}

.contact-layout > .contact-columns {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0 !important;
  align-items: stretch;
}

.contact-columns > .wp-block-column {
  min-width: 0;
}

.contact-visual {
  height: min(900px, 100svh);
  max-height: 900px;
}

.contact-visual > .image-slot {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  aspect-ratio: auto !important;
}

.contact-heading {
  padding-inline: clamp(1.75rem, 5vw, 5.75rem);
}

.contact-heading h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 5.3vw, 6.3rem);
  overflow-wrap: anywhere;
}

.contact-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 0.4rem 1.25rem;
}

.contact-details > * {
  min-width: 0;
  padding-top: 0.75rem;
  overflow-wrap: anywhere;
}

.contact-details > :nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.contact-details > :nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.contact-details > :nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.contact-details > :nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.contact-details > :nth-child(5) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.inquire-anchor {
  padding-inline: clamp(1.75rem, 5vw, 5.75rem);
}

.fluentform,
.fluentform form,
.fluentform .ff-el-group,
.fluentform .ff-el-input--content,
.fluentform .ff-t-container,
.fluentform .ff-t-cell,
.fluentform .ff-el-form-control {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.fluentform textarea.ff-el-form-control {
  resize: vertical;
}

.wordpress-story-cover {
  min-height: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, 0.85fr);
}

.wordpress-story-cover-image {
  width: 100%;
  height: clamp(680px, 82svh, 840px);
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

.wordpress-story-cover-image > img {
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

.wordpress-story-cover-copy {
  min-width: 0;
  min-height: clamp(680px, 82svh, 840px);
  padding: clamp(8rem, 11vw, 10rem) 4.5vw clamp(3.5rem, 6vw, 5rem);
}

.wordpress-story-cover-copy h1 {
  font-size: clamp(3.4rem, 4.8vw, 5.6rem);
  overflow-wrap: anywhere;
}

.single-story .wordpress-story-intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.single-story .wp-block-gallery {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: start !important;
}

.single-story .wp-block-gallery.has-nested-images figure.wp-block-image,
.single-story .wp-block-gallery figure.wp-block-image {
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  display: block !important;
}

.single-story .wp-block-gallery figure.wp-block-image a {
  display: block;
}

.single-story .wp-block-gallery figure.wp-block-image img {
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.guide-article-hero {
  height: clamp(620px, 76svh, 760px);
  min-height: 0;
}

.guide-article-hero > .wp-block-post-featured-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.guide-article-hero > .wp-block-post-featured-image img {
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}

.guide-article-title {
  bottom: clamp(3rem, 6vw, 5rem);
}

.guide-article-title h1 {
  max-width: 1040px;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  overflow-wrap: anywhere;
}

.legal-page > header h1 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  overflow-wrap: anywhere;
}

@media (min-width: 1181px) {
  .site-header .wp-block-navigation-item__content,
  .desktop-nav a {
    font-size: 0.82rem;
  }
}

@media (max-width: 1180px) {
  .site-header .desktop-nav {
    display: flex !important;
  }

  .site-header .header-cta-wrap {
    display: none !important;
  }

  .site-header .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }

  .site-header
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none !important;
  }

  .story-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .service-list > article,
  .seven-step-list > article {
    grid-template-columns:
      minmax(48px, 64px)
      minmax(170px, 0.65fr)
      minmax(240px, 1fr);
  }

  .team-teaser > .team-teaser-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  }
}

@media (max-width: 980px) {
  .page-hero > .page-hero-grid,
  .split-editorial > .split-editorial-grid,
  .camera-section > .camera-section-grid,
  .pricing-intro > .pricing-intro-grid,
  .booking-section > .booking-grid,
  .meaning-section > .meaning-grid,
  .help-section > .help-grid,
  .why-section > .why-grid,
  .serg-note > .serg-note-grid,
  .guides-intro > .guides-intro-grid,
  .team-teaser > .team-teaser-grid,
  .destinations-section > .destinations-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .page-hero-copy {
    min-height: auto;
    padding-top: 9rem;
  }

  .page-hero-grid > .wp-block-column:last-child,
  .page-hero-grid > .wp-block-column:last-child > .image-slot {
    height: auto;
    min-height: 0;
  }

  .page-hero-grid > .wp-block-column:last-child > .image-slot {
    aspect-ratio: 16 / 9 !important;
  }

  .split-editorial-grid > .wp-block-column:last-child {
    grid-row: 1;
  }

  .pricing-intro-grid > .wp-block-column:last-child,
  .why-grid > .wp-block-column:last-child,
  .guides-intro-grid > .wp-block-column:last-child {
    padding-top: 0;
  }

  .team-teaser-grid .team-slots {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .contact-layout > .contact-columns {
    display: flex !important;
    flex-direction: column;
  }

  .contact-columns > .wp-block-column:first-child {
    order: 2;
  }

  .contact-columns > .wp-block-column:last-child {
    order: 1;
  }

  .contact-visual {
    position: relative;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .contact-heading {
    padding-top: 9rem;
  }

  .wordpress-story-cover {
    grid-template-columns: minmax(0, 1fr);
  }

  .wordpress-story-cover-image {
    height: auto;
    aspect-ratio: 16 / 10 !important;
  }

  .wordpress-story-cover-copy {
    min-height: auto;
    padding-top: 4rem;
  }

  .single-story .wordpress-story-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-story .wp-block-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(calc(100% - 2.4rem), 680px);
  }

  .page-hero-copy {
    min-height: auto;
    padding: 7.5rem 1.2rem 3.5rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .page-hero-grid > .wp-block-column:last-child > .image-slot,
  .wp-block-image.ratio-hero,
  .wp-block-image.ratio-wide {
    height: auto;
    aspect-ratio: 4 / 3 !important;
  }

  .split-editorial > .split-editorial-grid,
  .camera-section > .camera-section-grid,
  .pricing-intro > .pricing-intro-grid,
  .booking-section > .booking-grid,
  .meaning-section > .meaning-grid,
  .help-section > .help-grid,
  .why-section > .why-grid,
  .serg-note > .serg-note-grid,
  .guides-intro > .guides-intro-grid,
  .team-teaser > .team-teaser-grid,
  .destinations-section > .destinations-grid {
    gap: 2.5rem !important;
  }

  .team-teaser,
  .destinations-section {
    padding-block: 5.5rem;
  }

  .team-teaser > .team-teaser-grid,
  .destinations-section > .destinations-grid {
    width: calc(100% - 2.4rem);
  }

  .team-teaser-grid .team-slots {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-teaser-grid .team-slots .image-slot:last-child {
    width: 100%;
  }

  .service-list > article,
  .seven-step-list > article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.8rem 1rem;
  }

  .service-list > article p,
  .seven-step-list > article p {
    grid-column: 2;
  }

  .story-grid,
  .guide-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 3.5rem !important;
  }

  .global-inquiry-number {
    right: -1rem;
    font-size: clamp(9rem, 48vw, 14rem);
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .contact-heading,
  .inquire-anchor {
    padding-inline: 1.2rem;
  }

  .contact-heading {
    padding-top: 7.5rem;
  }

  .contact-heading h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .contact-details {
    display: block;
  }

  .contact-details > * {
    display: block;
    padding-top: 0.55rem;
  }

  .contact-details > :nth-child(1),
  .contact-details > :nth-child(3),
  .contact-details > :nth-child(5) {
    margin-top: 0.7rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .contact-visual {
    max-height: 430px;
    aspect-ratio: 4 / 3;
  }

  .fluentform .ff-t-container {
    display: block;
  }

  .fluentform .ff-t-cell {
    margin: 0 0 1rem !important;
  }

  .wordpress-story-cover-image {
    height: auto;
    aspect-ratio: 4 / 3 !important;
  }

  .wordpress-story-cover-image > img {
    object-fit: cover !important;
  }

  .wordpress-story-cover-copy {
    min-height: auto;
    padding: 3.25rem 1.2rem 4.5rem;
  }

  .wordpress-story-cover-copy h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .single-story .wp-block-gallery {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .guide-article-hero {
    height: clamp(540px, 76svh, 660px);
  }

  .guide-article-title {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 2.5rem;
  }

  .guide-article-title h1,
  .legal-page > header h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .legal-page {
    width: calc(100% - 2.4rem);
  }
}

/* WordPress live-site repair — 1.2.0 */

/* Never let the reveal script hide an entire page or article wrapper. */
.wp-block-post-content.gentle-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Form controls sit on the dark inquiry panel, so entered values must be light. */
.inquire-anchor .fluentform .ff-el-form-control,
.inquire-anchor .fluentform input:not([type="submit"]),
.inquire-anchor .fluentform textarea,
.inquire-anchor .fluentform select {
  color: var(--paper) !important;
  caret-color: var(--rust) !important;
  -webkit-text-fill-color: var(--paper) !important;
  color-scheme: dark;
}

.inquire-anchor .fluentform .ff-el-form-control::placeholder,
.inquire-anchor .fluentform input::placeholder,
.inquire-anchor .fluentform textarea::placeholder {
  color: rgba(250, 243, 232, 0.58) !important;
  opacity: 1 !important;
  -webkit-text-fill-color: rgba(250, 243, 232, 0.58) !important;
}

.inquire-anchor .fluentform select option {
  background: var(--paper);
  color: var(--ink);
}

.inquire-anchor .fluentform input:-webkit-autofill,
.inquire-anchor .fluentform input:-webkit-autofill:hover,
.inquire-anchor .fluentform input:-webkit-autofill:focus,
.inquire-anchor .fluentform textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--ink) inset !important;
  -webkit-text-fill-color: var(--paper) !important;
  caret-color: var(--rust) !important;
}

.inquire-anchor .fluentform .ff-el-form-control::selection {
  background: var(--rust);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

/*
 * Match the dark feature grids to the same centered content width used by
 * Contact → “After you press send”, while keeping the dark background full.
 */
.included-section,
.seven-steps,
.approach-section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.included-section > .section-heading,
.included-section > .included-grid,
.seven-steps > .section-heading,
.seven-steps > .seven-step-list,
.seven-steps > .wp-block-buttons,
.approach-section > .section-heading,
.approach-section > .approach-grid {
  width: min(92vw, 1380px);
  max-width: none !important;
  margin-inline: auto !important;
}

@media (max-width: 760px) {
  .included-section,
  .seven-steps,
  .approach-section {
    padding-block: 5.5rem;
  }

  .included-section > .section-heading,
  .included-section > .included-grid,
  .seven-steps > .section-heading,
  .seven-steps > .seven-step-list,
  .seven-steps > .wp-block-buttons,
  .approach-section > .section-heading,
  .approach-section > .approach-grid {
    width: calc(100% - 2.4rem);
  }
}

/* WordPress live-site repair — 1.3.0 */

/*
 * Keep the Home services background full-bleed while matching the centered
 * content width used by Contact → “After you press send”.
 */
.services-section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.services-section > .section-heading,
.services-section > .service-list,
.services-section > .wp-block-buttons {
  width: min(92vw, 1380px);
  max-width: none !important;
  margin-inline: auto !important;
}

/*
 * Package media types are decision-critical. Present the label as a clear,
 * high-contrast badge instead of a small eyebrow.
 */
.package-card .package-label {
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  margin: 0 0 0.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(185, 86, 54, 0.58);
  background: rgba(216, 115, 79, 0.13);
  color: var(--ink);
  font-size: clamp(0.68rem, 0.78vw, 0.8rem);
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.package-card.featured .package-label {
  border-color: var(--rust);
  background: var(--rust);
  color: var(--ink);
}

.package-card .package-subtitle {
  margin: 1.25rem 0 2.5rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

/*
 * These ordered lists contain plain text nodes. Flex layout plus generated
 * counters gives the text a real flexible column and prevents the 50px wrap.
 */
.booking-grid .booking-steps,
.help-grid .help-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: unmapped-step;
  border-top: 1px solid var(--line);
}

.booking-grid .booking-steps > li,
.help-grid .help-list > li {
  min-width: 0;
  padding: 1.2rem 0;
  display: flex !important;
  grid-template-columns: none !important;
  gap: 1rem;
  align-items: flex-start;
  counter-increment: unmapped-step;
  border-bottom: 1px solid var(--line);
  overflow-wrap: normal;
  word-break: normal;
}

.booking-grid .booking-steps > li {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.2;
}

.help-grid .help-list > li {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.25;
}

.booking-grid .booking-steps > li::before,
.help-grid .help-list > li::before {
  content: counter(unmapped-step, decimal-leading-zero);
  flex: 0 0 2.5rem;
  padding-top: 0.28rem;
  color: var(--muted-ink);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* Show more high-priority locations without turning the Home page into a wall. */
.destination-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  counter-reset: unmapped-destination;
}

.destination-list > li {
  min-width: 0;
  padding: 0.8rem 0.9rem 0.8rem 0;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.35rem;
  counter-increment: unmapped-destination;
  border-bottom: 1px solid rgba(250, 243, 232, 0.3);
  color: var(--paper);
  line-height: 1.35;
}

.destination-list > li:nth-child(odd) {
  margin-right: 1.1rem;
}

.destination-list > li::before {
  content: counter(unmapped-destination, decimal-leading-zero);
  padding-top: 0.18rem;
  color: rgba(250, 243, 232, 0.6);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 0.45rem !important;
}

.footer-contact-row > *,
.footer-contact-row .us-social-links,
.footer-contact-row .us-social-links li {
  margin: 0 !important;
}

.footer-contact-row .us-social-links {
  padding: 0;
  list-style: none;
}

.footer-contact-label {
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .services-section {
    padding-block: 5.5rem;
  }

  .services-section > .section-heading,
  .services-section > .service-list,
  .services-section > .wp-block-buttons {
    width: calc(100% - 2.4rem);
  }

  .destination-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .destination-list > li:nth-child(odd) {
    margin-right: 0;
  }
}

/* WordPress gallery + Guide article repair — 1.4.0 */

/*
 * Story galleries stay native Gutenberg galleries: one multi-file upload,
 * source-order lightbox navigation and no crop for mixed orientations.
 */
.single-story .wp-block-gallery,
.editor-styles-wrapper .wp-block-gallery.unmapped-story-gallery,
.editor-styles-wrapper .wp-block-gallery.story-demo-gallery {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.55rem, 1vw, 1.15rem) !important;
  align-items: start !important;
}

.single-story .wp-block-gallery.has-nested-images figure.wp-block-image,
.single-story .wp-block-gallery figure.wp-block-image,
.editor-styles-wrapper
  .wp-block-gallery.unmapped-story-gallery
  figure.wp-block-image,
.editor-styles-wrapper
  .wp-block-gallery.story-demo-gallery
  figure.wp-block-image {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  display: block !important;
  align-self: start !important;
  flex: none !important;
}

.single-story .wp-block-gallery figure.wp-block-image > a,
.editor-styles-wrapper
  .wp-block-gallery.unmapped-story-gallery
  figure.wp-block-image
  > a,
.editor-styles-wrapper
  .wp-block-gallery.story-demo-gallery
  figure.wp-block-image
  > a {
  width: 100%;
  display: block;
}

.single-story .wp-block-gallery figure.wp-block-image img,
.editor-styles-wrapper
  .wp-block-gallery.unmapped-story-gallery
  figure.wp-block-image
  img,
.editor-styles-wrapper
  .wp-block-gallery.story-demo-gallery
  figure.wp-block-image
  img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  display: block !important;
  object-fit: contain !important;
  flex: none !important;
}

/*
 * The Guide hero is truly edge-to-edge. The title area has its own readable
 * measure so long SEO titles do not create a narrow or off-screen column.
 */
.single-guide .guide-article-hero {
  width: 100% !important;
  max-width: none !important;
  height: clamp(650px, 78svh, 820px);
  margin: 0 !important;
  padding: 0 !important;
  isolation: isolate;
}

.single-guide .guide-article-hero > .wp-block-post-featured-image {
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
}

.single-guide .guide-article-hero > .wp-block-post-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.single-guide .guide-article-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(42, 35, 30, 0.76) 0%,
      rgba(42, 35, 30, 0.28) 58%,
      rgba(42, 35, 30, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(42, 35, 30, 0.82) 0%,
      rgba(42, 35, 30, 0.12) 64%,
      rgba(42, 35, 30, 0.2) 100%
    );
}

.single-guide .guide-article-title {
  left: 50% !important;
  right: auto !important;
  bottom: clamp(3.25rem, 7vw, 6.25rem);
  width: min(calc(100% - 8vw), 1380px);
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%);
}

.single-guide .guide-article-title .story-back {
  margin: 0 0 clamp(1.6rem, 3vw, 2.5rem);
}

.single-guide .guide-article-title .eyebrow {
  margin: 0 0 1rem;
}

.single-guide .guide-article-title h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(3.35rem, 5.45vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.single-guide .guide-article-title .wp-block-post-excerpt {
  max-width: 760px;
  margin-top: clamp(1.25rem, 2.2vw, 1.9rem);
}

.single-guide .guide-article-title .wp-block-post-excerpt__excerpt,
.single-guide .guide-article-title > p:not(.eyebrow, .story-back) {
  max-width: 760px;
  margin: 0;
  color: rgba(250, 243, 232, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

/*
 * Editorial article rhythm: a comfortable reading column, wider media,
 * visible hierarchy and predictable spacing for generated SEO articles.
 */
.single-guide .guide-content {
  width: min(calc(100% - 3rem), 1040px);
  max-width: none !important;
  margin-inline: auto !important;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.single-guide .guide-content > * {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
}

.single-guide .guide-content > .alignwide,
.single-guide .guide-content > .wp-block-image,
.single-guide .guide-content > .wp-block-gallery,
.single-guide .guide-content > .wp-block-cover,
.single-guide .guide-content > figure {
  max-width: 1040px;
}

.single-guide .guide-content > .alignfull {
  width: min(100vw, 1440px);
  max-width: min(100vw, 1440px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.single-guide .guide-content > .guide-lead,
.single-guide .guide-content > p:first-child {
  max-width: 860px;
  margin-top: 0;
  margin-bottom: clamp(4.5rem, 8vw, 7.5rem);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.single-guide .guide-content > section,
.single-guide .guide-content > .guide-section {
  max-width: 860px;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.single-guide .guide-content h2 {
  max-width: 820px;
  margin: 0 0 clamp(1.5rem, 2.5vw, 2.25rem);
  font-size: clamp(2.55rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.032em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.single-guide .guide-content h3 {
  max-width: 780px;
  margin: clamp(3.5rem, 6vw, 5.5rem) auto 1.2rem;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.single-guide .guide-content h4 {
  margin: 2.75rem auto 0.9rem;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.single-guide .guide-content p,
.single-guide .guide-content li {
  color: var(--muted-ink);
  font-size: clamp(1.04rem, 1.28vw, 1.2rem);
  line-height: 1.78;
}

.single-guide .guide-content p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.single-guide .guide-content ul,
.single-guide .guide-content ol {
  margin-top: 1.8rem;
  margin-bottom: 2.2rem;
  padding-left: 1.35rem;
}

.single-guide .guide-content li + li {
  margin-top: 0.6rem;
}

.single-guide .guide-content blockquote {
  max-width: 900px;
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border: 0;
  border-left: 3px solid var(--rust);
  background: var(--sand);
}

.single-guide .guide-content blockquote p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.3;
}

.single-guide .guide-content figure,
.single-guide .guide-content .wp-block-gallery,
.single-guide .guide-content .wp-block-cover,
.single-guide .guide-content .wp-block-video {
  margin-top: clamp(3.25rem, 6vw, 6rem);
  margin-bottom: clamp(3.25rem, 6vw, 6rem);
}

.single-guide .guide-content figcaption {
  margin-top: 0.8rem;
  color: var(--muted-ink);
  font-size: 0.78rem;
  line-height: 1.5;
}

.single-guide .guide-content .guide-checklist {
  max-width: 900px;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-top: 0;
}

@media (max-width: 980px) {
  .single-story .wp-block-gallery,
  .editor-styles-wrapper .wp-block-gallery.unmapped-story-gallery,
  .editor-styles-wrapper .wp-block-gallery.story-demo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .single-guide .guide-article-title {
    width: min(calc(100% - 3rem), 900px);
  }

  .single-guide .guide-article-title h1 {
    font-size: clamp(3.2rem, 8vw, 5rem);
  }
}

@media (max-width: 760px) {
  .single-story .wp-block-gallery,
  .editor-styles-wrapper .wp-block-gallery.unmapped-story-gallery,
  .editor-styles-wrapper .wp-block-gallery.story-demo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
  }

  .single-guide .guide-article-hero {
    height: clamp(570px, 78svh, 720px);
  }

  .single-guide .guide-article-title {
    bottom: 2.35rem;
    width: calc(100% - 2.4rem);
  }

  .single-guide .guide-article-title .story-back {
    margin-bottom: 1.5rem;
  }

  .single-guide .guide-article-title h1 {
    font-size: clamp(2.65rem, 11.5vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }

  .single-guide .guide-article-title .wp-block-post-excerpt {
    margin-top: 1rem;
  }

  .single-guide .guide-article-title .wp-block-post-excerpt__excerpt,
  .single-guide .guide-article-title > p:not(.eyebrow, .story-back) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .single-guide .guide-content {
    width: calc(100% - 2.4rem);
    padding-block: 4.5rem 6rem;
  }

  .single-guide .guide-content > .guide-lead,
  .single-guide .guide-content > p:first-child {
    margin-bottom: 4.5rem;
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.42;
  }

  .single-guide .guide-content > section,
  .single-guide .guide-content > .guide-section {
    padding: 3.75rem 0;
  }

  .single-guide .guide-content h2 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.25rem, 10vw, 3.5rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .single-guide .guide-content h3 {
    margin-top: 3.25rem;
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .single-guide .guide-content p,
  .single-guide .guide-content li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .single-guide .guide-content .guide-checklist {
    width: calc(100% + 1.2rem);
    margin-left: -0.6rem;
    padding: 2.4rem 1.2rem;
  }
}
