  :root {
    --ivory: #faf7f2;
    --stone: #e8dfd0;
    --gold: #b8975a;
    --gold-light: #d4b483;
    --gold-pale: #f0e4cc;
    --fig: #3d2b3d;
    --fig-soft: #5c4060;
    --rose: #c9a4a4;
    --rose-pale: #f0e4e0;
    --palette-taupe: #a39889;
    --palette-blush: #fcede6;
    --palette-plum: #9d5977;
    --palette-hay: #c6ab77;
    --text: #2c2218;
    --text-soft: #5c4e3a;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
    --body-copy-size: 0.95rem;
    --body-copy-line-height: 1.85;
    --compact-copy-line-height: 1.75;
    --section-label-size: 0.85rem;
    --nav-height: 90px;
  }

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
  }

  body {
    background: var(--ivory);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 3rem 0.75rem 1rem;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 151, 90, 0.15);
    transition: box-shadow 0.3s ease;
  }

  nav.nav-scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  }

  .nav-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    cursor: pointer;
    text-decoration: none;
    margin-left: -1rem;
    transition: opacity 0.2s;
  }

  .nav-logo-link:hover { opacity: 0.7; }

  .nav-logo {
    display: block;
    width: 170px;
    height: auto;
    object-fit: contain;
  }

  .nav-links {
    display: none;
    gap: 1.7rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-links .nav-cta,
  .nav-drawer .nav-cta {
    background: var(--gold);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    letter-spacing: 0.12em;
    transition: background 0.2s;
  }

  .nav-links .nav-cta:hover,
  .nav-drawer .nav-cta:hover {
    background: var(--fig);
    color: white;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(92, 78, 58, 0.28);
    border-radius: 2px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--text);
    transition: transform 0.25s, opacity 0.25s;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-drawer {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.5rem;
    width: min(340px, calc(100vw - 3rem));
    padding: 1.2rem;
    background: rgba(250, 247, 242, 0.98);
    border: 1px solid rgba(184, 151, 90, 0.18);
    box-shadow: 0 24px 60px rgba(44, 34, 24, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  }

  body.nav-open .nav-drawer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-drawer a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(184, 151, 90, 0.14);
    color: var(--text-soft);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav-drawer a:hover {
    color: var(--gold);
  }

  .nav-drawer .nav-cta {
    margin-top: 0.85rem;
    text-align: center;
    border-bottom: 0;
  }

  @media (min-width: 1360px) {
    .nav-links { display: flex; }
    .menu-toggle, .nav-drawer { display: none; }
  }

  /* HERO */
  .hero {
    min-height: clamp(640px, 80svh, 740px);
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 145px 0 6rem;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cotswold-soul-rachael-bowl.jpg');
    background-size: cover;
    background-position: center center;
    filter: brightness(0.75) saturate(0.9);
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.0); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(44, 34, 24, 0.55) 0%,
      rgba(61, 43, 61, 0.35) 60%,
      rgba(184, 151, 90, 0.1) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem;
    max-width: 680px;
    margin-left: 8%;
  }

  .hero-eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(18, 12, 8, 0.72), 0 1px 2px rgba(18, 12, 8, 0.82);
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 0.94rem;
    color: rgba(255,255,255,0.82);
    max-width: 440px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: white;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
    border: 1px solid var(--gold);
  }

  .btn-primary:hover {
    background: transparent;
    color: white;
  }

  .btn-primary--fig {
    margin-top: 1rem;
    background: var(--fig);
    border-color: var(--fig);
  }

  .btn-ghost {
    display: inline-block;
    background: transparent;
    color: white;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: background 0.25s, border-color 0.25s;
  }

  .btn-ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
  }

  .hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    margin-top: 0.3rem;
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* SECTIONS */
  section {
    position: relative;
    scroll-margin-top: var(--nav-height);
  }

  body.modal-open {
    overflow: hidden;
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 3rem;
  }

  .label {
    font-family: var(--sans);
    font-size: var(--section-label-size);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
  }

  .intro-text p,
  .benefits-copy p,
  .retreats p,
  .booking-header p,
  .about-text p,
  .corporate p,
  .community p {
    font-size: var(--body-copy-size);
    line-height: var(--body-copy-line-height);
  }

  .benefit-card p,
  .offering-card p,
  .step-body p,
  .faq-item p {
    font-size: var(--body-copy-size);
    line-height: var(--compact-copy-line-height);
  }

  /* INTRO */
  .intro {
    background: var(--ivory);
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .intro-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--fig);
    margin-bottom: 1.8rem;
  }

  .intro-text p {
    color: var(--text-soft);
    margin-bottom: 1.2rem;
  }

  .intro-image {
    position: relative;
  }

  .intro-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
    display: block;
  }

  .intro-image::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid var(--gold-pale);
    border-radius: 2px;
    z-index: 0;
  }

  .intro-image img { position: relative; z-index: 1; }

  /* BENEFITS */
  .benefits {
    background: var(--ivory);
    border-top: 1px solid rgba(184,151,90,0.12);
  }

  .benefits-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
  }

  .benefits-text h2,
  .retreats h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 300;
    color: var(--fig);
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }

  .benefits-copy p,
  .retreats p {
    color: var(--text-soft);
    margin-bottom: 1.2rem;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    border: 1px solid rgba(184,151,90,0.28);
    text-align: left;
  }

  .benefit-card {
    min-height: 185px;
    padding: 1.55rem 1.5rem;
    background: rgba(250, 247, 242, 0.45);
    border-right: 1px solid rgba(184,151,90,0.28);
    border-bottom: 1px solid rgba(184,151,90,0.28);
  }

  .benefit-card:nth-child(3n) {
    border-right: 0;
  }

  .benefit-card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .benefit-card::before {
    content: '';
    display: block;
    width: 3.5rem;
    height: 1px;
    margin-bottom: 1.15rem;
    background: rgba(92, 78, 58, 0.48);
  }

  .benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--fig);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .benefit-card p {
    margin: 0;
    color: var(--text-soft);
  }

  .benefits-detail {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    text-align: left;
  }

  .benefits-copy {
    max-width: 470px;
  }

  .benefits-image img,
  .retreats-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }

  .benefits-image img { object-position: center center; }

  /* RETREATS */
  .retreats {
    background: var(--stone);
  }

  .retreats-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }

  .retreats-image img {
    object-position: center 42%;
  }

  .retreats .use-cases {
    justify-content: flex-start;
    gap: 0.9rem 1rem;
    margin-bottom: 0;
  }

  /* BOOKING SECTION */
  .booking {
    background: var(--stone);
    color: var(--text);
  }

  .booking .section-inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .booking-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .booking-header .label {
    color: var(--palette-plum);
    margin-bottom: 1rem;
  }

  .booking-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--fig);
    margin-bottom: 1rem;
  }

  .booking-header p {
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 auto;
  }

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

  .offering-card {
    --card-bg: var(--palette-blush);
    --card-accent: var(--palette-plum);
    --card-button: var(--palette-plum);
    --card-button-text: white;
    --card-text: var(--fig);
    --card-muted: var(--text-soft);
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(44, 34, 24, 0.1);
    border-radius: 2px;
    box-shadow: 0 18px 45px rgba(44, 34, 24, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .offering-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-accent);
  }

  .offering-card:hover {
    box-shadow: 0 24px 55px rgba(44, 34, 24, 0.12);
    transform: translateY(-2px);
  }

  .offering-tag {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--card-accent);
    margin-bottom: 1rem;
  }

  .offering-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--card-text);
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .offering-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .offering-meta span {
    font-size: 0.8rem;
    color: var(--card-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .offering-meta .price {
    color: var(--card-accent);
    font-weight: 500;
  }

  .offering-card p {
    color: var(--card-muted);
    flex: 1;
    margin-bottom: 2rem;
  }

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

  .btn-book {
    display: inline-block;
    background: var(--card-button, var(--gold));
    color: var(--card-button-text, white);
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid var(--card-button, var(--gold));
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
  }

  .btn-book:hover {
    background: transparent;
    color: var(--card-button, var(--gold));
  }

  .btn-book--community {
    font-size: 0.8rem;
    padding: 1rem 2.5rem;
  }

  /* CAL MODAL */
  .cal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(30, 20, 15, 0.85);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .cal-modal.active { display: flex; }

  .cal-modal-inner {
    background: var(--ivory);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  }

  .cal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid var(--stone);
    background: white;
  }

  .cal-modal-header h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--fig);
  }

  .cal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-soft);
    line-height: 1;
    padding: 0.3rem;
    transition: color 0.2s;
  }

  .cal-close:hover { color: var(--fig); }

  .cal-frame-wrap {
    height: calc(90vh - 70px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cal-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 600px;
  }

  /* ABOUT */
  .about {
    background: var(--stone);
  }

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

  .about-image-wrap {
    position: relative;
    padding-top: 2rem;
  }

  .about-image-wrap img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 2px;
    display: block;
  }

  .about-quote {
    position: absolute;
    bottom: -1.5rem;
    right: -2rem;
    background: white;
    padding: 1.5rem 1.8rem;
    max-width: 280px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  }

  .about-quote p {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--fig);
    line-height: 1.5;
  }

  .about-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--fig);
    line-height: 1.25;
    margin-bottom: 1.8rem;
  }

  .about-text p {
    color: var(--text);
    margin-bottom: 1.2rem;
  }

  .credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(184,151,90,0.25);
    padding-top: 1.5rem;
  }

  .cred-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-soft);
  }

  .cred-item::before {
    content: '-';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  /* TESTIMONIALS */
  .testimonials {
    background:
      linear-gradient(135deg, rgba(240, 228, 204, 0.55), rgba(240, 228, 224, 0.7)),
      var(--ivory);
  }

  .testimonials-header {
    max-width: 620px;
    margin-bottom: 3rem;
  }

  .testimonials-header .label {
    margin-bottom: 1rem;
  }

  .testimonials-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--fig);
    line-height: 1.2;
  }

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

  .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(184, 151, 90, 0.22);
    border-radius: 2px;
    box-shadow: 0 18px 45px rgba(44, 34, 24, 0.07);
  }

  .testimonial-card p {
    color: var(--text-soft);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.55;
  }

  .testimonial-card cite {
    display: block;
    margin-top: 2rem;
    color: var(--fig);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  /* WHAT TO EXPECT */
  .expect {
    background: var(--ivory);
  }

  .expect-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }

  .expect-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--fig);
    line-height: 1.25;
    margin-bottom: 2rem;
  }

  .expect-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .expect-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .step-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold-light);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    font-style: italic;
  }

  .step-body h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--fig);
    margin-bottom: 0.4rem;
  }

  .step-body p {
    color: var(--text-soft);
  }

  .expect-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }

  /* FAQ */
  .faq {
    background: var(--ivory);
    border-top: 1px solid rgba(184,151,90,0.12);
  }

  .faq .section-inner {
    max-width: 900px;
    padding-top: 5rem;
  }

  .faq-header {
    max-width: 620px;
    margin-bottom: 2.5rem;
  }

  .faq-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--fig);
    line-height: 1.25;
  }

  .faq-list {
    display: grid;
    gap: 1rem;
  }

  .faq-item {
    padding: 1.5rem 1.7rem;
    background: rgba(252, 237, 230, 0.56);
    border: 1px solid rgba(157, 89, 119, 0.16);
    border-radius: 2px;
  }

  .faq-item h3 {
    margin-bottom: 0.6rem;
    color: var(--fig);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
  }

  .faq-item p {
    color: var(--text-soft);
  }

  /* CORPORATE */
  .corporate {
    background: var(--rose-pale);
    text-align: left;
  }

  .corporate .section-inner {
    max-width: 750px;
  }

  .corporate .label {
    margin-bottom: 1rem;
  }

  .corporate h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--fig);
    margin-bottom: 1.5rem;
  }

  .corporate p {
    color: var(--text-soft);
    margin-bottom: 1.2rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
  }

  .corporate .use-cases {
    justify-content: flex-start;
    gap: 0.9rem 1rem;
    margin-bottom: 0;
  }

  .use-cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 2rem 0 2.5rem;
  }

  .use-case-tag {
    background: white;
    border: 1px solid var(--rose);
    color: var(--fig-soft);
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    border-radius: 999px;
  }

  .retreats .use-case-tag,
  .corporate .use-case-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 252, 247, 0.48);
    border: 1.5px solid rgba(159, 142, 124, 0.68);
    color: #675d54;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.25;
    padding: 0.68rem 1.2rem;
    box-shadow: none;
  }

  .retreats .use-case-tag::before,
  .corporate .use-case-tag::before {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    flex: 0 0 0.3rem;
    border-radius: 50%;
    background: rgba(159, 142, 124, 0.72);
  }

  /* COMMUNITY */
  .community {
    background: var(--fig);
    text-align: center;
    color: white;
  }

  .community .section-inner { padding: 5rem 3rem; }

  .community .label {
    color: var(--gold-light);
    margin-bottom: 1rem;
  }

  .community h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1.2rem;
  }

  .community p {
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 2.5rem;
  }

  .community-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .perk {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .perk::before {
    content: '-';
    color: var(--gold-light);
  }

  /* FOOTER */
  footer {
    background: #1e1410;
    color: rgba(255,255,255,0.5);
    padding: 4rem 3rem 2.5rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .footer-brand img {
    width: 170px;
    height: auto;
    margin-left: -1rem;
    margin-bottom: 1.2rem;
    opacity: 0.85;
    filter: brightness(1.1);
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 260px;
    margin-bottom: 1rem;
  }

  .footer-brand a {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-decoration: none;
  }

  .footer-col h5 {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-col ul a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--gold-light); }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: var(--gold-light); }

  /* CONTACT */
  .contact {
    background: var(--ivory);
    text-align: center;
  }

  .contact .section-inner {
    max-width: 750px;
  }

  .contact .label {
    margin-bottom: 1rem;
  }

  .contact h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--fig);
    margin-bottom: 2.5rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-item label {
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
  }

  .contact-item a {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--fig);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-item a:hover {
    color: var(--gold);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0.7rem 1.5rem 0.7rem 0.75rem; }
    .nav-logo-link { margin-left: -0.85rem; }
    .nav-links { display: none; }
    .hero-content { width: calc(100% - 3rem); margin: 0 1.5rem; padding: 0; max-width: none; }
    .hero { min-height: 640px; padding: 145px 0 3rem; }
    .section-inner { padding: 4rem 1.5rem; }
    .intro-grid, .about-grid, .expect-inner, .retreats-inner, .testimonial-grid { grid-template-columns: 1fr; gap: 3rem; }
    .faq .section-inner { padding-top: 4rem; }
    .benefits-detail { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .benefits-copy { max-width: 700px; margin: 0 auto; }
    .intro-image { order: -1; }
    .intro-image img { height: 350px; }
    .benefits-image img, .retreats-image img { height: 380px; }
    .intro-image::before { display: none; }
    .about-image-wrap img { height: 420px; }
    .about-quote { position: static; margin-top: 1rem; max-width: 100%; }
    .testimonial-card { min-height: auto; }
    .offerings-grid { grid-template-columns: 1fr; }
    .expect-image { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  @media (max-width: 600px) {
    .hero { min-height: 720px; max-height: none; padding-bottom: 4rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; line-height: 1.5; }
    .hero-sub { max-width: 100%; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { text-align: center; }
    .hero-scroll { display: none; }
    .benefit-list { grid-template-columns: repeat(2, 1fr); }
    .benefit-card,
    .benefit-card:nth-child(3n) { border-right: 1px solid rgba(184,151,90,0.28); }
    .benefit-card:nth-child(2n) { border-right: 0; }
    .benefit-card:nth-last-child(-n + 3) { border-bottom: 1px solid rgba(184,151,90,0.28); }
    .benefit-card:nth-last-child(-n + 2) { border-bottom: 0; }
    .benefit-card:last-child { border-bottom: 0; }
    .offering-actions { flex-direction: column; }
  }

  @media (max-width: 420px) {
    .benefit-list { grid-template-columns: 1fr; }
    .benefit-card,
    .benefit-card:nth-child(2n),
    .benefit-card:nth-child(3n) { border-right: 0; }
    .benefit-card:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(184,151,90,0.28); }
    .benefit-card:last-child { border-bottom: 0; }
  }
