/* ============================================================
   THE SET PRIVATE — styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FAFAF7;
  color: #5a5a6e;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Tokens ───────────────────────────────────────────────── */

:root {
  --midnight:  #1a1a2e;
  --parchment: #F7F5F0;
  --sand:      #c8b89a;
  --dusk:      #8a7a6a;
  --slate:     #5a5a6e;
  --offwhite:  #FAFAF7;
  --muted:     #6a6a7e;
}

/* ── Typography helpers ───────────────────────────────────── */

.t-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.t-display-italic {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
}

.t-ui {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── Scroll-fade animation ────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid var(--sand);
  color: var(--parchment);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--sand);
  color: var(--midnight);
}

.btn--dark {
  color: var(--midnight);
}

.btn--dark:hover {
  background: var(--midnight);
  color: var(--parchment);
  border-color: var(--midnight);
}

.btn--filled {
  background: var(--midnight);
  color: var(--parchment);
  border: 1px solid var(--midnight);
}

.btn--filled:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--midnight);
}

/* ── Image placeholder ────────────────────────────────────── */

.img-placeholder {
  background-color: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.img-placeholder span {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.7;
  text-align: center;
  padding: 0 20px;
}

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 0.5px solid var(--sand);
  padding: 0 60px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 26, 46, 0.06);
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__wordmark-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--midnight);
  letter-spacing: 0.05em;
}

.nav__wordmark-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--midnight);
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--sand);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--midnight);
  transition: all 0.3s ease;
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__overlay.open {
  opacity: 1;
}

.nav__overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--parchment);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

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

.nav__overlay-close {
  position: absolute;
  top: 24px;
  right: 60px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--midnight);
  padding: 60px;
}

.footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(200, 184, 154, 0.2);
  margin-bottom: 32px;
}

.footer__wordmark-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--parchment);
  letter-spacing: 0.05em;
}

.footer__wordmark-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 2px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.footer__nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--parchment);
}

.footer__email {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
}

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

.footer__copy {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
}

.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--sand);
}

/* ── PAGE OFFSET (fixed nav) ──────────────────────────────── */

.page-content {
  padding-top: 64px;
}

/* ════════════════════════════════════════════════════════════
   HOME — index.html
   ════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--midnight);
  background-size: cover;
  background-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 30, 0.45);
}

.hero__bg-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.5;
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero__the {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 12px;
}

.hero__set {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 120px;
  color: var(--parchment);
  display: block;
  line-height: 1;
}

.hero__rule {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin: 20px auto;
}

.hero__private {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 24px;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--parchment);
  display: block;
  margin-bottom: 36px;
}

/* Intro section */
.intro {
  background: var(--parchment);
  padding: 120px 60px;
  text-align: center;
}

.intro__quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 34px;
  color: var(--midnight);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 36px;
}

.intro__body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

/* Pillars section */
.pillars {
  background: var(--midnight);
  padding: 100px 60px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar__label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  display: block;
}

.pillar__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--parchment);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar__body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* Experiences preview */
.experiences-preview {
  background: var(--parchment);
  padding: 100px 60px;
}

.experiences-preview__header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 42px;
  color: var(--midnight);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.card {
  background: #fff;
}

.card__img {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.card__body {
  padding: 28px 24px 32px;
}

.card__label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 10px;
}

.card__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--midnight);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.card__price {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--dusk);
}

.experiences-preview__cta {
  text-align: center;
}

/* Closing CTA */
.closing-cta {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.closing-cta__bg {
  position: absolute;
  inset: 0;
  background-color: var(--midnight);
  background-size: cover;
  background-position: center;
}

.closing-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 30, 0.45);
}

.closing-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.closing-cta__heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 46px;
  color: var(--parchment);
  display: block;
  margin-bottom: 32px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — about.html
   ════════════════════════════════════════════════════════════ */

/* Page hero (shared) */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--midnight);
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 30, 0.45);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 86px;
  color: var(--parchment);
  line-height: 1;
}

/* Brand story */
.brand-story {
  background: var(--parchment);
  padding: 100px 60px;
}

.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.brand-story__left {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--midnight);
  line-height: 1.6;
}

.brand-story__right {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding-top: 4px;
}

/* Roster section */
.roster {
  background: var(--midnight);
  padding: 100px 60px;
  text-align: center;
}

.roster__intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--parchment);
  margin-bottom: 56px;
}

.roster__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.roster-card__img {
  height: 320px;
  margin-bottom: 20px;
}

.roster-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--parchment);
  margin-bottom: 6px;
}

.roster-card__cred {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--dusk);
  letter-spacing: 0.05em;
}

.roster__note {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* Values section */
.values {
  background: var(--parchment);
  padding: 100px 60px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.value__label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 14px;
}

.value__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--midnight);
  margin-bottom: 14px;
  line-height: 1.3;
}

.value__body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════════════════════
   EXPERIENCES — experiences.html
   ════════════════════════════════════════════════════════════ */

.experiences-detail {
  background: var(--parchment);
  padding: 100px 0;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1400px;
  margin: 0 auto 80px;
}

.experience-row:last-child {
  margin-bottom: 0;
}

.experience-row--reverse {
  direction: rtl;
}

.experience-row--reverse > * {
  direction: ltr;
}

.experience-row__img {
  height: 100%;
  min-height: 440px;
  background-size: cover;
  background-position: center;
}

.experience-row__content {
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.experience-row--reverse .experience-row__content {
  background: var(--parchment);
}

.experience-row__label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 14px;
}

.experience-row__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 42px;
  color: var(--midnight);
  margin-bottom: 20px;
  line-height: 1.2;
}

.experience-row__body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.experience-row__details {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--dusk);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.experience-row__price {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--dusk);
  margin-bottom: 20px;
}

/* Partner section */
.partner {
  background: var(--midnight);
  padding: 100px 60px;
  text-align: center;
}

.partner__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--parchment);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.partner__body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════════════════════
   CONTACT — contact.html
   ════════════════════════════════════════════════════════════ */

/* Half-height hero for contact */
.page-hero--half {
  height: 50vh;
  min-height: 360px;
}

.contact-section {
  background: var(--parchment);
  padding: 100px 60px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-left__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--midnight);
  line-height: 1.4;
  margin-bottom: 20px;
}

.contact-left__body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.contact-left__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail__label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 2px;
}

.contact-detail__value {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--slate);
  letter-spacing: 0.03em;
}

/* Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusk);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--midnight);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 10px 0;
  outline: none;
  letter-spacing: 0.03em;
  border-radius: 0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field select {
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--midnight);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-bottom-color: var(--sand);
  border-bottom-width: 2px;
}

.form-field .error-msg {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--dusk);
  display: none;
}

.form-field.has-error .error-msg {
  display: block;
}

.form-confirmation {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--dusk);
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ════════════════════════════════════════════════════════════ */

.social-proof {
  background: var(--parchment);
  padding: 64px 48px;
  text-align: center;
  border-top: 0.5px solid var(--sand);
  border-bottom: 0.5px solid var(--sand);
}

.social-proof__label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusk);
  margin-bottom: 28px;
}

.social-proof__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  color: #8a7a6a;
  letter-spacing: 0.04em;
}

.social-proof__names span {
  padding: 4px 20px;
}

.social-proof__names span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  color: var(--sand);
}

/* ════════════════════════════════════════════════════════════
   FOOTER CONFIDENTIALITY
   ════════════════════════════════════════════════════════════ */

.footer__confidential {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #6a6a7e;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 32px;
  border-top: 0.5px solid rgba(200, 184, 154, 0.2);
  margin-top: 32px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 768px breakpoint
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* Nav */
  .nav {
    padding: 0 20px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Mobile overlay */
  .nav__overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 48px 24px;
  }

  .nav__overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--parchment);
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  .nav__overlay-close {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dusk);
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 28px;
    right: 24px;
  }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero__the {
    font-size: 20px;
  }

  .hero__set {
    font-size: 72px;
    line-height: 1;
  }

  .hero__private {
    font-size: 20px;
  }

  .hero__tagline {
    font-size: 14px;
  }

  .hero__rule {
    margin: 16px 0;
  }

  /* Page hero */
  .page-hero {
    height: 45svh;
    min-height: 280px;
  }

  .page-hero__title {
    font-size: 52px;
  }

  /* Sections padding */
  .intro,
  .pillars,
  .experiences-preview,
  .brand-story,
  .roster,
  .values,
  .partner,
  .contact-section {
    padding: 64px 20px;
  }

  .social-proof {
    padding: 48px 20px;
  }

  /* Intro */
  .intro__quote {
    font-size: 22px;
  }

  .intro__body {
    font-size: 16px;
  }

  /* Pillars */
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillars__grid > div {
    padding: 40px 0;
    border-top: 0.5px solid var(--sand);
  }

  .pillars__grid > div:last-child {
    border-bottom: 0.5px solid var(--sand);
  }

  .pillar__title {
    font-size: 28px;
  }

  /* Social proof */
  .social-proof__names {
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
  }

  .social-proof__names span::after {
    display: none;
  }

  .social-proof__names span:not(:last-child)::after {
    display: none;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card__img {
    height: 220px;
  }

  /* Experiences preview CTA */
  .experiences-preview__cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Brand story */
  .brand-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-story__left {
    font-size: 22px;
  }

  /* Roster */
  .roster__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .roster-card__img {
    height: 280px;
  }

  /* Values */
  .values__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .values__grid > div {
    padding: 40px 0;
    border-top: 0.5px solid var(--sand);
  }

  .values__grid > div:last-child {
    border-bottom: 0.5px solid var(--sand);
  }

  .value__title {
    font-size: 26px;
  }

  /* Experiences rows */
  .experiences-detail {
    padding: 64px 0;
  }

  .experience-row {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .experience-row--reverse {
    direction: ltr;
  }

  .experience-row__img {
    min-height: 260px;
    height: 260px;
  }

  .experience-row__content {
    padding: 40px 20px;
  }

  .experience-row__title {
    font-size: 34px;
  }

  .experience-row__content .btn {
    width: 100%;
    text-align: center;
  }

  /* Partner */
  .partner__quote {
    font-size: 22px;
  }

  .partner .btn {
    width: 100%;
    text-align: center;
  }

  /* Closing CTA */
  .closing-cta__heading {
    font-size: 28px;
    padding: 0 20px;
  }

  .closing-cta__content .btn {
    width: auto;
    min-width: 160px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-left__heading {
    font-size: 28px;
  }

  .enquiry-form .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 48px 20px 32px;
  }

  .footer__main {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer__confidential {
    margin-top: 28px;
    padding-top: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 20px;
  }

  /* Section titles */
  .section-title {
    font-size: 42px;
  }
}
