/*
Theme Name: The Jaiye Concierge
Theme URI: https://thejaiyeconcierge.com
Author: The Jaiye Concierge
Description: A private members' concierge. London based, globally connected.
Version: 3.3.0
Requires at least: 6.0
Requires PHP: 8.0
License: Private
Text Domain: tjc
*/

/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --dark:   #081f1c;
  --sage:   #b1bb9e;
  --cream:  #f5e9db;

  --text-on-dark:  #f5e9db;
  --text-on-light: #081f1c;
  --text-muted:    rgba(8, 31, 28, 0.6);
  --sage-dim:      rgba(177, 187, 158, 0.28);

  --font-h: 'Bodoni Moda', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;

  --max-w:  1240px;
  --nav-h:  180px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { overflow-x: hidden; }
body { font-family: var(--font-b); font-weight: 300; color: var(--text-on-light); background: var(--cream); line-height: 1.8; }
h1, h2 { font-family: var(--font-h); font-weight: 400; }
h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
p    { margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container      { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.container--sm  { max-width: 780px;        margin: 0 auto; padding: 0 2.5rem; }
.container--mid { max-width: 1000px;       margin: 0 auto; padding: 0 2.5rem; }
.center         { text-align: center; }

/* ============================================================
   TYPOGRAPHY ELEMENTS
============================================================ */
.section-label {
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--sage);
  display: block;
  margin-bottom: 0.85rem;
}

.brass-rule {
  width: 48px;
  height: 1px;
  background: var(--sage);
  display: block;
  margin: 2rem auto;
}
.brass-rule--left { margin-left: 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-outline {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.1rem 3rem;
  border: 1px solid var(--cream);
  color: var(--cream);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--dark);
}

.btn-outline--dark {
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline--dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(177, 187, 158, 0.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.nav-left a,
.nav-right a {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 233, 219, 0.6);
  transition: color 0.4s ease;
  position: relative;
}
.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width 0.4s ease;
}
.nav-left a:hover,
.nav-left a.current,
.nav-right a:hover,
.nav-right a.current { color: var(--cream); }
.nav-left a:hover::after,
.nav-left a.current::after,
.nav-right a:hover::after,
.nav-right a.current::after { width: 100%; }

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.site-logo__img {
  height: 160px;
  width: auto;
  max-width: 400px;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  z-index: 400;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 299;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-overlay.open { display: flex; }

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.nav-overlay__links a {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}
.nav-overlay__links a:hover { opacity: 0.65; }

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--slide-img);
  background-size: cover;
  background-position: center;
  animation: none;
}
.hero-slide.active::before {
  animation: hero-ken-burns 7s ease-out forwards;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 31, 28, 0.58);
  z-index: 1;
}
.hero-slide.active { opacity: 1; }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 6rem;
  color: var(--cream);
}

.hero-logo {
  height: clamp(90px, 14vw, 160px);
  width: auto;
  display: block;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.hero-sub {
  font-family: var(--font-b);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 300;
  color: rgba(245, 233, 219, 0.65);
  letter-spacing: 0.06em;
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: hero-rise-in 1s ease-out 1.1s both;
}

.hero-word {
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 14rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 0.9;
  display: block;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  animation: hero-rise-in 1s ease-out 0.8s both;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}
.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 233, 219, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active {
  background: var(--sage);
  transform: scale(1.4);
}
.hero-content .btn-outline {
  animation: hero-rise-in 1s ease-out 1.4s both;
}

@keyframes hero-ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
@keyframes hero-rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PARTNER LOGOS — CONTINUOUS MARQUEE
============================================================ */
.marquee-section {
  background: var(--cream);
  padding: 2.75rem 0;
  overflow: hidden;
  border-top: 1px solid var(--sage-dim);
  border-bottom: 1px solid var(--sage-dim);
}

.marquee-intro {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.45;
  padding: 0 2.5rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding: 0 8rem 0 0;
  flex-shrink: 0;
}

.partner-logo {
  height: 76px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}
.partner-logo:hover { filter: grayscale(0%) opacity(1); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   OUR PROMISE
============================================================ */
.promise-section {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 9rem 0;
}

.promise-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}

.promise-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.7);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.promise-pillars {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.06em;
}

/* ============================================================
   WHO WE SERVE
============================================================ */
.who-section {
  background: var(--cream);
  color: var(--text-on-light);
  padding: 9rem 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.who-heading {
  font-family: var(--font-h);
  font-size: clamp(2.9rem, 5.2vw, 4.6rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
}

.who-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
}
.who-body p { margin-bottom: 1.6rem; }

/* ============================================================
   FOUR AREAS OF CRAFT
============================================================ */
.craft-section {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 8.5rem 0 0;
}

.craft-section .container { margin-bottom: 4rem; }

.craft-heading {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--sage);
}

.craft-tile {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.craft-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.8s ease;
}
.craft-tile:hover::after {
  transform: scale(1.04);
}
.craft-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 31, 28, 0.12) 0%,
    rgba(8, 31, 28, 0.52) 48%,
    rgba(8, 31, 28, 0.88) 100%
  );
  z-index: 1;
  opacity: 0.88;
  transition: opacity 0.5s ease;
}
.craft-tile:hover::before {
  opacity: 1;
}

.craft-tile__num {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--sage);
  letter-spacing: 0.04em;
}

.craft-tile__inner {
  position: relative;
  z-index: 2;
  width: 88%;
  padding: 1.5rem 0;
  text-align: center;
}

.craft-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #f5e9db;
  line-height: 1.2;
  margin-bottom: 0;
}

.craft-tile__body {
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.8);
  line-height: 1.7;
  margin: 0;
  padding-top: 0.65rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: max-height 0.35s ease, opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.craft-tile:hover .craft-tile__body {
  max-height: 110px;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WHY US
============================================================ */
.why-section {
  background: var(--sage);
  color: var(--text-on-light);
  padding: 9rem 0;
}

.why-section .section-label { color: var(--dark); }

.why-heading {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  margin-bottom: 5rem;
}

.why-list { border-bottom: 1px solid rgba(8, 31, 28, 0.15); }

.why-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(8, 31, 28, 0.15);
  align-items: start;
}

.why-numeral {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  padding-top: 0.2rem;
  line-height: 1;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 680px;
}

/* ============================================================
   MEMBERSHIP CTA (Home page bottom)
============================================================ */
.home-cta-section {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 9rem 0;
}

.home-cta-heading {
  font-family: var(--font-h);
  font-size: clamp(2.3rem, 5.2vw, 4.3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 1.75rem;
}

.home-cta-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.65);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ============================================================
   PAGE HERO — SOLID (Membership, Contact)
============================================================ */
.page-hero-solid {
  background: var(--dark);
  color: var(--text-on-dark);
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2.5rem 6rem;
}

.page-hero-solid__inner { max-width: 820px; }

.page-hero-label {
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(177, 187, 158, 0.75);
  display: block;
  margin-bottom: 2rem;
}

.page-hero-heading {
  font-family: var(--font-h);
  font-size: clamp(4rem, 10.4vw, 8.6rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.page-hero-sub {
  font-family: var(--font-b);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 233, 219, 0.45);
  margin-bottom: 2rem;
}

.page-hero-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.65);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   FOUNDING MEMBERS
============================================================ */
.founding-section {
  background: var(--cream);
  color: var(--text-on-light);
  padding: 7rem 0;
}

.founding-heading {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.founding-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   TIER EDITORIAL BLOCKS
============================================================ */
.tier-block {
  padding: 8rem 0;
}
.tier-block + .tier-block { border-top: 1px solid rgba(177, 187, 158, 0.30); }

.tier-block--foundation,
.tier-block--bespoke { background: var(--sage); color: var(--text-on-light); }
.tier-block--signature { background: var(--dark); color: var(--text-on-dark); }

/* Container alignment variants */
.tier-inner--left {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem;
}
.tier-inner--centre {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}
.tier-inner--right {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem;
  text-align: right;
}

.tier-numeral {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.tier-block--foundation .tier-numeral,
.tier-block--bespoke .tier-numeral { color: var(--text-muted); }
.tier-block--signature .tier-numeral { color: var(--cream); }

.tier-name {
  font-family: var(--font-h);
  font-size: clamp(3.2rem, 6.9vw, 5.75rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.tier-block--foundation .tier-name,
.tier-block--bespoke .tier-name { color: var(--dark); }
.tier-block--signature .tier-name { color: var(--cream); }

.tier-invitation {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.tier-block--foundation .tier-invitation,
.tier-block--bespoke .tier-invitation { color: var(--text-muted); }
.tier-block--signature .tier-invitation { color: rgba(245, 233, 219, 0.6); }

.tier-price {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}
.tier-block--foundation .tier-price,
.tier-block--bespoke .tier-price { color: var(--dark); }
.tier-block--signature .tier-price { color: var(--cream); }

.tier-billing {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 1.25rem;
}
.tier-block--foundation .tier-billing,
.tier-block--bespoke .tier-billing { color: var(--text-muted); }
.tier-block--signature .tier-billing { color: rgba(245, 233, 219, 0.45); }

.tier-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 3.5rem;
  line-height: 1.4;
}
.tier-block--foundation .tier-tagline,
.tier-block--bespoke .tier-tagline { color: var(--text-muted); }
.tier-block--signature .tier-tagline { color: rgba(245, 233, 219, 0.6); }

.tier-divider {
  width: 48px;
  height: 1px;
  display: block;
  margin: 0 0 3.5rem;
}
.tier-block--foundation .tier-divider,
.tier-block--bespoke .tier-divider { background: rgba(8, 31, 28, 0.25); }
.tier-block--signature .tier-divider { background: var(--sage); }
.tier-inner--centre .tier-divider { margin: 0 auto 3.5rem; }
.tier-inner--right  .tier-divider { margin: 0 0 3.5rem auto; }

.tier-cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem 6rem;
  text-align: left;
}
.tier-inner--right .tier-cols { text-align: right; }

.tier-block-label {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 1.1rem;
}
.tier-block--foundation .tier-block-label,
.tier-block--bespoke .tier-block-label { color: var(--text-muted); }
.tier-block--signature .tier-block-label { color: var(--sage); }

.tier-list { margin: 0; padding: 0; }
.tier-list li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  padding: 0.6rem 0 0.6rem 1.5rem;
  border-bottom: 1px solid var(--sage-dim);
  position: relative;
}
.tier-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.72rem;
}
.tier-block--foundation .tier-list li::before,
.tier-block--bespoke .tier-list li::before { color: var(--text-muted); }
.tier-block--signature .tier-list li::before { color: var(--sage); }
.tier-list li:last-child { border-bottom: none; }

.tier-inner--right .tier-list li {
  padding: 0.6rem 1.5rem 0.6rem 0;
  text-align: right;
}
.tier-inner--right .tier-list li::before {
  left: auto;
  right: 0;
}

.tier-block--foundation .tier-list li,
.tier-block--bespoke .tier-list li { color: var(--text-on-light); }
.tier-block--signature .tier-list li { color: rgba(245, 233, 219, 0.82); }

.tier-info {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
}
.tier-block--foundation .tier-info,
.tier-block--bespoke .tier-info { color: var(--text-muted); }
.tier-block--signature .tier-info { color: rgba(245, 233, 219, 0.6); }

.tier-info-block + .tier-info-block { margin-top: 2rem; }

/* ============================================================
   MEMBERSHIP TILES ("What we take care of")
============================================================ */
.membership-tiles-section {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 8.5rem 0 0;
}

.membership-tiles-heading {
  font-family: var(--font-h);
  font-size: clamp(2.3rem, 4.6vw, 3.75rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  margin-bottom: 4rem;
}

.membership-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sage);
}

.mem-tile {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.mem-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.8s ease;
}
.mem-tile:hover::after {
  transform: scale(1.04);
}
.mem-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 31, 28, 0.12) 0%,
    rgba(8, 31, 28, 0.52) 48%,
    rgba(8, 31, 28, 0.88) 100%
  );
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.mem-tile:hover::before {
  opacity: 1;
}

.mem-tile__inner {
  position: relative;
  z-index: 2;
  width: 88%;
  padding: 1.25rem 0;
  text-align: center;
}

.mem-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: #f5e9db;
  line-height: 1.2;
  margin-bottom: 0;
}

.mem-tile__desc {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.8);
  line-height: 1.65;
  margin: 0;
  padding-top: 0.6rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: max-height 0.35s ease, opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.mem-tile:hover .mem-tile__desc {
  max-height: 110px;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section {
  background: var(--cream);
  color: var(--text-on-light);
  padding: 9rem 0;
}

.how-heading {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  margin-bottom: 5rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 7rem;
}

.how-item__label {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage);
  display: block;
  margin-bottom: 0.9rem;
}
.how-item__body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   PAGE CTA SECTION (Membership page bottom)
============================================================ */
.page-cta-section {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 9rem 0;
}
.page-cta-heading {
  font-family: var(--font-h);
  font-size: clamp(2.3rem, 5.2vw, 4.3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 1.75rem;
}
.page-cta-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.65);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 3rem;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-page {
  background: var(--dark);
  color: var(--text-on-dark);
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.contact-hero {
  padding: 7rem 2.5rem 5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-heading {
  font-family: var(--font-h);
  font-size: clamp(4.5rem, 12.5vw, 10.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.contact-intro {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.7);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.contact-email-link {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  display: block;
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
}

.contact-email-note {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.4);
  margin-bottom: 2.75rem;
}

.contact-note {
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 233, 219, 0.45);
  line-height: 1.8;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(177, 187, 158, 0.25);
}

.contact-insta {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--font-b);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage);
  transition: opacity 0.25s ease;
}
.contact-insta:hover { opacity: 0.65; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--sage);
  padding: 6rem 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.footer-links a {
  font-family: var(--font-b);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 233, 219, 0.45);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--cream); }

.footer-right {
  text-align: right;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245, 233, 219, 0.5);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.footer-legal {
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 233, 219, 0.22);
  padding-top: 2rem;
  border-top: 1px solid rgba(177, 187, 158, 0.2);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .tier-cols { gap: 3rem 4rem; }
  .who-grid  { gap: 5rem; }
}

/* hamburger on tablets and smaller */
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  .nav-left,
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .site-logo__img {
    height: 52px;
    max-width: 180px;
  }
}

@media (min-width: 769px) {
  .nav-inner { column-gap: 3rem; }
}

@media (max-width: 860px) {
  .craft-grid {
    grid-template-columns: 1fr;
  }
  .craft-tile {
    aspect-ratio: 4 / 3;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .who-heading {
    position: static;
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

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

  .tier-cols { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
  }
  .footer-logo { display: flex; justify-content: center; }
  .footer-right { text-align: center; }
}

@media (max-width: 640px) {
  :root { --nav-h: 80px; }

  .container, .container--sm, .container--mid { padding: 0 1.5rem; }

  .craft-tile { aspect-ratio: auto; min-height: 300px; }

  .membership-tiles-grid { grid-template-columns: 1fr; }
  .mem-tile { height: 280px; }

  .tier-block { padding: 5rem 0; }
  .tier-inner--left,
  .tier-inner--centre,
  .tier-inner--right { padding: 0 1.5rem; text-align: left; }
  .tier-inner--right .tier-list li { padding: 0.6rem 0 0.6rem 1.5rem; text-align: left; }
  .tier-inner--right .tier-list li::before { left: 0; right: auto; }
  .tier-inner--right .tier-divider { margin: 0 0 3.5rem; }

  .why-item { grid-template-columns: 2.5rem 1fr; gap: 1.5rem; padding: 3rem 0; }

  .hero-word { font-size: clamp(4rem, 18vw, 7rem); }

  .page-hero-solid {
    min-height: 60vh;
    padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  }

  .promise-section, .who-section, .craft-section,
  .why-section, .home-cta-section, .founding-section,
  .membership-tiles-section, .how-section, .page-cta-section {
    padding: 6rem 0;
  }
  .craft-section { padding-bottom: 0; }
  .membership-tiles-section { padding-bottom: 0; }

  .contact-hero { padding: 4rem 1.5rem 3.5rem; }
  .contact-heading { font-size: clamp(3.5rem, 14vw, 6rem); }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-word,
  .hero-sub,
  .hero-content .btn-outline {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-slide::before {
    animation: none;
  }
  .craft-tile::after,
  .mem-tile::after {
    transition: none;
  }
}
