:root {
  --ink: #f8f4ea;
  --paper: #f6efe4;
  --deep: #071f1c;
  --deep2: #123c35;
  --gold: #d5b171;
  --muted: #5d6964;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: #172a27;
  overflow-x: hidden
}

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

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

/* HOME: cinematic Rare Latitudes-inspired landing */
.cinema-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #061714;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.cinema-bg,
.cinema-slide,
.cinema-film {
  position: absolute;
  inset: 0
}

.cinema-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: cinemaFade 21s infinite
}

.s1 {
  animation-delay: 0s
}

.s2 {
  animation-delay: 7s
}

.s3 {
  animation-delay: 14s
}

.cinema-film {
  background: linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .08) 32%, rgba(3, 22, 19, .66) 100%), radial-gradient(circle at 50% 52%, rgba(0, 0, 0, .05), rgba(0, 0, 0, .45) 82%);
  z-index: 1
}

.hero-phone {
  position: absolute;
  left: 5.5vw;
  top: 20vh;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  backdrop-filter: blur(8px);
  transition: .3s
}

.hero-phone:hover {
  background: #fff;
  color: #0c2b26
}

.circle-menu {
  position: fixed;
  right: 4.8vw;
  top: 18vh;
  z-index: 10000;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .35s
}

.circle-menu:hover {
  background: rgba(255, 255, 255, .16)
}

.circle-menu span {
  width: 28px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .35s
}

.circle-menu.active span:first-child {
  transform: translateY(5px) rotate(45deg)
}

.circle-menu.active span:last-child {
  transform: translateY(-5px) rotate(-45deg)
}

.hero-logo {
  position: absolute;
  z-index: 4;
  top: 9vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(310px, 45vw);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .35))
}

.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1050px, 90vw);
  padding-top: 9vh
}

.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 900
}

.hero-copy h1,
.page-title h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 118px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -2px;
  margin: 0 auto 26px;
  max-width: 1100px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .38)
}

.hero-copy p:not(.kicker) {
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88)
}

.bottom-journey-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 5;
  width: min(1100px, 92vw);
  height: 88px;
  border-top: 1px solid rgba(255, 255, 255, .42);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  backdrop-filter: blur(4px)
}

.bottom-journey-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .34);
  transition: .35s
}

.bottom-journey-nav a:last-child {
  border-right: 0
}

.bottom-journey-nav span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold)
}

.bottom-journey-nav a:hover {
  background: rgba(255, 255, 255, .12);
  letter-spacing: 2.4px
}

.menu-panel {
  position: fixed;
  right: 4.8vw;
  top: calc(18vh + 82px);
  z-index: 9999;
  width: 280px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 26px;
  background: rgba(8, 31, 28, .78);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px) scale(.96);
  transition: .35s
}

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

.menu-panel a {
  display: block;
  color: #fff;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700
}

.menu-panel a:hover {
  color: var(--gold)
}

.menu-panel a:last-child {
  border-bottom: 0
}

/* INNER PAGES */
.page-top {
  position: fixed;
  inset: 0 0 auto 0;
  height: 0;
  z-index: 9999
}

.page-logo {
  position: fixed;
  top: 7vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  width: 230px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .33))
}

.page-logo img {
  width: 100%
}

.page-phone {
  position: fixed;
  top: 17vh;
  left: 5vw;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px)
}

.page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #08211d
}

.page-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.82);
  animation: slowZoom 16s ease-in-out infinite alternate
}

.page-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .08) 35%, rgba(4, 24, 21, .68));
  z-index: 1
}

.page-title {
  position: relative;
  z-index: 2;
  width: min(1100px, 90vw);
  padding-top: 8vh
}

.page-title p:not(.kicker) {
  font-family: var(--serif);

  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88)
}

.editorial-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: 120px 8%;
  background: var(--paper);
  align-items: start
}

.editorial-split h2,
.program-copy h2,
.contact-panel h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 78px);
  line-height: .96;
  color: #123c35;
  margin: 0
}

.lead {
  font-size: 22px;
  line-height: 1.8;
  color: #47524f
}

.kicker.dark {
  color: #ad7b44
}

.vision-panel {
  margin-top: 34px;
  background: #123c35;
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(18, 60, 53, .16)
}

.vision-panel h3 {
  font-family: var(--serif);
  font-size: 38px;
  margin: 0 0 10px;
  color: #f0c985
}

.vision-panel p {
  line-height: 1.8;
  color: rgba(255, 255, 255, .82)
}

.feature-field {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: #fbf6ed
}

.feature-field article {
  min-height: 360px;
  border-radius: 34px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 20px 55px rgba(18, 60, 53, .1);
  transition: .35s
}

.feature-field article:hover {
  transform: translateY(-10px)
}

.feature-field span {
  font-family: var(--serif);
  font-size: 64px;
  color: #d4b980
}

.feature-field h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: #123c35
}

.feature-field p {
  color: #5d6964;
  line-height: 1.7
}

.program-editorial {
  padding: 110px 7%;
  background: #f7efe4
}

.program-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 90px
}

.program-row.reverse {
  grid-template-columns: 1.2fr .8fr
}

.program-row.reverse .program-copy {
  order: 2
}

.program-copy {
  background: #fff;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(18, 60, 53, .12)
}

.program-copy span {
  font-family: var(--serif);
  font-size: 58px;
  color: #d4b980
}

.program-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #5d6964
}

.program-row img {
  max-height: 720px;
  width: 100%;
  object-fit: contain;
  background: #fff;
  padding: 16px;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .14)
}

.program-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.program-mini article {
  background: #123c35;
  color: #fff;
  border-radius: 30px;
  padding: 32px
}

.program-mini h3 {
  font-family: var(--serif);
  font-size: 34px;
  color: #f0c985;
  margin: 0 0 10px
}

.program-mini p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7
}

.quote-grid {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: #f6efe4
}

.quote-grid blockquote {
  margin: 0;
  background: #fff;
  border-radius: 34px;
  padding: 38px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  color: #123c35;
  box-shadow: 0 24px 70px rgba(18, 60, 53, .1)
}

.contact-panel {
  padding: 120px 8%;
  background: #f6efe4;
  text-align: center
}

.contact-panel p {
  font-size: 22px;
  line-height: 1.7;
  color: #5d6964;
  max-width: 800px;
  margin: 20px auto
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px
}

.contact-links a {
  background: #123c35;
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800
}

.contact-links a:hover {
  background: #ad7b44
}

.reveal-soft {
  opacity: 0;
  animation: riseIn 1.2s ease forwards
}

.delay-1 {
  animation-delay: .35s
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes cinemaFade {
  0% {
    opacity: 0;
    transform: scale(1.08)
  }

  8% {
    opacity: 1
  }

  30% {
    opacity: 1
  }

  40% {
    opacity: 0;
    transform: scale(1.18)
  }

  100% {
    opacity: 0
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.12)
  }
}

@media(max-width:900px) {
  .hero-logo {
    top: 6vh;
    width: 210px
  }

  .circle-menu {
    top: 6.5vh;
    right: 24px;
    width: 58px;
    height: 58px
  }

  .hero-phone {
    display: none
  }

  .hero-copy h1,
  .page-title h1 {
    font-size: 54px
  }

  .bottom-journey-nav {
    height: auto;
    grid-template-columns: 1fr;
    bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 26px;
    overflow: hidden
  }

  .bottom-journey-nav a {
    height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
  }

  .menu-panel {
    top: calc(6.5vh + 70px);
    right: 24px
  }

  .page-logo {
    top: 5vh;
    width: 180px
  }

  .editorial-split,
  .feature-field,
  .program-row,
  .program-row.reverse,
  .quote-grid {
    grid-template-columns: 1fr
  }

  .program-row.reverse .program-copy {
    order: 0
  }

  .feature-field {
    gap: 16px
  }

  .program-mini {
    grid-template-columns: 1fr
  }
}

.hero-logo-top {

  position: absolute;

  top: 35px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 20;

  animation: logoFloat 6s ease-in-out infinite;
}

.hero-logo-top img {

  width: 180px;
  height: auto;

  filter:
    drop-shadow(0 10px 30px rgba(0, 0, 0, .35));
}


.hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}

.hero-copy p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-top: 1rem;
}


.about-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 48% 52%;
  background: #f7f3eb;
}

.about-media {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  padding: 110px 10%;
  color: #263728;
}

.about-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a6f3c;
  display: block;
  margin-bottom: 28px;
}

.about-content h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 35px;
  color: #1f3324;
}

.about-content p {
  font-family: 'Manrope', sans-serif;
  /* font-family: 'Source Serif 4', serif; */
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.95;
  color: #4c4c43;
  margin-bottom: 26px;
}

.animated-questions {
  margin: 60px 0;
}

.type-line {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  color: #1f3324;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #8a6f3c;
  width: 0;
}

.line-one {
  animation:
    typing1 4s steps(50, end) forwards,
    blink .7s infinite;
}

.line-two {
  opacity: 0;
  animation:
    show2 0s 5s forwards,
    typing2 4s steps(45, end) 5s forwards,
    blink .7s infinite 5s;
}

@keyframes typing1 {
  from {
    width: 0
  }

  to {
    width: 50ch
  }
}

@keyframes typing2 {
  from {
    width: 0
  }

  to {
    width: 45ch
  }
}

@keyframes show2 {
  to {
    opacity: 1
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

#typewriter {
  font-family: 'Marcellus', serif;
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  line-height: 1.35;
  color: #1f3324;
  max-width: 850px;
  min-height: 180px;
  position: relative;
}

#typewriter::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #8a6f3c;
  margin-left: 8px;
  animation: cursorBlink .8s infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.story-moment {
  margin: 80px 0;
  padding-left: 40px;
  position: relative;
}

.story-moment .line {
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: 120px;
  background: #b89a62;
}

.story-moment {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.story-moment.active {
  opacity: 1;
  transform: translateY(0);
}


.about-content p {
  font-family: 'Source Serif 4', serif;
}

.about-content {
  max-width: 720px;
}

.about-content p {
  font-size: 1.25rem;
  color: #2d3b2d;
}

.about-content p {
  text-align: justify;
}

/* .about-content p:first-of-type{
    font-size:1.25rem;
    color:#2d3b2d;
} */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: all .4s ease;
}

.header-inner {
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo img {
  height: 200px;
  display: block;
  transition: all .4s ease;
}

.circle-menu {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .75);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.circle-menu span {
  width: 32px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all .4s ease;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.site-header.scrolled .header-inner {
  height: 105px;
}

.site-header.scrolled .header-logo img {
  height: 175px;
}

.site-header.scrolled .circle-menu {
  border-color: #123d2b;
}

.site-header.scrolled .circle-menu span {
  background: #123d2b;
}

.create-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  background: #f7f3eb;
}

.create-media {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.create-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.create-content {
  padding: 110px 9%;
  color: #23372b;
}

.section-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9a7a3f;
  margin-bottom: 28px;
}

.create-content h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: #1f3324;
  margin-bottom: 35px;
}

.create-intro {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #445144;
  text-align: justify;
  margin-bottom: 80px;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.experience-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 35px;
  align-items: stretch;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(35, 55, 43, .15);
}

.experience-image {
  height: 260px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.experience-card:hover .experience-image img {
  transform: scale(1.08);
}

.experience-text span {
  font-family: 'Marcellus', serif;
  font-size: 1rem;
  color: #b89a62;
  display: block;
  margin-bottom: 16px;
}

.experience-text h3 {
  font-family: 'Marcellus', serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: #1f3324;
  margin-bottom: 12px;
}

.experience-text h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: #8a6f3c;
  margin-bottom: 20px;
}

.experience-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4b5248;
  text-align: justify;
  margin-bottom: 24px;
}

.experience-text a {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1f3324;
  border-bottom: 1px solid #1f3324;
  padding-bottom: 6px;
  transition: .3s;
}

.experience-text a:hover {
  color: #b89a62;
  border-color: #b89a62;
}

@media(max-width:900px) {
  .create-section {
    grid-template-columns: 1fr;
  }

  .create-media {
    height: 60vh;
    position: relative;
  }

  .create-content {
    padding: 70px 7%;
  }

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

  .experience-image {
    height: 280px;
  }

  .create-intro,
  .experience-text p {
    text-align: left;
  }
}

.create-editorial {
  background: #13380f;
  color: #0f3b2a;
}

.create-intro-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 140px 8% 120px;
  text-align: center;
}

.create-intro-block span,
.create-row-text span {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #0f3b2a;
}

.create-intro-block h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  margin: 28px 0;
}

.create-intro-block p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #ffffff;
  text-align: justify;

}

.create-row {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 620px;
}

.create-row-img {
  overflow: hidden;
}

.create-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.create-row:hover .create-row-img img {
  transform: scale(1.06);
}

.create-row-text {
  padding: 110px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f2ec;
}

.create-row-text h3 {
  font-family: 'Marcellus', serif;
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 28px 0 18px;
}

.create-row-text h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: #253f32;
  margin-bottom: 28px;
}

.create-row-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #526158;
  text-align: justify;
  max-width: 620px;
}

.create-row-text a {
  margin-top: 35px;
  width: max-content;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0f3b2a;
  text-decoration: none;
  border-bottom: 1px solid #0f3b2a;
  padding-bottom: 7px;
}

.create-row-text a:hover {
  color: #b89a62;
  border-color: #b89a62;
}

@media(max-width:900px) {
  .create-row {
    grid-template-columns: 1fr;
  }

  .create-row-img {
    height: 420px;
  }

  .create-row-text {
    padding: 70px 7%;
  }

  .create-row-text p {
    text-align: left;
  }
}

.ideal-for {
  margin-top: 30px;
}

.ideal-for h5 {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1f3324;
  margin-bottom: 18px;
}

.ideal-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ideal-for li {
  font-family: 'Source Serif 4', serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #526158;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.ideal-for li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #b89a62;
  font-size: 1.4rem;
  line-height: 1;
}

.philosophy-section {
  background: #f4f2ec;
  padding: 140px 8%;
  color: #123d2b;
}

.philosophy-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 90px;
}

.philosophy-intro span {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #9a7a3f;
}

.philosophy-intro h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin-top: 25px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.philosophy-image.large {
  height: 720px;
}

.philosophy-image img,
.philosophy-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.philosophy-content p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  line-height: 2;
  color: #4e5e56;
  text-align: justify;
  margin-bottom: 28px;
}

.philosophy-small-img {
  height: 420px;
}

.philosophy-quote {
  padding: 70px;
  background: #123d2b;
  color: #fff;
}

.philosophy-quote h3 {
  font-family: 'Marcellus', serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
}

@media(max-width:900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-image.large {
    height: 480px;
  }

  .philosophy-content p {
    text-align: left;
  }

  .philosophy-quote {
    padding: 45px;
  }
}

.philosophy-editorial {
  background: #f4f2ec;
}

.philosophy-row {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 720px;
}

.philosophy-img {
  overflow: hidden;
}

.philosophy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.philosophy-text {
  padding: 110px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f2ec;
  color: #123d2b;
}

.philosophy-text span {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  letter-spacing: .18em;
  color: #123d2b;
  margin-bottom: 25px;
}

.philosophy-text h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
}

.philosophy-text h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #243f32;
  margin-bottom: 35px;
}

.philosophy-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #526158;
  text-align: justify;
  margin-bottom: 24px;
}

@media(max-width:900px) {
  .philosophy-row {
    grid-template-columns: 1fr;
  }

  .philosophy-img {
    height: 430px;
  }

  .philosophy-text {
    padding: 70px 7%;
  }

  .philosophy-text p {
    text-align: left;
  }
}

.founders-section {
  background: #f4f2ec;
  color: #123d2b;
  padding: 120px 0 0;
}

.founders-intro {
  max-width: 980px;
  margin: 0 auto 110px;
  padding: 0 8%;
  text-align: justify;
}

.founders-intro span {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.founders-intro h2 {
  font-family: 'Marcellus', serif;
  /* font-size: clamp(3rem, 6vw, 6.5rem); */
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  margin: 25px 0 30px;
  text-align: center;

}

.founders-intro p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.3rem;
  line-height: 1.9;
  color: #526158;
  margin-bottom: 22px;
}

.founder-cards {
  background: #123d2b;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 100px 8%;
}

.founder-card {
  background: transparent;
  padding: 0;
}

.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  margin-bottom: 32px;
}

.founder-card span {
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  display: block;
  margin-bottom: 14px;
}

.founder-card h4 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 22px;
}

.founder-card p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
  text-align: justify;
  margin: 0;
}

.founders-closing {
  background: #123d2b;
  padding: 0 8% 120px;
}

.founders-closing p {
  max-width: 950px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-family: 'Marcellus', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.6;
  color: #ffffff;
  text-align: justify;
}

@media(max-width: 900px) {
  .founders-section {
    padding-top: 85px;
  }

  .founders-intro {
    margin-bottom: 75px;
  }

  .founders-intro p {
    font-size: 1.1rem;
  }

  .founder-cards {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 80px 7%;
  }

  .founder-card h4 {
    font-size: 2.6rem;
  }

  .founders-closing {
    padding: 0 7% 90px;
  }
}

.site-footer {
  background: #fff;
  padding: 12px 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-right {
  font-family: 'Marcellus', serif;
  font-size: 12px;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    font-size: 10px;
  }
}

.footer {
  width: 100%;
  padding: 18px 20px;
  background: #f8f8f8;
  /* Change to your preferred color */
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-left {
  font-family: 'Marcellus', serif;
  font-size: 12px;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .footer {
    padding: 15px;
  }

  .footer-left {
    font-size: 10px;
    line-height: 1.5;
  }
}

.saancharis-intro {
  background: #84a99a;
  text-align: center;
  padding: 120px 8vw;
  color: #000000;
}

.saancharis-intro span,
.saancharis-features span {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7a45;
}

.saancharis-intro h2,
.saancharis-features h2,
.saancharis-closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 25px auto 35px;
  max-width: 1000px;
}

.saancharis-intro p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-family: 'Source Serif 4', serif;
  font-size: 23px;
  line-height: 1.9;
  color: #000000;
  text-align: justify;

}

.saancharis-editorial {
  background: #f4f2ec;
}

.saancharis-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.saancharis-row.reverse .saancharis-img {
  order: 2;
}

.saancharis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saancharis-text {
  padding: 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #123d2b;
}

.saancharis-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 30px;
}

.saancharis-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 23px;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 20px;
  text-align: justify;

}

.saancharis-features {
  background: #123d2b;
  color: #fff;
  padding: 110px 8vw;
  text-align: center;
}

.saancharis-features h2 {
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  margin-top: 60px;
}

.feature-card {
  background: #123d2b;
  padding: 45px 35px;
  text-align: left;
}

.feature-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 18px;
}

.feature-card p {
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .75);
  text-align: justify;

}

.saancharis-closing {
  background: #fff;
  color: #123d2b;
  text-align: center;
  padding: 120px 8vw;
}

.saancharis-closing p {
  max-width: 850px;
  margin: 0 auto 35px;
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  line-height: 1.9;
  color: #526158;
}

.saancharis-btn {
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid #123d2b;
  color: #123d2b;
  text-decoration: none;
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .3s ease;
}

.saancharis-btn:hover {
  background: #123d2b;
  color: #fff;
}

@media(max-width: 900px) {

  .saancharis-row,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .saancharis-row.reverse .saancharis-img {
    order: 0;
  }

  .saancharis-text {
    padding: 65px 7vw;
  }

  .saancharis-intro,
  .saancharis-features,
  .saancharis-closing {
    padding: 80px 7vw;
  }
}

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.contact-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-hero .page-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 120px 7vw 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.contact-title {
  color: #fff;
  max-width: 680px;
}

.contact-title .kicker {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.95;
  font-weight: 600;
  margin: 0 0 24px;
}

.contact-title p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  padding: 42px 38px;
  max-width: 430px;
  width: 100%;
  margin-left: auto;
  color: #123d2b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .5);
  animation: contactFloat 5s ease-in-out infinite;
}

.contact-info-card span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7a45;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1;
  margin: 0 0 28px;
  color: #123d2b;
}

.contact-line {
  border-top: 1px solid rgba(18, 61, 43, .18);
  padding: 18px 0;
}

.contact-line:last-child {
  padding-bottom: 0;
}

.contact-line strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #123d2b;
  margin-bottom: 7px;
}

.contact-line p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #526158;
}

@keyframes contactFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media(max-width: 900px) {
  .contact-hero-content {
    grid-template-columns: 1fr;
    padding: 130px 7vw 70px;
    gap: 40px;
  }

  .contact-title {
    text-align: center;
    margin: 0 auto;
  }

  .contact-info-card {
    margin: 0 auto;
    animation: none;
  }

  .contact-title h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
}

.testimonials-section {
  background: #f4f2ec;
  padding: 120px 8vw;
  color: #123d2b;
}

.testimonials-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.testimonials-intro span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7a45;
}

.testimonials-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 1.08;
  margin: 24px 0 28px;
}

.testimonials-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #526158;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.testimonial-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
  transition: .35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  padding: 36px;
}

.testimonial-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #526158;
  margin-bottom: 28px;
}

.testimonial-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin: 0 0 6px;
  color: #123d2b;
}

.testimonial-content span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9b7a45;
}

@media(max-width: 900px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 80px 7vw;
  }
}

.testimonial-showcase {
  /* padding: 120px 7vw;
    background: #f8f5ef; */
  padding: 120px 7vw;
  background: url('../img/bg-t.webp') center center/cover no-repeat;
  position: relative;
}

.testimonial-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.testimonial-header span {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: #b48a3c;
}

.testimonial-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 1;
  color: #123d2b;
  margin: 25px 0;
}

.testimonial-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

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

.testimonial-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.testimonial-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.quote-icon {
  width: 72px;
  height: 72px;
  background: #123d2b;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 285px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border: 4px solid #fff;
}

.testimonial-body {
  padding: 65px 40px 40px;
  text-align: center;
}

.testimonial-body p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
  min-height: 140px;
}

.stars {
  color: #d4a63c;
  font-size: 24px;
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.guest-info {
  border-top: 1px solid #ececec;
  padding-top: 25px;
}

.guest-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #123d2b;
  margin-bottom: 10px;
}

.guest-info span {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 15px;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  transition: .4s ease;
}

@media(max-width:991px) {

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

  .testimonial-body p {
    min-height: auto;
  }
}

.journey-showcase {
  padding: 120px 8vw;
  background: #f8f5ef;
}

.journey-heading {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 90px;
}

.journey-heading span {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7a45;
  font-size: 13px;
}

.journey-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: #123d2b;
  margin-top: 20px;
}

.journey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.journey-row.reverse .journey-image {
  order: 2;
}

.journey-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.journey-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: #123d2b;
  margin: 20px 0;
}

.journey-tag {
  display: inline-block;
  background: #123d2b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 12px;
}

.journey-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: #123d2b;
  margin-bottom: 25px;
}

.journey-price small {
  display: block;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.journey-content p {
  color: #5f655f;
  line-height: 1.9;
  margin-bottom: 25px;
}

.journey-content ul {
  list-style: none;
  padding: 0;
}

.journey-content li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 61, 43, .12);
  color: #123d2b;
}

.journey-content li:before {
  content: "✦";
  color: #9b7a45;
  margin-right: 12px;
}

@media(max-width:900px) {

  .journey-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-row.reverse .journey-image {
    order: 0;
  }

  .journey-image img {
    height: 420px;
  }

  .journey-content h3 {
    font-size: 3rem;
  }
}

.journey-row {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 720px;
  align-items: stretch;
  margin: 0;
}

.journey-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.journey-content {
  background: #f4f2ec;
  padding: 100px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-row.reverse .journey-image {
  order: 2;
}

.journey-row.reverse .journey-content {
  order: 1;
}

.journey-showcase {
  background: #f4f2ec;
}

.journey-heading {
  text-align: center;
  padding: 100px 7vw;
}

.journey-heading span {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: #9b7a45;
}

.journey-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: #123d2b;
  margin-top: 20px;
}

.journey-row {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 750px;
  align-items: stretch;
}

.journey-row.reverse .journey-image {
  order: 2;
}

.journey-row.reverse .journey-content {
  order: 1;
}

.journey-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.journey-content {
  background: #f4f2ec;
  padding: 90px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-tag {
  display: inline-block;
  background: #123d2b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.journey-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.05;
  color: #123d2b;
  margin-bottom: 25px;
}

.journey-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: #123d2b;
  margin-bottom: 25px;
}

.journey-price small {
  display: block;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #9b7a45;
}

.journey-content p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 2;
  color: #526158;
  margin-bottom: 30px;
}

.journey-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-content li {
  font-family: 'Inter', sans-serif;
  color: #123d2b;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 61, 43, .12);
}

.journey-content li::before {
  content: "✦";
  color: #9b7a45;
  margin-right: 12px;
}

@media(max-width: 900px) {

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

  .journey-row.reverse .journey-image,
  .journey-row.reverse .journey-content {
    order: unset;
  }

  .journey-image {
    height: 450px;
  }

  .journey-content {
    padding: 60px 7%;
  }

  .journey-content h3 {
    font-size: 3rem;
  }

  .journey-price {
    font-size: 3rem;
  }
}

.trip-editorial {
  background: #f4f2ec;
}

.trip-row {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 720px;
  align-items: stretch;
}

.trip-row.reverse .trip-img {
  order: 2;
}

.trip-row.reverse .trip-text {
  order: 1;
}

.trip-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.trip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trip-text {
  background: #f4f2ec;
  padding: 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #123d2b;
}

.trip-label {
  display: inline-block;
  width: fit-content;
  background: #123d2b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.trip-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 24px;
  color: #123d2b;
}

.trip-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: #123d2b;
  margin-bottom: 28px;
}

.trip-price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #9b7a45;
  margin-top: 8px;
}

.trip-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  line-height: 2;
  color: #526158;
  margin-bottom: 34px;
}

.trip-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trip-points span {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: #123d2b;
  padding: 14px 16px;
  background: rgba(18, 61, 43, 0.08);
  border-left: 3px solid #9b7a45;
}

@media(max-width: 900px) {

  .trip-row,
  .trip-row.reverse {
    grid-template-columns: 1fr;
  }

  .trip-row.reverse .trip-img,
  .trip-row.reverse .trip-text {
    order: unset;
  }

  .trip-img {
    height: 430px;
  }

  .trip-text {
    padding: 65px 7vw;
  }

  .trip-text h3 {
    font-size: 3rem;
  }

  .trip-price {
    font-size: 3rem;
  }

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

.hero-program-cta {
  position: absolute;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  z-index: 20;

  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);

  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  transition: .35s ease;
}

.hero-program-cta:hover {
  background: #fff;
  color: #123d2b;
  transform: translateX(-50%) translateY(-4px);
}

@media(max-width: 768px) {
  .hero-program-cta {
    bottom: 95px;
    font-size: 11px;
    padding: 12px 24px;
  }
}

.hero-copy {
  text-align: center;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;

  padding: 14px 34px;

  border: 1px solid rgba(255, 255, 255, .8);
  /* border-radius: 50px; */

  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);

  color: #fff;
  text-decoration: none;

  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  transition: all .35s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #123d2b;
  transform: translateY(-3px);
}

/* Production responsive/accessibility fixes */
img,
video {
  max-width: 100%;
  height: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #d7b56d;
  outline-offset: 4px;
}

.circle-menu {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.menu-panel.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  z-index: 1000;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    overflow-x: hidden;
  }

  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-logo img {
    max-width: 150px;
    height: auto;
  }

  .cinema-hero,
  .page-hero {
    min-height: 100svh;
  }

  .hero-copy {
    width: min(92vw, 680px);
    padding: 0 18px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.3rem, 12vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .bottom-journey-nav {
    display: none;
  }

  .menu-panel {
    width: 100vw;
    padding: 90px 24px 34px;
  }

  .menu-panel a {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1.15;
  }

  section {
    overflow-x: clip;
  }
}

@media (max-width: 520px) {

  .hero-btn,
  .hero-program-cta {
    width: auto;
    max-width: 90vw;
    text-align: center;
    letter-spacing: 1.2px;
  }

  .trip-img {
    height: 320px;
  }

  .trip-text {
    padding: 48px 6vw;
  }

  .trip-text h3 {
    font-size: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {

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


/* === GO-LIVE MOBILE + SECURITY PASS (retains existing brand fonts/design) === */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

@media (max-width: 1024px) {

  .editorial-split,
  .program-row,
  .program-row.reverse,
  .quote-grid,
  .contact-panel,
  .feature-field,
  .founder-cards,
  .testimonial-cards,
  .testimonial-grid,
  .trip-row,
  .trip-row.reverse,
  .contact-hero-content,
  .about-section {
    grid-template-columns: 1fr !important;
  }

  .program-row.reverse .program-copy,
  .program-row.reverse .trip-img,
  .program-row.reverse .trip-text,
  .trip-row.reverse .trip-img,
  .trip-row.reverse .trip-text {
    order: initial !important;
  }

  .about-section {
    min-height: auto !important;
    display: block !important;
  }

  .about-media {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .about-media img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    object-fit: cover !important;
    object-position: center !important;
  }

  .about-content {
    max-width: none !important;
    width: 100% !important;
    padding: 56px 7vw !important;
  }

  .about-content p {
    text-align: left !important;
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
  }

  .about-content h2 {
    font-size: clamp(2.25rem, 10vw, 4rem) !important;
  }

  #typewriter {
    min-height: 120px;
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .type-line {
    white-space: normal !important;
    width: auto !important;
    border-right: 0 !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
  }

  .header-inner {
    height: 86px !important;
    justify-content: center !important;
  }

  .header-logo img {
    height: auto !important;
    width: min(170px, 52vw) !important;
    max-height: 92px !important;
    object-fit: contain;
  }

  .circle-menu {
    position: fixed !important;
    top: 18px !important;
    right: 16px !important;
    transform: none !important;
    width: 52px !important;
    height: 52px !important;
    z-index: 10001 !important;
    background: rgba(7, 31, 28, .32);
    backdrop-filter: blur(10px);
  }

  .circle-menu span {
    width: 22px !important;
  }

  .page-top,
  .hero-phone,
  .page-phone {
    display: none !important;
  }

  .page-hero {
    min-height: 74svh !important;
    padding: 120px 20px 60px;
  }

  .page-title {
    width: 100% !important;
    padding: 0 16px;
  }

  .page-title h1,
  .hero-copy h1 {
    letter-spacing: -1px !important;
    word-break: normal;
    overflow-wrap: balance;
  }

  .page-title p:not(.kicker),
  .hero-copy p:not(.kicker) {
    font-size: 1rem !important;
    line-height: 1.65 !important;
    letter-spacing: .08em;
  }

  .menu-panel {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    overflow-y: auto !important;
    padding: 96px 26px 40px !important;
  }

  section,
  .program-editorial,
  .founders-section,
  .testimonials-section,
  .testimonial-showcase,
  .trip-editorial {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .program-copy,
  .trip-text,
  .contact-panel,
  .founders-intro,
  .founders-closing,
  .testimonial-header,
  .testimonials-intro,
  .testimonial-body {
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }

  .program-row img,
  .trip-img,
  .testimonial-image img,
  .founder-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: cover !important;
    object-position: center !important;
  }

  .trip-img {
    height: auto !important;
  }

  .program-copy h2,
  .trip-text h3,
  .contact-panel h2,
  .founders-intro h2,
  .testimonial-header h2,
  .testimonials-intro h2 {
    font-size: clamp(2rem, 10vw, 3.3rem) !important;
    line-height: 1.05 !important;
  }

  .program-copy p,
  .trip-text p,
  .founders-intro p,
  .founders-closing p,
  .testimonial-body p,
  .testimonial-content p,
  .contact-title p,
  .contact-info-card p {
    text-align: left !important;
    line-height: 1.75 !important;
  }

  .contact-hero {
    min-height: auto !important;
    padding: 120px 0 45px;
  }

  .contact-info-card {
    margin-top: 20px;
  }

  .contact-line {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .contact-links {
    flex-direction: column !important;
    align-items: stretch !important;
  }

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

  .trip-points,
  .program-mini {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {

  .hero-logo,
  .hero-logo-top img {
    width: min(185px, 56vw) !important;
  }

  .cinema-hero {
    min-height: 100svh !important;
    padding: 110px 0 95px;
  }

  .hero-copy {
    padding-top: 0 !important;
  }

  .kicker {
    letter-spacing: 2px !important;
    font-size: 10px !important;
  }

  .hero-btn,
  .hero-program-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    white-space: normal;
  }

  .about-content,
  .program-copy,
  .trip-text {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .story-moment {
    margin: 46px 0 !important;
    padding-left: 24px !important;
  }

  .story-moment .line {
    height: 80px !important;
  }
}