:root {
  --navy: #19203D;
  --navy-dark: #11182F;
  --brown: #544133;
  --olive: #303719;
  --stone: #C6BDB4;
  --cream: #E3E0DB;
  --ivory: #E3E0DB;
  --white: #ffffff;
  --black: #111111;
  --muted: #C6BDB4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

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

.nav {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo {
  letter-spacing: 3px;
  font-size: 22px;
}

.logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--muted);
  margin-top: 4px;
}

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

.nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.nav-btn {
  background: var(--olive);
  padding: 14px 24px;
}

.hero {
  min-height: 92vh;
  min-height: 92svh;
  background-image: url("images/hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 7%;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,.82), rgba(84,65,51,.32), rgba(25,32,61,.16));
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero h2 {
  font-size: clamp(32px, 2.8vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 30px;
}

.hero-title-line {
  display: block;
}

@media (min-width: 901px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

.accent-line,
.small-line {
  width: 55px;
  height: 2px;
  background: var(--olive);
  margin: 24px 0;
}

.hero p {
  max-width: 330px;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-trust {
  margin-top: 34px;
  margin-bottom: 0;
  max-width: 520px;
  color: rgba(227,224,219,.78);
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
}

.hero-buttons a,
.lookbook-btn,
.contact-buttons a,
.schedule-response a {
  text-decoration: none;
  color: white;
  background: var(--olive);
  padding: 16px 30px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  border: 1px solid var(--olive);
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.25;
  touch-action: manipulation;
}

.hero-buttons a:hover,
.lookbook-btn:hover,
.contact-buttons a:hover,
.schedule-response a:hover,
.nav-btn:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.hero-buttons .outline {
  background: transparent;
  border-color: var(--muted);
}

.hero-buttons .schedule-cta {
  background: var(--brown);
  border-color: var(--brown);
}

.hero-buttons .schedule-cta:hover {
  background: var(--olive);
  border-color: var(--olive);
}

.hero-buttons .outline:hover {
  background: var(--olive);
  border-color: var(--olive);
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
  padding: 70px 13%;
  background: var(--cream);
}

.philosophy img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 330px;
  object-fit: cover;
}

.philosophy span {
  text-transform: uppercase;
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 2px;
}

.philosophy h3 {
  font-size: 32px;
  font-weight: 400;
  margin: 22px 0;
}

.philosophy p {
  font-size: 16px;
  line-height: 1.7;
}

.signature {
  margin-top: 20px;
  font-style: italic;
  font-size: 28px;
}

.identity-pathway {
  position: relative;
  min-height: 220vh;
  background:
    linear-gradient(135deg, rgba(84,65,51,.58), rgba(25,32,61,.48) 34%, rgba(17,24,47,.92) 100%),
    linear-gradient(180deg, var(--navy-dark), var(--navy) 48%, var(--black));
  color: white;
  overflow: clip;
}

.identity-pathway::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(227,224,219,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(227,224,219,.035) 1px, transparent 1px);
  background-size: 28vw 100%, 100% 34vh;
  opacity: .32;
  pointer-events: none;
}

.identity-pathway-inner {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  padding: 86px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.identity-pathway-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.identity-pathway-heading span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.identity-pathway-heading h3 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.identity-stage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.identity-stage {
  position: relative;
  min-height: 220px;
  padding: 24px 22px 26px;
  border-top: 1px solid rgba(227,224,219,.18);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease, border-color .55s ease, filter .55s ease;
  filter: blur(2px);
}

.identity-stage.is-visible {
  opacity: .42;
  transform: translateY(0);
  filter: blur(0);
}

.identity-stage.is-active {
  opacity: 1;
  border-color: rgba(227,224,219,.72);
}

.identity-stage::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--olive);
  box-shadow: 0 0 18px rgba(66,71,31,.64);
  transition: width .55s ease;
}

.identity-stage.is-active::before {
  width: 100%;
}

.identity-stage span {
  display: block;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 3px;
}

.identity-stage h4 {
  min-height: 58px;
  margin-bottom: 16px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
}

.identity-stage p {
  max-width: 280px;
  color: rgba(227,224,219,.82);
  font-size: 15px;
  line-height: 1.55;
}

.identity-progress {
  height: 1px;
  margin-top: 38px;
  background: rgba(227,224,219,.16);
  overflow: hidden;
}

.identity-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--olive), var(--muted), rgba(227,224,219,.92));
  transform: scaleX(.08);
  transform-origin: left center;
  transition: transform .25s ease;
}

.identity-final {
  margin-top: 40px;
  color: var(--cream);
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.04;
  font-style: italic;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.lookbook {
  position: relative;
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  color: white;
  padding: 82px 7% 80px;
  text-align: center;
}

.lookbook::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: min(160px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive), var(--muted), transparent);
  opacity: .72;
  transform: translateX(-50%);
}

.lookbook h3,
.experience h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 26px;
  font-weight: 400;
}

.lookbook .small-line,
.experience .small-line {
  margin: 18px auto 36px;
}

.grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.card {
  color: white;
  text-decoration: none;
  min-height: 240px;
  aspect-ratio: 3 / 4;
  background: #19203D;
  position: relative;
  text-align: left;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
}

.card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.lookbook-card {
  display: block;
}

.lookbook-card span {
  z-index: 5;
}

.lookbook-card-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.lookbook-card-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #19203D;
}

.lookbook-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  width: 34px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(7,17,27,.48);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
}

.lookbook-card-arrow:hover,
.lookbook-card-arrow:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
}

.lookbook-card-arrow.prev {
  left: 12px;
}

.lookbook-card-arrow.next {
  right: 12px;
}

.lookbook-card-dots {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 82px;
  z-index: 6;
  display: flex;
  gap: 7px;
}

.lookbook-card-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.lookbook-card-dot.is-active {
  background: white;
}

.category-detail {
  padding: 90px 7%;
  background: var(--cream);
  scroll-margin-top: 24px;
}

.category-detail:nth-of-type(even) {
  background: var(--navy);
  color: white;
}

.category-hero {
  max-width: min(780px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.category-hero img,
.category-gallery img {
  width: 100%;
  object-fit: contain;
  background: #19203D;
}

.category-hero img {
  height: 520px;
  max-height: 560px;
}

.category-hero span {
  color: var(--olive);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.category-hero h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  margin: 16px 0;
}

.category-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.category-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.category-gallery.two-images {
  grid-template-columns: repeat(2, 1fr);
}

.category-gallery img {
  height: 320px;
  max-height: 360px;
}

.category-gallery.is-carousel {
  position: relative;
  display: block;
  max-width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
}

.category-gallery.is-carousel img {
  width: 100%;
  height: 460px;
  max-height: 520px;
}

.category-gallery.is-carousel img.fit-full-photo {
  object-fit: contain;
  object-position: center;
  background: var(--navy-dark);
}

.category-detail:nth-of-type(even) .category-gallery img {
  background: var(--cream);
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
}

.carousel-button {
  appearance: none;
  border: 1px solid rgba(16, 29, 43, 0.3);
  background: transparent;
  color: inherit;
  min-height: 44px;
  padding: 10px 14px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
  color: white;
}

.carousel-status {
  justify-self: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: currentColor;
}

.category-detail:nth-of-type(even) .carousel-button {
  border-color: rgba(255, 255, 255, 0.35);
}

.experience {
  background: var(--cream);
  padding: 70px 8%;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.steps > div {
  padding: 20px 30px;
  border-left: 1px solid rgba(59,36,25,.25);
}

.steps > div:first-child {
  border-left: none;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--olive);
  margin: 0 auto 18px;
}

.icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.steps h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.steps p {
  line-height: 1.6;
}

.lifestyle-break {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 48vw, 560px);
  display: grid;
  place-items: center;
  padding: 80px 7%;
  background-color: var(--navy-dark);
  background-image: url("images/lifestyle-break.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

.lifestyle-break::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,17,27,.68), rgba(7,17,27,.54));
}

.lifestyle-break p {
  max-width: min(1220px, 92vw);
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-wrap: balance;
}

.travel {
  display: flex;
  justify-content: center;
  background: var(--olive);
  color: white;
  text-align: center;
}

.travel img {
  display: none;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.travel div {
  width: min(1060px, 100%);
  padding: 70px 7%;
}

.travel h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  margin-bottom: 22px;
  text-wrap: balance;
}

.travel h3 span {
  white-space: normal;
}

.travel p {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.scheduling {
  background: var(--cream);
  color: var(--navy);
  padding: 78px 7%;
  scroll-margin-top: 24px;
}

.scheduling-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.scheduling-copy span {
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scheduling-copy h3 {
  margin: 18px 0 20px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.scheduling-copy p,
.scheduling-panel p {
  line-height: 1.65;
}

.scheduling-panel {
  border: 1px solid rgba(16, 29, 43, 0.14);
  background: rgba(255,255,255,.34);
}

.scheduling-panel {
  padding: 34px;
}

.schedule-options {
  display: grid;
  gap: 12px;
}

.schedule-option {
  appearance: none;
  border: 1px solid rgba(16, 29, 43, 0.22);
  background: transparent;
  color: var(--navy);
  min-height: 54px;
  padding: 16px 18px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
}

.schedule-option:hover,
.schedule-option:focus-visible,
.schedule-option.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.schedule-response {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 29, 43, 0.14);
}

.local-schedule-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.schedule-card {
  padding: 24px;
  border: 1px solid rgba(89, 97, 60, 0.26);
  background: rgba(255,255,255,.42);
}

.schedule-card h3 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.schedule-card p {
  margin-bottom: 18px;
}

.schedule-response a {
  display: inline-block;
  margin-top: 20px;
}

.schedule-card a {
  margin-top: 0;
}

.final-cta {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  color: white;
  text-align: center;
  padding: 72px 7%;
}

.final-cta h2 {
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 400;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
  overflow-wrap: break-word;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-buttons a {
  background: transparent;
  border-color: var(--olive);
  min-width: 250px;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,17,27,.74);
  backdrop-filter: blur(6px);
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(227,224,219,.22);
  background: linear-gradient(145deg, var(--cream), #C6BDB4);
  color: var(--navy);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  transform: translateY(18px);
  transition: transform .24s ease;
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16,29,43,.18);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.contact-modal-panel > span {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-modal-panel h3 {
  max-width: 390px;
  margin-bottom: 26px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.contact-option {
  display: block;
  min-height: 112px;
  padding: 24px;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  transform: translateY(-2px);
}

.contact-option strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-option span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.contact-option.primary {
  border: 1px solid var(--brown);
  background: var(--brown);
  color: white;
}

.contact-option.primary:hover,
.contact-option.primary:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
}

.contact-option.secondary {
  border: 1px solid rgba(16,29,43,.24);
  color: var(--navy);
  background: rgba(255,255,255,.28);
}

.contact-option.secondary:hover,
.contact-option.secondary:focus-visible {
  border-color: var(--olive);
}

footer {
  background: var(--navy-dark);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 48px;
  border-top: 1px solid rgba(227,224,219,.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

footer a {
  color: white;
  margin-left: 18px;
  text-decoration: none;
}

footer a:hover {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    padding: 18px 22px;
  }

  .nav nav,
  .nav-btn {
    display: none;
  }

  .logo {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .logo span {
    font-size: 8px;
    letter-spacing: 2.5px;
  }

  .philosophy,
  .identity-stage-list,
  .category-hero,
  .scheduling-inner {
    grid-template-columns: 1fr;
  }

  .identity-pathway {
    min-height: auto;
  }

  .identity-pathway-inner {
    position: relative;
    min-height: auto;
    padding: 76px 7%;
  }

  .identity-pathway-heading {
    margin-bottom: 36px;
  }

  .identity-stage-list {
    gap: 0;
  }

  .identity-stage {
    min-height: auto;
    padding: 24px 0 26px;
  }

  .identity-stage span {
    margin-bottom: 24px;
  }

  .identity-stage h4 {
    min-height: 0;
  }

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

  .card {
    min-height: 260px;
  }

  .steps,
  .category-gallery,
  .category-gallery.two-images {
    grid-template-columns: 1fr;
  }

  .category-hero img {
    aspect-ratio: 4 / 3;
  }

  .steps > div {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.2);
  }

  .steps > div:first-child {
    border-top: none;
  }

  footer {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  footer a {
    margin: 0 9px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 120px 26px 60px;
    background-position: center top;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1;
  }

  .hero h2 {
    font-size: clamp(30px, 9vw, 38px);
    margin-bottom: 24px;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

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

  .card {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .philosophy,
  .identity-pathway-inner,
  .experience,
  .scheduling,
  .travel div,
  .final-cta,
  .category-detail {
    padding: 50px 26px;
  }

  .philosophy h3 {
    font-size: 28px;
    line-height: 1.18;
  }

  .identity-pathway-heading h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .identity-stage p {
    max-width: 100%;
  }

  .identity-final {
    font-size: clamp(28px, 9vw, 40px);
  }

  .philosophy p,
  .category-hero p,
  .steps p,
  .travel p {
    font-size: 16px;
  }

  .lookbook h3,
  .experience h3 {
    font-size: 23px;
  }

  .scheduling-copy h3 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .scheduling-panel {
    padding: 26px;
  }

  .schedule-card {
    padding: 20px;
  }

  .category-hero {
    gap: 30px;
  }

  .category-hero img {
    height: auto;
    max-height: none;
  }

  .category-hero h2 {
    font-size: clamp(32px, 10vw, 42px);
    overflow-wrap: break-word;
  }

  .category-gallery img {
    height: auto;
    max-height: none;
  }

  .category-gallery.is-carousel img {
    height: auto;
    max-height: none;
  }

  .carousel-controls {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-status {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .carousel-button {
    grid-row: 2;
    width: 100%;
    padding: 12px 10px;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
  }

  .steps {
    gap: 0;
  }

  .steps > div {
    padding: 26px 0;
    border-top-color: rgba(59,36,25,.22);
  }

  .travel h3 {
    font-size: 26px;
  }

  .travel h3 span {
    white-space: normal;
  }

  .final-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .contact-buttons a,
  .schedule-response a {
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
    letter-spacing: 1.4px;
    overflow-wrap: anywhere;
  }

  .contact-modal {
    padding: 18px;
  }

  .contact-modal-panel {
    padding: 30px 22px;
  }

  .contact-option {
    min-height: 104px;
    padding: 22px;
  }

}

@media (max-width: 768px) {
  .hero {
    padding: clamp(124px, 20vh, 164px) 26px 72px;
    background-position: center top;
  }

  .hero-content {
    max-width: 92vw;
  }

  .hero h2 {
    font-size: clamp(30px, 7.5vw, 44px);
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .hero-trust {
    margin-top: 32px;
    max-width: 92vw;
    font-size: 18px;
    line-height: 1.45;
    opacity: .85;
  }

  .lookbook .card,
  .lookbook-card {
    height: clamp(520px, 132vw, 600px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .lookbook-card-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .local-schedule-options {
    grid-template-columns: 1fr;
  }

  .category-hero img,
  .category-gallery img,
  .category-gallery.is-carousel img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    background: #19203D;
  }

  .lifestyle-break {
    background-position: center center;
  }
}
