/* ========== THEME VARIABLES ========== */
  :root, [data-theme="heritage-light"] {
    --bg: #F2ECDD;
    --surface: #EAE1CC;
    --surface-2: #E0D4B9;
    --surface-deep: #2D2A24;
    --text: #2D2A24;
    --text-dim: #6B5D4A;
    --text-faint: #9A8C74;
    --accent: #B8744A;
    --accent-bright: #D18A5C;
    --accent-soft: #E8B896;
    --olive: #8B8547;
    --ink-on-accent: #FFFFFF;
    --card: #EAE1CC;
    --card-hover: #E0D4B9;
  }
  [data-theme="heritage-dark"] {
    --bg: #1D1A15;
    --surface: #26221B;
    --surface-2: #322C22;
    --surface-deep: #0D0B08;
    --text: #F2ECDD;
    --text-dim: #C9BFA4;
    --text-faint: #8A8069;
    --accent: #D18A5C;
    --accent-bright: #E8A276;
    --accent-soft: #8B5A3A;
    --olive: #B3AA5E;
    --ink-on-accent: #1D1A15;
    --card: #26221B;
    --card-hover: #322C22;
  }
  [data-theme="forest"] {
    --bg: #0D1716;
    --surface: #132221;
    --surface-2: #17292A;
    --surface-deep: #0A1312;
    --text: #EFE9DD;
    --text-dim: #C9C3B7;
    --text-faint: #8C8A82;
    --accent: #8FB5A4;
    --accent-bright: #B2D4C2;
    --accent-soft: #4F7A6B;
    --olive: #D4B98A;
    --ink-on-accent: #0D1716;
    --card: #17292A;
    --card-hover: #1E3334;
  }
  [data-theme="navy"] {
    --bg: #1A3644;
    --surface: #22495A;
    --surface-2: #2C5A6E;
    --surface-deep: #0F2029;
    --text: #F5F1EA;
    --text-dim: #D8C7BD;
    --text-faint: #9BA6AA;
    --accent: #72BDA3;
    --accent-bright: #95D3BC;
    --accent-soft: #4A8A75;
    --olive: #D8C7BD;
    --ink-on-accent: #1A3644;
    --card: #22495A;
    --card-hover: #2C5A6E;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    overflow-x: hidden;
    transition: background-color .6s ease, color .6s ease;
  }
  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.015em;
    color: var(--text);
  }
  h1 { font-size: clamp(44px, 6.2vw, 92px); line-height: 1.02; font-weight: 300; }
  h2 { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.08; }
  h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.25; }
  h4 { font-size: 21px; line-height: 1.3; }
  a { color: var(--accent); text-decoration: none; transition: color .25s; }
  a:hover { color: var(--accent-bright); }
  p { line-height: 1.7; }
  img { max-width: 100%; display: block; }

  .skip { position: absolute; left: -9999px; }
  .skip:focus { left: 16px; top: 16px; background: var(--accent); color: var(--ink-on-accent); padding: 12px 18px; z-index: 999; }

  /* ========== NAV ========== */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    padding: 14px clamp(24px, 5vw, 56px);
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
    text-align: left;
    transition: background-color .6s ease;
    min-height: 82px;
  }

  /* Logo mark — top-left, both logos layered; theme switcher crossfades. */
  nav.top .mark {
    position: relative;
    display: block;
    width: 130px;
    height: 62px;
    cursor: pointer;
    transition: transform .3s;
    flex: 0 0 auto;
    line-height: 0;
  }
  nav.top .mark:hover { transform: translateY(-1px); }
  nav.top .mark img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
  }
  /* Heritage light — show the color logo */
  nav.top .mark .logo-color { opacity: 1; }
  nav.top .mark .logo-white { opacity: 0; }
  /* Dark / forest / navy themes — show the white logo */
  [data-theme="heritage-dark"] nav.top .mark .logo-color,
  [data-theme="forest"] nav.top .mark .logo-color,
  [data-theme="navy"] nav.top .mark .logo-color { opacity: 0; }
  [data-theme="heritage-dark"] nav.top .mark .logo-white,
  [data-theme="forest"] nav.top .mark .logo-white,
  [data-theme="navy"] nav.top .mark .logo-white { opacity: 1; }
  @media (max-width: 900px) {
    nav.top { padding: 12px 20px; min-height: 70px; gap: 14px; }
    nav.top .mark { width: 100px; height: 48px; }
  }
  @media (max-width: 560px) {
    nav.top .mark { width: 80px; height: 38px; }
  }
  nav.top ul { list-style: none; display: flex; gap: 32px; flex: 1; justify-content: center; }
  nav.top ul a {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
  }
  nav.top ul a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  nav.top ul a:hover { color: var(--text); }
  nav.top ul a:hover::after { transform: scaleX(1); }
  nav.top .book {
    padding: 14px 30px;
    background: var(--accent);
    color: var(--ink-on-accent);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  nav.top .book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-bright);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    z-index: 0;
  }
  nav.top .book span { position: relative; z-index: 1; }
  nav.top .book:hover::before { transform: translateX(0); }
  nav.top .book:hover { color: var(--ink-on-accent); transform: translateY(-1px); }
  nav.top .book:active { transform: translateY(0); }
  @media (max-width: 880px) { nav.top ul { display: none; } }

  /* ========== ANIMATIONS ========== */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .rise { opacity: 0; animation: riseIn .9s cubic-bezier(.2,.8,.2,1) forwards; }
  .r-1 { animation-delay: .05s; }
  .r-2 { animation-delay: .18s; }
  .r-3 { animation-delay: .32s; }
  .r-4 { animation-delay: .46s; }
  .r-5 { animation-delay: .6s; }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ========== BUTTONS ========== */
  .btn-row {
    display: flex; justify-content: center; align-items: center;
    gap: 18px; flex-wrap: wrap; margin-top: 10px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
  }
  .btn .arrow {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width .35s ease;
  }
  .btn .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }
  .btn:hover .arrow { width: 40px; }
  .btn > * { position: relative; z-index: 1; }
  .btn .label {
    color: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    font-weight: inherit;
    margin: 0;
    display: inline;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--ink-on-accent);
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    padding: 22px 48px;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-bright);
    transform: translateX(-101%);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-3px); }
  .btn-primary:active { transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 22px 42px;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text) 25%, transparent);
  }
  .btn-ghost:hover {
    color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent);
    transform: translateY(-2px);
  }
  .btn-ghost:active { transform: translateY(0); }

  /* ========== HERO ========== */
  section.hero {
    padding: clamp(80px, 12vh, 140px) 24px clamp(80px, 12vh, 140px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 34px;
    display: inline-block;
    position: relative;
    padding: 0 50px;
  }
  .eyebrow::before, .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: color-mix(in srgb, var(--accent) 50%, transparent);
  }
  .eyebrow::before { left: 0; }
  .eyebrow::after { right: 0; }
  .hero h1 {
    margin: 0 auto 34px;
    max-width: 18ch;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }
  .hero .lede {
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.65;
    color: var(--text-dim);
    max-width: 64ch;
    margin: 0 auto 48px;
    font-weight: 300;
  }

  /* Hero image mosaic */
  .hero-mosaic {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 8px;
    height: 360px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 760px) { .hero-mosaic { grid-template-columns: 1fr; height: auto; } }
  .hero-mosaic .tile {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform .6s ease;
  }
  @media (max-width: 760px) { .hero-mosaic .tile { height: 200px; } }
  .hero-mosaic .tile:hover { transform: scale(1.02); }
  .hero-mosaic .tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--surface-deep) 50%, transparent));
  }
  .hero-mosaic .t1 { background-image: url('../img/toronto-exterior.jpg'); }
  .hero-mosaic .t2 { background-image: url('../img/interior-massage-room.jpg'); }
  .hero-mosaic .t3 { background-image: url('../img/service-chiropractic.jpg'); }

  /* ========== STAT STRIP ========== */
  .strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 90px 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .stat .n {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 14px;
    font-style: italic;
  }
  .stat .l {
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
  }
  @media (max-width: 760px) { .strip { grid-template-columns: repeat(2, 1fr); gap: 44px; } }

  /* ========== BANDS ========== */
  section.band {
    padding: clamp(110px, 14vh, 160px) 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  section.tinted {
    background: var(--surface);
    max-width: none;
    padding: 0 24px;
    transition: background-color .6s ease;
  }
  section.tinted .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(110px, 14vh, 160px) 0;
  }

  .label {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
    display: block;
  }
  .section-head { max-width: 780px; margin: 0 auto 80px; }
  .section-head h2 { margin-bottom: 26px; }
  .section-head p {
    font-size: 19px;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 64ch;
    margin: 0 auto;
    font-weight: 300;
  }

  /* ========== HISTORY BLOCK ========== */
  .history {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
  }
  @media (max-width: 900px) { .history { grid-template-columns: 1fr; text-align: center; } }
  .history .photo {
    aspect-ratio: 4/5;
    background-image: url('../img/founders.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .history .photo::after {
    content: '';
    position: absolute;
    bottom: -14px; right: -14px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
    pointer-events: none;
  }
  .history .text .label { display: block; text-align: inherit; }
  .history .text h2 { margin-bottom: 26px; }
  .history .text p {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
  }
  .history .text .sig {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--accent);
    margin-top: 22px;
  }

  /* ========== PHASES ========== */
  .phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 900px) { .phases { grid-template-columns: 1fr; gap: 56px; } }
  .phase .roman {
    font-family: 'Fraunces', serif;
    font-size: 88px;
    font-weight: 300;
    color: var(--accent);
    font-style: italic;
    line-height: 1;
    margin-bottom: 22px;
    transition: transform .4s ease;
  }
  .phase:hover .roman { transform: translateY(-4px); }
  .phase h3 { margin-bottom: 16px; }
  .phase p {
    color: var(--text-dim);
    font-size: 16px;
    font-weight: 300;
    max-width: 30ch;
    margin: 0 auto;
  }

  /* ========== SERVICES ========== */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  @media (max-width: 960px) { .services { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .services { grid-template-columns: 1fr; } }
  .service {
    background: var(--card);
    transition: background .35s, transform .35s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .service:hover { background: var(--card-hover); transform: translateY(-4px); }
  .service .sv-img {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .service .sv-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, color-mix(in srgb, var(--surface-deep) 45%, transparent));
    transition: background .35s;
  }
  .service:hover .sv-img::after { background: linear-gradient(180deg, transparent 30%, color-mix(in srgb, var(--surface-deep) 25%, transparent)); }
  .service .sv-body {
    padding: 34px 32px 40px;
    text-align: left;
  }
  .service .num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    display: block;
    text-transform: uppercase;
  }
  .service h3 { margin-bottom: 12px; }
  .service p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ========== LOCATIONS ========== */
  .locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  @media (max-width: 900px) { .locations { grid-template-columns: 1fr; } }
  .loc {
    background: var(--card);
    padding: 70px 48px 74px;
    transition: background .35s;
  }
  .loc:hover { background: var(--card-hover); }
  .loc .city {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 8px;
    font-style: italic;
  }
  .loc .neighbourhood {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 36px;
    font-weight: 600;
  }
  .loc address {
    font-style: normal;
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 32px;
  }
  .loc .contact-lines { display: inline-block; text-align: left; margin-bottom: 10px; }
  .loc .contact-line { display: block; font-size: 15px; color: var(--text); margin-bottom: 8px; }
  .loc .contact-line strong {
    color: var(--text-faint);
    font-weight: 500;
    display: inline-block;
    width: 60px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .loc .hours {
    margin-top: 34px;
    padding-top: 34px;
    font-size: 14px;
    color: var(--text-dim);
    position: relative;
  }
  .loc .hours::before {
    content: '✦';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 12px;
    opacity: 0.7;
  }
  .loc .hours .row {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    margin: 0 auto;
    padding: 5px 0;
  }
  .loc .hours .row strong { font-weight: 500; color: var(--text-faint); }
  .loc .note {
    margin-top: 26px;
    font-size: 13px;
    color: var(--text-faint);
    font-style: italic;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
  }
  .loc .loc-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    padding: 16px 34px;
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    padding-left: 36px;
    padding-right: 36px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
  }
  .loc .loc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .loc .loc-cta:hover::before { transform: translateX(0); }
  .loc .loc-cta:hover { color: var(--ink-on-accent); }
  .loc .loc-cta span { position: relative; z-index: 1; }

  /* ========== TEAM ========== */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
  .member {
    padding: 26px 14px;
    transition: transform .35s;
  }
  .member:hover { transform: translateY(-3px); }
  .member .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 18px;
    opacity: 0.85;
    transition: transform .35s, opacity .35s;
  }
  .member:hover .dot { transform: scale(1.5); opacity: 1; }
  .member .name {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .member .role {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .member .loc-tag { font-size: 13px; color: var(--text-faint); font-style: italic; }

  /* ========== NEW PATIENTS ========== */
  .nplist {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 900px) { .nplist { grid-template-columns: 1fr; gap: 50px; } }
  .np-step .step-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 48px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
  }
  .np-step h4 { margin-bottom: 14px; }
  .np-step p {
    font-size: 15px;
    color: var(--text-dim);
    font-weight: 300;
    max-width: 30ch;
    margin: 0 auto;
  }

  /* ========== REGULATORY STRIP ========== */
  .regs {
    padding: 80px 24px 100px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .regs .label { text-align: center; margin-bottom: 38px; display: block; }
  .reg-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 22px;
    max-width: 780px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
  }
  .reg-list li {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.5;
    position: relative;
    padding: 0 14px;
  }
  .reg-list li:not(:last-child)::after {
    content: '✦';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: var(--accent);
    opacity: 0.6;
    font-style: normal;
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 110px 24px 50px;
    background: var(--surface-deep);
    color: #EFE9DD;
    text-align: center;
    transition: background .6s ease;
  }
  .footer-mark {
    display: inline-block;
    margin: 0 auto 22px;
    line-height: 0;
  }
  .footer-mark img {
    height: 58px;
    width: auto;
    display: block;
  }
  .footer-tag {
    font-size: 15px;
    color: #9A8C74;
    max-width: 52ch;
    margin: 0 auto 60px;
    font-weight: 300;
    line-height: 1.7;
  }
  .footer-grid {
    max-width: 900px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  @media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
  footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9A8C74;
    font-weight: 600;
    margin-bottom: 22px;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 12px; }
  footer ul a { color: #C9BFA4; font-size: 15px; }
  footer ul a:hover { color: #EFE9DD; }
  .footer-micro {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 40px;
    font-size: 12px;
    color: #9A8C74;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 40px;
    border-top: 1px solid #3A3428;
  }
  .footer-micro .dot {
    width: 3px; height: 3px;
    background: #B8744A;
    border-radius: 50%;
  }

  .compliance-note {
    margin: 0 auto;
    padding: 40px 48px;
    background: var(--surface);
    max-width: 820px;
    font-size: 14px;
    color: var(--text-faint);
    font-weight: 300;
    line-height: 1.8;
    transition: background .6s ease;
  }
  .compliance-note strong {
    color: var(--text-dim);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 19px;
  }

  /* ========== THEME SWITCHER ========== */
  .theme-switcher {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 28px 22px;
    background: var(--surface-deep);
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    box-shadow: 0 18px 46px rgba(0,0,0,0.35);
    clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  }
  .theme-switcher .label {
    font-size: 9px;
    letter-spacing: 0.24em;
    color: #9A8C74;
    text-align: center;
    margin: 0 0 2px;
    font-weight: 600;
  }
  .theme-switcher button {
    width: 48px;
    height: 26px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), filter .3s;
    padding: 0;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    filter: saturate(0.7) brightness(0.85);
  }
  .theme-switcher button:hover {
    transform: translateX(3px) scale(1.06);
    filter: saturate(1) brightness(1);
  }
  .theme-switcher button.active {
    filter: saturate(1.1) brightness(1.08);
    transform: translateX(4px);
  }
  .theme-switcher button.active::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #D4B98A;
    border-radius: 50%;
    box-shadow: 0 0 8px #D4B98A;
  }
  .swatch-heritage-light { background: linear-gradient(135deg, #F2ECDD 50%, #B8744A 50%); }
  .swatch-heritage-dark  { background: linear-gradient(135deg, #1D1A15 50%, #D18A5C 50%); }
  .swatch-forest         { background: linear-gradient(135deg, #0D1716 50%, #8FB5A4 50%); }
  .swatch-navy           { background: linear-gradient(135deg, #1A3644 50%, #72BDA3 50%); }

  /* ========== SUB-PAGE LAYOUTS ========== */
  section.page-hero {
    padding: clamp(120px, 18vh, 200px) 24px clamp(80px, 12vh, 120px);
    max-width: 1000px;
    margin: 0 auto;
  }
  section.page-hero .eyebrow { margin-bottom: 38px; }
  section.page-hero h1 {
    margin: 0 auto 32px;
    max-width: 20ch;
  }
  section.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
  section.page-hero .lede {
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.65;
    color: var(--text-dim);
    max-width: 62ch;
    margin: 0 auto;
    font-weight: 300;
  }
  section.page-hero .page-hero-img {
    margin-top: 70px;
    height: 340px;
    background-size: cover;
    background-position: center;
  }

  .prose {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }
  .prose p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 22px;
    font-weight: 300;
  }
  .prose p strong { color: var(--text); font-weight: 500; }
  .prose p em { font-style: italic; }

  /* CTA band */
  section.band.cta-band { padding-top: clamp(80px, 10vh, 120px); padding-bottom: clamp(80px, 10vh, 120px); }
  section.band.cta-band .section-head { margin-bottom: 40px; }

  /* History long (about page) */
  .history-long {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
  }
  @media (max-width: 900px) { .history-long { grid-template-columns: 1fr; gap: 50px; text-align: center; } }
  .history-long .history-photo {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .history-long .history-photo::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
    pointer-events: none;
  }
  .history-long .history-text .label { display: block; text-align: inherit; }
  .history-long .history-text h2 { margin-bottom: 26px; }
  .history-long .history-text p {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
  }
  .history-long .history-text p em { color: var(--accent); font-style: italic; }
  .history-long .history-text .sig {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--accent);
    margin-top: 26px;
  }

  /* Milestones */
  .milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px 40px;
    max-width: 1200px;
    margin: 40px auto 0;
  }
  .milestone .year {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 44px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
  }
  .milestone h3 { margin-bottom: 10px; font-size: 21px; }
  .milestone p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 300;
    max-width: 32ch;
    margin: 0 auto;
  }

  /* Location detail page */
  .loc-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media (max-width: 900px) { .loc-detail { grid-template-columns: 1fr; } }
  .loc-detail .loc-card {
    background: var(--card);
    padding: 70px 48px 74px;
  }
  .loc-detail .loc-card .city {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 8px;
    font-style: italic;
  }
  .loc-detail .loc-card .neighbourhood {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 36px;
    font-weight: 600;
  }
  .loc-detail .loc-card address {
    font-style: normal;
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 32px;
  }
  .loc-detail .loc-card .contact-lines { display: inline-block; text-align: left; margin-bottom: 10px; }
  .loc-detail .loc-card .contact-line { display: block; font-size: 15px; color: var(--text); margin-bottom: 8px; }
  .loc-detail .loc-card .contact-line strong {
    color: var(--text-faint);
    font-weight: 500;
    display: inline-block;
    width: 60px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .loc-detail .loc-card .hours {
    margin-top: 34px;
    padding-top: 34px;
    font-size: 14px;
    color: var(--text-dim);
    position: relative;
  }
  .loc-detail .loc-card .hours::before {
    content: '✦';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 12px;
    opacity: 0.7;
  }
  .loc-detail .loc-card .hours .row {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    margin: 0 auto;
    padding: 5px 0;
  }
  .loc-detail .loc-card .hours .row strong { font-weight: 500; color: var(--text-faint); }
  .loc-detail .loc-card .note {
    margin-top: 26px;
    font-size: 13px;
    color: var(--text-faint);
    font-style: italic;
  }
  .loc-detail .loc-card .loc-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    padding: 16px 34px;
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    padding-left: 36px;
    padding-right: 36px;
    transition: all .35s;
  }
  .loc-detail .loc-card .loc-cta:hover { background: var(--accent); color: var(--ink-on-accent); }
  .loc-detail .loc-map {
    background: var(--card);
    background-image: url('../img/toronto-interior.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
  }

  /* ========== CONTENT PROTECTION ========== */
  /* Block text selection on content, keep it on form inputs */
  body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
  input, textarea, select, [contenteditable="true"] { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }
  img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-drag: none; pointer-events: auto; }

  /* ========== CONTACT FORM ========== */
  .contact-form {
    max-width: 720px;
    margin: 40px auto 0;
    text-align: left;
    display: grid;
    gap: 22px;
  }
  .contact-form .field { display: grid; gap: 8px; }
  .contact-form label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    font-weight: 600;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--card);
    border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
    padding: 16px 18px;
    line-height: 1.5;
    transition: border-color .25s, background .25s;
    width: 100%;
  }
  .contact-form textarea { min-height: 140px; resize: vertical; }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--card-hover);
  }
  .contact-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  @media (max-width: 620px) { .contact-form .two { grid-template-columns: 1fr; } }
  .contact-form .consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 300;
  }
  .contact-form .consent input { width: auto; margin-top: 3px; }
  .contact-form .notice {
    padding: 20px 22px;
    background: var(--surface);
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
  }
  .contact-form .notice strong { color: var(--accent); display: block; margin-bottom: 6px; font-weight: 500; }
  .contact-form .submit-row { display: flex; justify-content: flex-start; margin-top: 10px; }

  /* ========== NAVIGATOR CHATBOT ========== */
  .chat-launcher {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 85;
    width: 62px;
    height: 62px;
    background: var(--accent);
    color: var(--ink-on-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 46px rgba(0,0,0,0.35);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s, box-shadow .35s;
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    animation: chatBreathe 3.6s ease-in-out infinite;
  }
  @keyframes chatBreathe {
    0%, 100% { box-shadow: 0 18px 46px rgba(0,0,0,0.35), 0 0 0 0 color-mix(in srgb, #B8744A 40%, transparent); }
    50%      { box-shadow: 0 18px 46px rgba(0,0,0,0.35), 0 0 0 10px color-mix(in srgb, #B8744A 0%, transparent); }
  }
  .chat-launcher:hover { background: var(--accent-bright); transform: translateY(-3px); animation: none; }
  .chat-launcher:active { transform: translateY(0); }
  .chat-launcher svg { width: 24px; height: 24px; fill: currentColor; }
  .chat-launcher .close-icon { display: none; }
  .chat-launcher.open { animation: none; }
  .chat-launcher.open .chat-icon { display: none; }
  .chat-launcher.open .close-icon { display: block; }

  .chat-panel {
    position: fixed;
    right: 26px;
    bottom: 104px;
    z-index: 84;
    width: 340px;
    max-width: calc(100vw - 52px);
    max-height: 60vh;
    background: var(--bg);
    border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(14px) scale(.98);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  }
  .chat-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .chat-panel .chat-head {
    padding: 18px 20px;
    background: var(--surface-deep);
    color: #EFE9DD;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .chat-panel .chat-head .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: dotPulse 2.4s ease-in-out infinite;
  }
  .chat-panel .chat-head .name {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-style: italic;
    color: #EFE9DD;
  }
  .chat-panel .chat-head .sub {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9A8C74;
    margin-left: auto;
  }
  .chat-panel .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
  }
  .chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-dim);
  }
  .chat-msg.bot {
    background: var(--surface);
    color: var(--text);
    align-self: flex-start;
    border-left: 2px solid var(--accent);
  }
  .chat-msg.bot strong { color: var(--accent); font-weight: 500; }
  .chat-msg.bot a { color: var(--accent); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); text-underline-offset: 3px; }
  .chat-msg.user {
    background: var(--accent);
    color: var(--ink-on-accent);
    align-self: flex-end;
  }
  .chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 14px;
  }
  .chat-chips button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    padding: 8px 14px;
    cursor: pointer;
    transition: all .25s;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    padding-left: 14px;
    padding-right: 14px;
  }
  .chat-chips button:hover {
    background: var(--accent);
    color: var(--ink-on-accent);
    border-color: var(--accent);
  }
  .chat-panel .chat-input {
    padding: 14px 14px 16px;
    background: var(--surface);
    display: flex;
    gap: 10px;
  }
  .chat-panel .chat-input input {
    flex: 1;
    background: var(--bg);
    border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    -webkit-user-select: text;
    user-select: text;
  }
  .chat-panel .chat-input input:focus { outline: none; border-color: var(--accent); }
  .chat-panel .chat-input button {
    background: var(--accent);
    color: var(--ink-on-accent);
    border: none;
    padding: 12px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    padding-left: 20px;
    padding-right: 20px;
    transition: background .25s;
  }
  .chat-panel .chat-input button:hover { background: var(--accent-bright); }

  @media (max-width: 720px) {
    .chat-launcher { right: 16px; bottom: 16px; }
    .chat-panel { right: 16px; bottom: 90px; width: calc(100vw - 32px); }
    .theme-switcher { right: 16px; padding-left: 22px; padding-right: 22px; }
  }

  /* ========== NATURE BAND ========== */
  .nature-band {
    position: relative;
    height: 72vh;
    min-height: 500px;
    max-height: 760px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
  }
  @media (max-width: 900px) { .nature-band { background-attachment: scroll; min-height: 440px; height: 60vh; } }
  .nature-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(14,22,20,0.25) 0%, rgba(14,22,20,0.55) 60%, rgba(14,22,20,0.75) 100%);
  }
  .nature-band .inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 24px;
    color: #EFE9DD;
  }
  .nature-band .label-small {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #E6CFA0;
    margin-bottom: 32px;
    font-weight: 600;
    display: inline-block;
    padding: 0 44px;
    position: relative;
  }
  .nature-band .label-small::before,
  .nature-band .label-small::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(230, 207, 160, 0.55);
  }
  .nature-band .label-small::before { left: 0; }
  .nature-band .label-small::after  { right: 0; }
  .nature-band h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 5vw, 72px);
    color: #EFE9DD;
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
  }
  .nature-band h2 em { font-style: italic; color: #E6CFA0; font-weight: 300; }
  .nature-band p {
    font-size: 19px;
    color: #D8D0B8;
    font-weight: 300;
    max-width: 58ch;
    margin: 0 auto;
    line-height: 1.75;
  }
  .nature-band .attrib {
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: rgba(239, 233, 221, 0.45);
    text-transform: uppercase;
    z-index: 3;
  }
