:root {
    --green: #14763C;
    --green-light: #1d9a50;
    --green-pale: #e8f2ec;
    --green-mid: #c2dccb;
    --bg: #F6F4F0;
    --bg-dark: #edeae4;
    --ink: #1c2b22;
    --muted: #5a6b60;
    --warm: #f0ece6;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    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: 1.2rem 3.5rem;
    background: rgba(246,244,240,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20,118,60,0.1);
    animation: fadeDown .7s ease both;
  }

  .logo {
    display: block;
    width: 10rem;
    line-height: 1;
    text-decoration: none;
  }

  .logo-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .logo-main {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: -.01em;
  }

  .logo-sub {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .1rem;
  }

  nav ul {
    list-style: none;
    display: flex; gap: 2.2rem;
  }

  nav ul a {
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--muted);
    transition: color .2s;
  }
  nav ul a:hover { color: var(--green); }

  .nav-cta {
    font-size: .78rem; letter-spacing: .06em;
    padding: .55rem 1.4rem;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--green-light); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 9rem 4.5rem 6rem 5rem;
    animation: fadeUp .8s .15s ease both;
  }

  .eyebrow {
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--green); margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: .7rem;
  }
  .eyebrow::before {
    content: ''; width: 2rem; height: 1.5px; background: var(--green); flex-shrink: 0;
  }

  h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.6rem;
  }

  h1 em {
    font-style: italic;
    color: var(--green);
  }

  .hero-body {
    font-size: .97rem; line-height: 1.85;
    color: var(--muted); max-width: 40ch;
    margin-bottom: 2.8rem;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: .7rem;
    background: var(--green); color: #fff;
    text-decoration: none; padding: .9rem 2rem;
    font-size: .82rem; letter-spacing: .06em;
    border-radius: 2px;
    transition: background .2s, transform .2s;
    align-self: flex-start;
  }
  .btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }
  .btn-primary svg { width: 13px; height: 13px; transition: transform .2s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .hero-right {
    background:
      linear-gradient(135deg, rgba(244, 241, 235, .96), rgba(229, 241, 233, .92)),
      #f4f1eb;
    position: relative; overflow: hidden;
    animation: fadeIn 1s .3s ease both;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-right::before {
    content: none;
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(20,118,60,.07);
    top: -100px; right: -100px;
  }
  .hero-right::after {
    content: none;
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(20,118,60,.06);
    bottom: -60px; left: -60px;
  }

  .hero-card-wrap {
    position: relative; z-index: 1;
    width: 82%; max-width: 380px;
  }

  .hero-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(20,118,60,.12), 0 4px 12px rgba(0,0,0,.06);
  }

  .hero-card-img {
    height: 240px;
    background: linear-gradient(160deg, #c2dccb 0%, #8bbda0 60%, #5a9a72 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-room-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-room-photo + svg { display: none; }

  .hero-card-body {
    padding: 1.3rem 1.5rem;
  }

  .card-location {
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: .4rem;
  }

  .card-title {
    font-family: 'Lora', serif;
    font-size: 1.1rem; color: var(--ink); margin-bottom: .7rem;
  }

  .card-stats {
    display: flex; gap: 1rem 1.2rem; flex-wrap: wrap;
  }

  .stat {
    display: flex; flex-direction: column; gap: .15rem;
    min-width: 4.2rem;
  }

  .stat strong {
    font-size: .92rem; color: var(--green); font-weight: 500;
  }

  .stat span { font-size: .68rem; color: var(--muted); }

  /* Floating pill */
  .floating-pill {
    position: absolute; top: -1rem; right: -1rem;
    background: var(--green);
    color: #fff;
    padding: .6rem 1.1rem;
    border-radius: 2px;
    font-size: .75rem; letter-spacing: .06em;
    box-shadow: 0 6px 20px rgba(20,118,60,.3);
    white-space: nowrap;
  }

  /* Plant decoration */
  /* ── TICKER ── */
  .ticker {
    background: var(--green);
    padding: .85rem 0;
    overflow: hidden; display: flex;
  }

  .ticker-track {
    display: flex; gap: 2.5rem; white-space: nowrap;
    animation: marquee 20s linear infinite;
  }

  .ticker-item {
    display: flex; align-items: center; gap: 1rem;
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.75);
  }

  .ticker-item::after { content: '·'; color: rgba(255,255,255,.35); }

  /* ── PHILOSOPHY ── */
  #philosophy {
    padding: 7rem 5rem;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .section-label {
    font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--green); margin-bottom: 1rem;
    display: flex; align-items: center; gap: .7rem;
  }
  .section-label::before {
    content: ''; width: 1.6rem; height: 1.5px; background: var(--green);
  }

  h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500; line-height: 1.2;
    margin-bottom: 1.4rem; color: var(--ink);
  }

  h2 em { font-style: italic; color: var(--green); }

  .body-text {
    font-size: .94rem; line-height: 1.9; color: var(--muted);
    margin-bottom: 1.1rem;
  }

  .pillars { display: flex; flex-direction: column; gap: 1rem; }

  .pillar {
    background: #fff;
    border: 1px solid var(--green-mid);
    border-radius: 3px;
    padding: 1.5rem 1.8rem;
    display: flex; gap: 1.2rem; align-items: flex-start;
    transition: border-color .25s, box-shadow .25s;
  }

  .pillar:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(20,118,60,.1);
  }

  .pillar-icon {
    font-size: 1.3rem; flex-shrink: 0; margin-top: .15rem;
  }

  .pillar-text h4 {
    font-family: 'Lora', serif;
    font-size: 1rem; font-weight: 500; margin-bottom: .35rem; color: var(--ink);
  }

  .pillar-text p {
    font-size: .83rem; line-height: 1.7; color: var(--muted);
  }

  /* ── SERVICES ── */
  #services {
    background: var(--ink);
    padding: 7rem 5rem;
  }

  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: end;
    margin-bottom: 4rem;
  }

  .services-header h2 { color: #fff; margin-bottom: 0; }
  .services-header .section-label { color: var(--green-mid); }
  .services-header .section-label::before { background: var(--green-mid); }
  .services-header p { color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.8; }

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

  .service-card {
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 3px;
    padding: 2.8rem 2.2rem;
    transition: background .25s, border-color .25s, transform .25s;
    position: relative; overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,.08);
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--green);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }

  .service-card:hover {
    background: rgba(255,255,255,.105);
    border-color: rgba(255,255,255,.24);
    transform: translateY(-2px);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(194,220,203,.16);
    border: 1px solid rgba(194,220,203,.28);
    color: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.4rem;
  }

  .service-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem; font-weight: 500;
    color: #fff; margin-bottom: .9rem;
  }

  .service-card p {
    font-size: .85rem; line-height: 1.8;
    color: rgba(255,255,255,.66);
    margin-bottom: 1.6rem;
  }

  .service-link {
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--green-mid); display: flex; align-items: center; gap: .4rem;
  }

  /* ── DIFFERENCE ── */
  #difference {
    padding: 7rem 5rem;
    background: var(--bg);
  }

  .difference-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
  }

  .difference-header .section-label { justify-content: center; }
  .difference-header .section-label::before { display: none; }
  .difference-header p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
    max-width: 58ch;
    margin: 0 auto;
  }

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

  .difference-card {
    background: #fff;
    border: 1px solid var(--green-mid);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(20,118,60,.08);
  }

  .difference-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    padding: 1.2rem 1.3rem;
    border-bottom: 1px solid var(--green-mid);
    display: flex;
    align-items: center;
    gap: .65rem;
  }

  .difference-card h3 span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--green-pale);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
  }

  .difference-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .difference-side {
    padding: 1.25rem 1.3rem;
    min-height: 13rem;
  }

  .difference-side + .difference-side {
    border-left: 1px solid var(--green-mid);
  }

  .difference-side span {
    display: block;
    font-size: .62rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: .75rem;
    font-weight: 500;
  }

  .without-side span { color: var(--muted); }
  .with-side {
    background: #f7fbf8;
  }
  .with-side span { color: var(--green); }

  .difference-side p {
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.7;
  }

  .with-side p {
    color: #40584a;
  }

  /* ── COST ── */
  #cost {
    padding: 7rem 5rem;
    background: var(--green-pale);
  }

  .cost-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 4rem;
    align-items: start;
  }

  .cost-copy h2 { margin-bottom: 1.4rem; }

  .cost-copy .body-text { max-width: 52ch; }

  .cost-note {
    margin-top: 2rem;
    padding-left: 1.2rem;
    border-left: 2.5px solid var(--green);
    font-family: 'Lora', serif;
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--ink);
  }

  .cost-steps {
    display: grid;
    gap: .85rem;
  }

  .cost-step {
    background: #fff;
    border: 1px solid var(--green-mid);
    border-radius: 3px;
    padding: 1.4rem 1.6rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
  }

  .cost-step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 500;
    flex-shrink: 0;
  }

  .cost-step h3 {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: .35rem;
  }

  .cost-step p {
    font-size: .83rem;
    line-height: 1.75;
    color: var(--muted);
  }

  /* ── TRANSFORMATIONS ── */
  #transformations {
    padding: 7rem 5rem;
    background: var(--bg);
  }

  .transforms-header {
    text-align: center; margin-bottom: 4rem;
  }

  .transforms-header .section-label { justify-content: center; }
  .transforms-header .section-label::before { display: none; }
  .transforms-header p {
    color: var(--muted); max-width: 46ch; margin: 0 auto; font-size: .9rem; line-height: 1.8;
  }

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

  .ba-card {
    background: #fff;
    border: 1px solid var(--green-mid);
    border-radius: 3px; overflow: hidden;
  }
  .bedroom-card { order: 2; }
  .bathroom-card { order: 3; }
  .kitchen-card { order: 4; }

  .ba-visual {
    height: 260px;
    position: relative;
    overflow: hidden;
  }

  .ba-slider {
    --split: 50%;
    cursor: ew-resize;
    touch-action: pan-y;
    user-select: none;
  }

  .ba-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ba-slide-before {
    z-index: 1;
  }

  .ba-slide-after {
    clip-path: inset(0 0 0 var(--split));
    z-index: 2;
  }

  .ba-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ba-photo + svg { display: none; }

  .ba-before-bg { background: linear-gradient(145deg, #b8b0a8, #9a9088); }
  .ba-after-bg  { background: linear-gradient(145deg, #c2dccb, #8bbda0); }

  .ba-label-overlay {
    position: absolute; bottom: .6rem; left: 50%;
    transform: translateX(-50%);
    font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.8);
    background: rgba(0,0,0,.25);
    padding: .2rem .5rem; border-radius: 2px;
  }

  .ba-slide-before .ba-label-overlay {
    left: 1rem;
    transform: none;
  }

  .ba-slide-after .ba-label-overlay {
    left: auto;
    right: 1rem;
    transform: none;
  }

  .ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    width: 2px; background: #fff; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .ba-arrow {
    width: 26px; height: 26px;
    background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; color: var(--ink); flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(28,43,34,.16);
  }

  .ba-range {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
  }

  @media (min-width: 641px) {
    .ba-slider {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      cursor: default;
      touch-action: auto;
      user-select: auto;
    }

    .ba-slide {
      position: relative;
      inset: auto;
      min-width: 0;
      height: 100%;
      overflow: hidden;
      background: #dbe9e1;
    }

    .ba-slide + .ba-slide {
      border-left: 1px solid #fff;
    }

    .ba-slide-after {
      clip-path: none;
    }

    .ba-photo {
      object-fit: cover;
      object-position: center center;
    }

    .ba-divider,
    .ba-range {
      display: none;
    }
  }

  .ba-info {
    padding: 1.3rem 1.5rem;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 1.2rem;
  }

  .ba-info h4 {
    font-family: 'Lora', serif;
    font-size: 1rem; color: var(--ink); margin-bottom: .25rem;
  }

  .ba-info p { font-size: .78rem; color: var(--muted); }

  .ba-info ul {
    margin: .35rem 0 0 1rem;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
  }

  .ba-info li + li { margin-top: .18rem; }

  .ba-budget {
    text-align: right; flex-shrink: 0;
  }

  .ba-budget strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.2rem; color: var(--green);
  }

  .ba-budget span { font-size: .68rem; color: var(--muted); }

  /* ── REVIEWS ── */
  #guest-reviews {
    padding: 6rem 5rem;
    background: linear-gradient(180deg, var(--bg), #fff);
  }

  .reviews-header {
    max-width: 760px;
    margin-bottom: 2.4rem;
  }

  .reviews-header p:not(.section-label) {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
    max-width: 56ch;
  }

  .reviews-showcase {
    display: block;
  }

  .reviews-feature {
    position: relative;
    color: var(--ink);
    padding: 2rem 2.2rem 2.1rem 5.6rem;
    border-bottom: 1px solid var(--green-mid);
    max-width: 980px;
    background: linear-gradient(90deg, var(--green-pale), rgba(255,255,255,0));
    margin-bottom: .2rem;
  }

  .reviews-feature::before {
    content: "“";
    position: absolute;
    top: 1.4rem;
    left: 1.6rem;
    font-family: 'Lora', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--green);
    opacity: .28;
  }

  .reviews-feature h3 {
    font-family: 'Lora', serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.15;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: .8rem;
  }

  .reviews-feature p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 54ch;
  }

  .review-source {
    display: block;
    margin-top: 1rem;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .reviews-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--green-mid);
  }

  .review-row {
    display: block;
    padding: 1.65rem 1.25rem 1.8rem;
  }

  .review-row + .review-row { border-left: 1px solid var(--green-mid); }

  .review-number {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--green);
    display: block;
    margin-bottom: 1.2rem;
  }

  .review-row h3 {
    font-family: 'Lora', serif;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: .65rem;
  }

  .review-row p {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .review-row .review-source {
    color: var(--muted);
    margin-top: .8rem;
  }

  #hospitality-reviews {
    padding: 3.6rem 5rem;
    background: var(--green-pale);
    color: var(--ink);
  }

  .hospitality-inner {
    display: block;
  }

  .hospitality-copy {
    max-width: 820px;
    margin-bottom: 1.5rem;
  }

  .hospitality-copy .section-label { margin-bottom: .75rem; }

  .hospitality-copy h2 {
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 1rem;
  }

  .hospitality-copy p:not(.section-label) {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.75;
    max-width: 64ch;
  }

  .hospitality-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
  }

  .hospitality-quote {
    background: #fff;
    border: 1px solid var(--green-mid);
    border-radius: 4px;
    padding: 1rem;
    box-shadow: 0 10px 26px rgba(20,118,60,.07);
  }

  .hospitality-quote p {
    font-size: .82rem;
    line-height: 1.65;
    color: var(--ink);
  }

  .hospitality-quote span {
    display: block;
    margin-top: .55rem;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
  }

  /* ── FOUNDER ── */
  #founder {
    padding: 7rem 5rem;
    background: var(--green-pale);
    display: grid; grid-template-columns: minmax(240px, .72fr) 1.28fr;
    gap: 4.5rem; align-items: center;
  }

  .founder-frame {
    aspect-ratio: 3/4;
    background: var(--green-mid);
    border-radius: 3px;
    position: relative; overflow: hidden;
    max-width: 360px;
  }

  .founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
  }

  .founder-name {
    font-family: 'Lora', serif;
    font-size: 1rem; font-style: italic;
    color: var(--muted); margin-bottom: 1.8rem;
  }

  .creds {
    display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.8rem 0;
  }

  .cred {
    padding: .35rem .85rem;
    background: #fff;
    border: 1px solid var(--green-mid);
    border-radius: 2px;
    font-size: .73rem; color: var(--muted);
  }

  .quote {
    border-left: 2.5px solid var(--green);
    padding-left: 1.3rem;
    margin-top: 1.8rem;
  }

  .quote p {
    font-family: 'Lora', serif;
    font-size: 1.1rem; font-style: italic;
    line-height: 1.7; color: var(--ink);
  }

  /* ── PROCESS ── */
  #process {
    padding: 7rem 5rem;
    background: #fff;
  }

  .process-header {
    max-width: 44ch; margin-bottom: 4.5rem;
  }

  .steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 2rem; position: relative;
  }

  .step { position: relative; }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.35rem;
    left: 42px;
    right: -2rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--green-mid) 0, var(--green-mid) 6px, transparent 6px, transparent 14px);
  }

  .step-num {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.6rem;
    position: relative; z-index: 1;
    transition: background .25s;
  }

  .step:hover .step-num { background: var(--green); }

  .step-num span {
    font-family: 'Lora', serif;
    font-size: .85rem; color: var(--green);
    font-style: italic;
    transition: color .25s;
  }

  .step:hover .step-num span { color: #fff; }

  .step h4 {
    font-family: 'Lora', serif;
    font-size: 1rem; font-weight: 500; margin-bottom: .5rem; color: var(--ink);
  }

  .step p { font-size: .83rem; line-height: 1.75; color: var(--muted); }

  /* ── CTA ── */
  #cta {
    background: var(--green);
    padding: 7rem 5rem;
    position: relative; overflow: hidden;
  }

  #cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -200px; right: -150px; pointer-events: none;
  }

  #cta::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,.04);
    bottom: -100px; left: 20%; pointer-events: none;
  }

  .cta-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: .9fr 1.1fr;
    gap: 4rem; align-items: center;
  }

  #cta .section-label { color: rgba(255,255,255,.6); }
  #cta .section-label::before { background: rgba(255,255,255,.5); }

  #cta h2 { color: #fff; margin-bottom: .8rem; }

  #cta h2 em { color: #fff; }

  #cta p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.85; }

  .cta-actions {
    display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  }

  .cta-panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 3px;
    padding: 2rem;
  }

  .cta-panel h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
  }

  .cta-mini-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-top: 1.6rem;
  }

  .cta-mini-item {
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: .85rem;
  }

  .cta-mini-item span {
    display: block;
    font-size: .62rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.52);
    margin-bottom: .3rem;
  }

  .cta-mini-item strong {
    color: #fff;
    font-size: .86rem;
    font-weight: 500;
  }

  .btn-white {
    display: inline-flex; align-items: center; gap: .7rem;
    background: #fff; color: var(--green);
    text-decoration: none; padding: .9rem 2rem;
    font-size: .82rem; letter-spacing: .04em;
    border-radius: 2px;
    transition: background .2s, transform .2s;
    font-weight: 500;
  }
  .btn-white:hover { background: var(--bg); transform: translateY(-1px); }

  .btn-outline-white {
    display: inline-flex; align-items: center; gap: .6rem;
    border: 1.5px solid rgba(255,255,255,.4);
    color: rgba(255,255,255,.85);
    text-decoration: none; padding: .85rem 1.8rem;
    font-size: .8rem; letter-spacing: .04em;
    border-radius: 2px;
    transition: border-color .2s, background .2s;
  }
  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

  .contact-list {
    margin-top: 1.8rem;
    display: flex; flex-direction: column; gap: 1rem;
  }

  .contact-row {
    display: flex; align-items: center; gap: 1rem;
  }

  .contact-row-icon {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; flex-shrink: 0;
    color: var(--green);
    background: rgba(255,255,255,.95);
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
  }

  .contact-row div { display: flex; flex-direction: column; }

  .contact-row span:first-child {
    font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }

  .contact-row a {
    font-size: .88rem; color: rgba(255,255,255,.9);
    text-decoration: none;
  }
  .contact-row a:hover { color: #fff; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 2rem 5rem;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem;
  }

  footer .logo {
    width: 12rem;
  }

  footer .logo-main { font-size: 1.15rem; }
  footer .logo-sub { color: rgba(255,255,255,.3); }

  .footer-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .45rem;
    text-align: right;
  }

  footer p,
  footer a {
    font-size: .73rem;
    color: rgba(255,255,255,.5);
  }

  footer a {
    text-decoration: none;
  }

  footer a:hover { color: #fff; }

  .footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeUp   { from { opacity:0; transform:translateY(20px);  } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn   { from { opacity:0; }                               to { opacity:1; } }
  @keyframes marquee  { from { transform:translateX(0); } to { transform:translateX(-50%); } }

  .reveal { opacity:0; transform:translateY(22px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 1rem 1.8rem; }
    .logo { width: 8.2rem; }
    nav ul { display:none; }
    #hero { grid-template-columns:1fr; }
    .hero-left { padding: 7rem 2rem 3rem; }
    .hero-right { min-height: 55vw; }
    #philosophy, #founder { grid-template-columns:1fr; padding:5rem 2rem; gap:3rem; }
    .founder-frame { width: min(100%, 360px); margin: 0 auto; }
    #services, #difference, #cost, #transformations, #guest-reviews, #hospitality-reviews, #process, #cta { padding: 5rem 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .difference-grid { grid-template-columns: 1fr; }
    .reviews-feature { min-height: auto; }
    .reviews-list { grid-template-columns: 1fr 1fr; }
    .review-row + .review-row { border-left: 0; }
    .review-row:nth-child(odd) { border-right: 1px solid var(--green-mid); }
    .review-row:nth-child(n+3) { border-top: 1px solid var(--green-mid); }
    .hospitality-list { grid-template-columns: 1fr; }
    .cost-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .ba-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .step::after { display:none; }
    .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
    .cta-mini-list { grid-template-columns: 1fr; }
    .services-header { grid-template-columns:1fr; }
    footer { padding:1.8rem 2rem; flex-direction:column; gap:.8rem; text-align:center; align-items:center; }
    footer .logo { width: 10rem; }
    .footer-details { align-items:center; text-align:center; }
    .footer-links { justify-content:center; }
  }

  @media (max-width: 640px) {
    .hero-left { padding: 7rem 1.5rem 2.4rem; }
    .hero-right {
      min-height: auto;
      padding: 2.15rem 1.5rem 2.9rem;
      align-items: flex-start;
    }
    .hero-card-wrap {
      width: 100%;
      max-width: min(330px, calc(100vw - 3rem));
      margin: 0 auto;
    }
    .hero-card-img { height: clamp(180px, 58vw, 230px); }
    .hero-card-body { padding: 1.15rem; }
    .floating-pill {
      top: -.85rem;
      right: .5rem;
      max-width: calc(100% - 1rem);
      z-index: 2;
      font-size: .68rem;
      padding: .5rem .85rem;
    }
    .card-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .85rem 1rem;
    }
    .stat { min-width: 0; }
    .ba-visual { height: clamp(240px, 82vw, 320px); }
    .ba-info {
      display: grid;
      grid-template-columns: 1fr;
    }
    .ba-budget { text-align: left; }
    .reviews-feature { padding: 1.5rem 1.4rem 1.7rem 3.8rem; }
    .reviews-feature::before { left: 1rem; font-size: 3.8rem; }
    .reviews-list { grid-template-columns: 1fr; }
    .review-row:nth-child(odd) { border-right: 0; }
    .review-row:nth-child(n+2) { border-top: 1px solid var(--green-mid); }
  }
