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

  :root {
    --ivory: #F5F0E8;
    --warm-white: #FDFBF7;
    --charcoal: #1A1A1A;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --grey: #8A8278;
    --grey-light: #D4CFC8;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--warm-white);
    color: var(--charcoal);
    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: 28px 60px;
    transition: padding 0.4s;
  }
  /* The frosted scrolled background lives on ::before, NOT on nav itself:
     backdrop-filter on nav makes it the containing block for the fixed
     .nav-links overlay, pinning the "full-screen" menu to the 60px nav bar
     (menu appeared cut off at the top when opened after scrolling). */
  nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(253, 251, 247, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s;
  }
  nav.scrolled::before { opacity: 1; }
  nav.scrolled {
    padding: 18px 60px;
    border-bottom: 1px solid var(--grey-light);
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    display: block;
    height: 42px;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,251,247,0.85);
    text-decoration: none;
    transition: color 0.3s;
  }
  nav.scrolled .nav-links a { color: var(--grey); }
  .nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold);
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); }
  .nav-menu-cta { display: none; } /* shown only in the mobile overlay menu */

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: #0d0b08;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(160deg, rgba(13,11,8,0.15) 0%, rgba(13,11,8,0.72) 100%),
      radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.08) 0%, transparent 60%);
    /* Simulated editorial image using CSS — in production replace with real photo */
    background-color: #1c1812;
  }
  /* Decorative tooth outline — signature line element */
  .hero-studio-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 58%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.4) 30%, rgba(201,169,110,0.4) 70%, transparent 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 100px;
    max-width: 780px;
  }
  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 7.5vw, 110px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--warm-white);
    letter-spacing: -0.01em;
    margin-bottom: 36px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(253,251,247,0.65);
    margin-bottom: 52px;
    text-transform: uppercase;
  }
  .hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .btn-gold {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .btn-gold:hover { background: var(--gold-light); }
  .btn-ghost {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-white);
    border: 1px solid rgba(253,251,247,0.4);
    padding: 16px 36px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-rating {
    position: absolute;
    bottom: 40px;
    right: 60px;
    text-align: right;
    z-index: 2;
  }
  .hero-rating .stars {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 4px;
  }
  .hero-rating p {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,251,247,0.5);
  }

  /* ── SECTION COMMON ── */
  section { position: relative; }

  .section-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  /* ── PHILOSOPHY STRIP ── */
  .philosophy {
    background: var(--charcoal);
    padding: 100px 60px;
    text-align: center;
  }
  .philosophy-rule {
    width: 1px;
    height: 60px;
    background: var(--gold);
    margin: 0 auto 40px;
  }
  .philosophy blockquote {
    font-family: var(--serif);
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 300;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.4;
    max-width: 820px;
    margin: 0 auto 32px;
    letter-spacing: 0.01em;
  }
  .philosophy cite {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
  }

  /* ── SERVICES GRID ── */
  .services-section {
    padding: 120px 60px;
    background: var(--warm-white);
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .services-header h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.15;
    max-width: 400px;
  }
  .services-header p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    max-width: 280px;
    text-align: right;
    line-height: 1.8;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .service-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
  }
  .service-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .service-card:hover .service-card-bg { transform: scale(1.04); }
  /* photos reused from the services page (still hotlinked from WordPress —
     see checklist); gradient behind each acts as a fallback if the image fails */
  .sc-aesthetic {
    background: url('../images/close-up-portrait-beautiful-romantic-young-asian-woman-smiling-looking-happy-sitting-cozy_1258-124871.avif') center/cover no-repeat,
                linear-gradient(160deg, #2a1f14 0%, #1a1208 100%);
  }
  .sc-ortho {
    background: url('../images/istockphoto-665916624-170667a.jpg') center/cover no-repeat,
                linear-gradient(160deg, #141a1f 0%, #08121a 100%);
  }
  .sc-general {
    background: url('../images/beautiful-young-friends-laughing_23-2148694175.avif') center/cover no-repeat,
                linear-gradient(160deg, #1a1a14 0%, #0f0f08 100%);
  }
  .sc-surgery {
    background: url('../Mature__person_smilling.jpg') center/cover no-repeat,
                linear-gradient(160deg, #1f141a 0%, #140812 100%);
  }
  /* Gold texture overlays */
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.3) 50%, transparent 100%);
    z-index: 1;
  }
  .service-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
    z-index: 2;
  }
  .service-num {
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
  }
  .service-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .service-card p {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(253,251,247,0.55);
    text-transform: uppercase;
  }
  .service-card-arrow {
    position: absolute;
    top: 28px; right: 28px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: background 0.3s, border-color 0.3s;
  }
  .service-card:hover .service-card-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }

  /* Tall accent card */
  .service-accent-card {
    background: var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
  }
  .service-accent-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .service-accent-card a {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 140px 60px;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
  }
  .testimonials::before {
    content: '\201C';
    position: absolute;
    top: 40px; left: 40px;
    font-family: var(--serif);
    font-size: 300px;
    line-height: 1;
    color: rgba(201,169,110,0.12);
    font-weight: 300;
    pointer-events: none;
  }
  .testimonials-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .testimonials .section-label { text-align: center; }
  .testimonial-slide { display: none; }
  .testimonial-slide.active { display: block; }
  .testimonial-slide blockquote {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 44px;
    letter-spacing: 0.01em;
  }
  .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .testimonial-author .name {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
  }
  .testimonial-author .treatment {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
  }
  .testimonial-dot {
    width: 32px;
    height: 1px;
    background: var(--grey-light);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 8px 0;
    background-clip: content-box;
  }
  .testimonial-dot.active { background-color: var(--gold); background-clip: content-box; }

  /* ── DENTAL TOURISM ── */
  .tourism-hero {
    background: var(--charcoal);
    padding: 160px 60px 120px;
    position: relative;
    overflow: hidden;
  }
  .tourism-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(201,169,110,0.06), transparent);
    pointer-events: none;
  }
  .tourism-tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold);
    padding: 6px 16px;
    margin-bottom: 48px;
  }
  .tourism-hero h2 {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.05;
    max-width: 700px;
    margin-bottom: 36px;
    letter-spacing: -0.01em;
  }
  .tourism-hero h2 em {
    font-style: italic;
    color: var(--gold);
  }
  .tourism-hero p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    max-width: 500px;
    line-height: 1.9;
    margin-bottom: 52px;
  }

  /* Why DDS section */
  .tourism-why {
    background: var(--warm-white);
    padding: 120px 60px;
  }
  .tourism-why h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: 60px 0;
  }
  .cost-col {
    padding: 52px 48px;
    position: relative;
  }
  .cost-col-local { background: var(--charcoal); }
  .cost-col-dds { background: var(--gold); }
  .cost-col-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .cost-col-local .cost-col-label { color: var(--grey); }
  .cost-col-dds .cost-col-label { color: var(--charcoal); }
  .cost-price {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
  }
  .cost-col-local .cost-price { color: var(--ivory); }
  .cost-col-dds .cost-price { color: var(--charcoal); }
  .cost-desc {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
  }
  .cost-col-local .cost-desc { color: rgba(245,240,232,0.5); }
  .cost-col-dds .cost-desc { color: rgba(26,26,26,0.7); }
  .cost-note {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--grey);
    margin-top: 20px;
    letter-spacing: 0.05em;
  }

  .why-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
  }
  .why-point {}
  .why-point-rule {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
  }
  .why-point h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .why-point p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.8;
  }

  /* Packages */
  .packages {
    padding: 120px 60px;
    background: var(--charcoal);
  }
  .packages-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .packages-header h3 {
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 16px;
  }
  .packages-header p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
  }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .pkg-card {
    border: 1px solid rgba(201,169,110,0.2);
    padding: 52px 40px 48px;
    position: relative;
    transition: border-color 0.3s;
    background: #141210;
  }
  .pkg-card:hover { border-color: rgba(201,169,110,0.6); }
  .pkg-card.featured {
    border-color: var(--gold);
    background: #1a1710;
  }
  .pkg-featured-label {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 16px;
  }
  .pkg-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .pkg-subtitle {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 36px;
  }
  .pkg-rule {
    width: 100%;
    height: 1px;
    background: rgba(201,169,110,0.2);
    margin-bottom: 32px;
  }
  .pkg-items {
    list-style: none;
    margin-bottom: 44px;
  }
  .pkg-items li {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(245,240,232,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .pkg-items li::before {
    content: '—';
    color: var(--gold);
    font-family: var(--serif);
    flex-shrink: 0;
  }
  .btn-pkg {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 14px 24px;
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--gold);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .btn-pkg:hover, .pkg-card.featured .btn-pkg {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
  }

  /* How it works */
  .how-it-works {
    padding: 120px 60px;
    background: var(--warm-white);
  }
  .how-it-works h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
  }
  .steps-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 0;
  }
  .steps-line::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gold);
    z-index: 0;
  }
  .step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--gold);
  }
  .step h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .step p {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.7;
  }

  /* Enquiry Form */
  .enquiry {
    padding: 120px 60px;
    background: var(--ivory);
  }
  .enquiry-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .enquiry-left h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .enquiry-left h3 em { font-style: italic; color: var(--gold); }
  .enquiry-left p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .trust-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .trust-item span {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.05em;
  }

  .enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-group label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grey-light);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-group select { cursor: pointer; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
  }
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .checkbox-item input[type="checkbox"] {
    /* restore native checkbox rendering — the generic .form-group input rule
       sets -webkit-appearance:none, which makes the tick invisible */
    -webkit-appearance: checkbox;
    appearance: auto;
    width: 15px; height: 15px;
    border: none;
    cursor: pointer;
    accent-color: var(--gold);
    padding: 0;
    flex-shrink: 0;
  }
  .checkbox-item span {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--charcoal);
  }
  .btn-submit {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold);
    border: none;
    padding: 18px 36px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    width: 100%;
  }
  .btn-submit:hover { background: var(--gold-light); }
  .btn-submit:disabled { opacity: 0.6; cursor: wait; }

  /* form submit feedback (injected by main.js after Netlify AJAX post) */
  .form-success {
    border: 1px solid var(--gold);
    padding: 36px 32px;
    text-align: center;
  }
  .form-success h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .form-success p { font-size: 14px; line-height: 1.7; }
  .form-success a { color: var(--gold); }
  .form-error {
    margin-top: 14px;
    font-size: 13px;
    color: #b04a3a;
  }

  /* ── FORM CONFIRMATION MODAL (shown after a successful enquiry submit) ── */
  .form-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(26, 26, 26, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .form-confirm-overlay.open { opacity: 1; visibility: visible; }
  .form-confirm-card {
    background: var(--warm-white);
    max-width: 480px;
    width: 100%;
    padding: 52px 40px 44px;
    text-align: center;
    border-top: 2px solid var(--gold);
    transform: translateY(14px);
    transition: transform 0.3s;
  }
  .form-confirm-overlay.open .form-confirm-card { transform: none; }
  .form-confirm-mark {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    font-size: 26px;
    font-family: var(--serif);
    line-height: 1;
  }
  .form-confirm-card h4 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 14px;
  }
  .form-confirm-card p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .form-confirm-card p a { color: var(--gold); }
  .form-confirm-card .btn-gold {
    border: none;
    cursor: pointer;
  }

  /* ── DEPOSIT / SECURE APPOINTMENT ── */
  .deposit {
    padding: 120px 60px;
    background: var(--warm-white);
  }
  .deposit .enquiry-left h3 em { font-style: italic; color: var(--gold); }
  .deposit-form {
    background: var(--ivory);
    border: 1px solid var(--grey-light);
    padding: 40px;
  }
  .deposit-presets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 4px 0 16px;
  }
  .deposit-preset {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    background: transparent;
    border: 1px solid var(--grey-light);
    padding: 11px 20px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
  }
  .deposit-preset:hover { border-color: var(--gold); }
  .deposit-preset.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }
  .deposit-amount-field {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--grey-light);
    transition: border-color 0.3s;
  }
  .deposit-amount-field:focus-within { border-color: var(--gold); }
  .deposit-currency {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
  }
  .deposit-amount-field input {
    border-bottom: none;
    font-size: 22px;
    font-weight: 300;
    flex: 1;
    padding: 12px 0;
  }
  /* hide number-input spinners for a cleaner field */
  .deposit-amount-field input::-webkit-outer-spin-button,
  .deposit-amount-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .deposit-amount-field input[type=number] { -moz-appearance: textfield; }
  .deposit-fineprint {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.7;
    margin-top: 2px;
  }
  .pay-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .pay-method { cursor: pointer; position: relative; }
  .pay-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .pay-method span {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    background: transparent;
    border: 1px solid var(--grey-light);
    padding: 11px 20px;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
  }
  .pay-method:hover span { border-color: var(--gold); }
  .pay-method input:checked + span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }
  .pay-method input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--charcoal);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.07), transparent 65%);
    pointer-events: none;
  }
  .cta-band-rule {
    width: 1px;
    height: 60px;
    background: var(--gold);
    margin: 0 auto 48px;
  }
  .cta-band h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 40px;
    line-height: 1.15;
  }
  .cta-band h2 em {
    font-style: normal;
    color: var(--gold);
  }

  /* ── SOCIAL PROOF BAR ── */
  .proof-bar {
    background: var(--gold);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
  }
  .proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .proof-item-divider {
    width: 1px;
    height: 20px;
    background: rgba(26,26,26,0.3);
  }
  .proof-item .num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
  }
  .proof-item .lbl {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.65);
  }

  /* ── TEAM TEASER ── */
  .team-section {
    padding: 120px 60px;
    background: var(--warm-white);
  }
  .team-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    align-items: stretch;
    min-height: 560px;
  }
  .team-image-col {
    background: linear-gradient(135deg, #1a150f 0%, #0d0b08 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 48px 44px;
  }
  .team-image-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  /* Darken the base of the photo so the label stays legible */
  .team-image-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 45%, transparent 70%);
  }
  .team-image-label {
    position: relative;
    z-index: 2;
  }
  .team-image-label span {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
  }
  .team-image-label h4 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--ivory);
  }
  .team-text-col {
    background: var(--ivory);
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .team-text-col h3 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
  }
  .team-text-col blockquote {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--grey);
    line-height: 1.65;
    border-left: 1px solid var(--gold);
    padding-left: 24px;
    margin-bottom: 40px;
  }
  .team-text-col p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .btn-outline-dark {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    padding: 14px 32px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .btn-outline-dark:hover { background: var(--charcoal); color: var(--ivory); }

  /* ── CONTACT ── */
  .contact-section {
    padding: 120px 60px;
    background: var(--charcoal);
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .contact-left h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 52px;
    line-height: 1.2;
  }
  .contact-detail {
    margin-bottom: 32px;
  }
  .contact-detail-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .contact-detail p, .contact-detail a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    line-height: 1.7;
    display: block;
  }
  .contact-detail a:hover { color: var(--gold); }

  .contact-map {
    background: #141210;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,169,110,0.15);
    position: relative;
    overflow: hidden;
  }
  .contact-map-placeholder {
    text-align: center;
    z-index: 1;
  }
  .contact-map-placeholder p {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: rgba(201,169,110,0.5);
    margin-bottom: 12px;
  }
  .contact-map-placeholder a {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,110,0.3);
    padding-bottom: 4px;
  }
  .contact-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(201,169,110,0.04) 40px, rgba(201,169,110,0.04) 41px),
      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(201,169,110,0.04) 40px, rgba(201,169,110,0.04) 41px);
  }

  /* ── FOOTER ── */
  footer {
    background: #0d0b08;
    padding: 72px 60px 40px;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .footer-brand p {
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: rgba(245,240,232,0.4);
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .footer-social {
    display: flex;
    gap: 16px;
  }
  .footer-social a {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-social a:hover { color: var(--gold); }
  .social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .social-icon-btn svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    border: 1px solid rgba(245,240,232,0.25);
    border-radius: 50%;
    transition: border-color 0.3s, color 0.3s;
  }
  .social-icon-btn:hover svg { border-color: var(--gold); }

  .footer-col h4 {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-col ul a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(245,240,232,0.45);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.04em;
  }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-col p {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(245,240,232,0.45);
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .footer-partners {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-top: 1px solid rgba(201,169,110,0.1);
    border-bottom: 1px solid rgba(201,169,110,0.1);
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .footer-partner-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.25);
    margin-right: 8px;
  }
  .footer-partner {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    color: rgba(245,240,232,0.2);
    letter-spacing: 0.12em;
  }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 200;
    width: 52px;
    height: 52px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.3);
    text-decoration: none;
    transition: transform 0.3s;
  }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float svg { width: 26px; height: 26px; fill: white; }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .fade-up-delay-4 { transition-delay: 0.4s; }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-logo img { height: 34px; }
    /* "nav" prefix needed: the hamburger block later in this file sets
       display:none at equal specificity, which would otherwise win */
    nav .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    /* full-screen overlay menu, opened via .nav-toggle (body.nav-open) */
    .nav-links {
      position: fixed;
      inset: 0;
      z-index: 101;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 34px;
      background: rgba(26, 26, 26, 0.98);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    body.nav-open .nav-links {
      opacity: 1;
      visibility: visible;
    }
    .nav-links a,
    nav.scrolled .nav-links a {
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 300;
      letter-spacing: 0.08em;
      text-transform: none;
      color: var(--ivory);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-menu-cta { display: block; margin-top: 10px; }
    .nav-menu-cta a,
    nav.scrolled .nav-menu-cta a {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold);
      padding: 14px 36px;
    }
    body.nav-open { overflow: hidden; }

    .hero-content { padding: 0 24px 80px; }
    .hero-rating { right: 24px; bottom: 28px; }
    /* decorative vertical gold line overlaps the headline on narrow screens */
    .hero-studio-line { display: none; }

    .philosophy { padding: 72px 24px; }
    .services-section { padding: 80px 24px; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services-header p { text-align: left; max-width: 100%; }
    .services-grid { grid-template-columns: 1fr 1fr; }

    .testimonials { padding: 80px 24px; }
    .proof-bar { padding: 24px; gap: 20px; flex-wrap: wrap; justify-content: center; }

    .tourism-hero, .tourism-why, .packages, .how-it-works, .enquiry,
    .deposit, .team-section, .contact-section { padding: 80px 24px; }
    .deposit-form { padding: 28px 22px; }

    .cost-comparison { grid-template-columns: 1fr; }
    .why-points { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .steps-line { grid-template-columns: 1fr; gap: 40px; }
    .steps-line::before { display: none; }

    .enquiry-inner { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }

    .team-inner { grid-template-columns: 1fr; }
    .team-image-col { min-height: 280px; }
    .team-text-col { padding: 52px 32px; }

    .contact-inner { grid-template-columns: 1fr; }
    .contact-map { min-height: 240px; }

    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* float moves to bottom-left on mobile (clear of thumb-reach nav zone) */
    .wa-float { left: 20px; right: auto; bottom: 20px; }
  }

  @media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    .service-card .service-card-bg { transition: none; }
  }
  /* ── PAGE VISIBILITY (hash router — see routes map in main.js) ── */
  #page-services, #page-team, #page-tourism, #page-gallery, #page-blog, #page-post, #page-craft, #page-contact { display: none; }
  body.show-services #page-services { display: block; }
  body.show-team     #page-team     { display: block; }
  body.show-tourism  #page-tourism  { display: block; }
  body.show-gallery  #page-gallery  { display: block; }
  body.show-blog     #page-blog     { display: block; }
  body.show-post     #page-post     { display: block; }
  body.show-craft    #page-craft    { display: block; }
  body.show-contact  #page-contact  { display: block; }
  body.show-services #page-home,
  body.show-team     #page-home,
  body.show-tourism  #page-home,
  body.show-gallery  #page-home,
  body.show-blog     #page-home,
  body.show-post     #page-home,
  body.show-craft    #page-home,
  body.show-contact  #page-home { display: none; }

  /* ── GALLERY PAGE ── */

  .gp-hero {
    background: var(--charcoal);
    padding: 200px 60px 110px;
    position: relative;
    overflow: hidden;
  }
  .gp-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(201,169,110,0.06), transparent);
    pointer-events: none;
  }
  .gp-hero .section-label { margin-bottom: 24px; }
  .gp-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .gp-hero h1 em { font-style: italic; color: var(--gold); }
  .gp-hero p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    max-width: 520px;
    line-height: 1.9;
  }

  .gp-grid-wrap {
    background: var(--warm-white);
    padding: 90px 60px;
  }
  .gp-grid {
    columns: 3 320px;      /* masonry: mixed portrait/landscape photos */
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gp-item {
    break-inside: avoid;
    margin: 0 0 20px;
    overflow: hidden;
  }
  .gp-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .gp-item:hover img { transform: scale(1.03); }

  @media (max-width: 768px) {
    .gp-hero { padding: 140px 24px 80px; }
    .gp-grid-wrap { padding: 56px 20px; }
    .gp-grid { column-gap: 14px; }
    .gp-item { margin-bottom: 14px; }
  }

  /* ── SERVICES PAGE ── */

  .sp-hero {
    background: var(--charcoal);
    padding: 200px 60px 110px;
    position: relative;
    overflow: hidden;
  }
  .sp-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(201,169,110,0.06), transparent);
    pointer-events: none;
  }
  .sp-hero .section-label { margin-bottom: 24px; }
  .sp-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.05;
    max-width: 760px;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .sp-hero h1 em { font-style: italic; color: var(--gold); }
  .sp-hero p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    max-width: 520px;
    line-height: 1.9;
  }

  /* Statement */
  .sp-statement {
    background: var(--warm-white);
    padding: 110px 60px;
    text-align: center;
  }
  .sp-statement h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    max-width: 780px;
    margin: 0 auto;
    color: var(--charcoal);
  }
  .sp-statement h2 em { color: var(--gold); font-style: italic; }

  /* Category editorial rows */
  .sp-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 520px;
  }
  .sp-category.reverse .sp-cat-image { order: 2; }
  .sp-cat-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
  }
  .sp-cat-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sp-cat-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
  }
  .sp-cat-text .cat-num {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
  }
  .sp-cat-text h3 {
    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .sp-cat-text > p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.95;
    margin-bottom: 36px;
  }
  .sp-cat-treatments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
  }
  .sp-treatment-chip {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
    border: 1px solid var(--grey-light);
    padding: 8px 16px;
  }
  .sp-cat-cta {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.3s;
  }
  .sp-cat-cta:hover { color: var(--gold); }
  .sp-cat-bg-cream { background: var(--warm-white); }
  .sp-cat-bg-ivory { background: var(--ivory); }

  /* Treatments gallery */
  .sp-gallery {
    padding: 120px 60px;
    background: var(--charcoal);
  }
  .sp-gallery-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .sp-gallery-header h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 14px;
  }
  .sp-gallery-header p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
  }
  .sp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .sp-gal-item {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
  }
  .sp-gal-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .sp-gal-item:hover img { transform: scale(1.05); }
  .sp-gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 55%);
  }
  .sp-gal-label {
    position: absolute;
    bottom: 20px; left: 22px; right: 22px;
    z-index: 2;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.3;
  }

  /* All services list */
  .sp-all {
    padding: 120px 60px;
    background: var(--warm-white);
  }
  .sp-all-header {
    margin-bottom: 64px;
    max-width: 560px;
  }
  .sp-all-header h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .sp-all-header p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
  }
  .sp-all-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
  }
  .sp-service-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--grey-light);
  }
  .sp-service-item h4 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .sp-service-item p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.8;
  }

  /* Services CTA */
  .sp-cta {
    background: var(--ivory);
    padding: 110px 60px;
    text-align: center;
  }
  .sp-cta h3 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .sp-cta h3 em { font-style: italic; color: var(--gold); }
  .sp-cta p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    max-width: 440px;
    margin: 0 auto 44px;
    line-height: 1.9;
  }

  @media (max-width: 768px) {
    .sp-hero { padding: 140px 24px 80px; }
    .sp-statement { padding: 72px 24px; }
    .sp-category { grid-template-columns: 1fr; min-height: unset; }
    .sp-category.reverse .sp-cat-image { order: 0; }
    .sp-cat-image { min-height: 260px; }
    .sp-cat-text { padding: 52px 24px; }
    .sp-gallery { padding: 80px 24px; }
    .sp-gallery-grid { grid-template-columns: 1fr 1fr; }
    .sp-all { padding: 80px 24px; }
    .sp-all-grid { grid-template-columns: 1fr; gap: 0; }
    .sp-cta { padding: 80px 24px; }
  }
  @media (max-width: 480px) {
    .sp-gallery-grid { grid-template-columns: 1fr; }
  }

  /* ── TEAM PAGE ── */
  .tp-values {
    padding: 110px 60px;
    background: var(--warm-white);
  }
  .tp-values-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
  }
  .tp-values-header h3 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.2;
    margin: 16px 0 18px;
  }
  .tp-values-header p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
  }
  .tp-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .tp-value-card {
    background: var(--ivory);
    padding: 48px 34px;
  }
  .tp-value-num {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
  }
  .tp-value-card h4 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .tp-value-card p {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.85;
  }
  .tp-support {
    padding: 110px 60px;
    background: var(--charcoal);
    text-align: center;
  }
  .tp-support-inner { max-width: 640px; margin: 0 auto; }
  .tp-support h3 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--ivory);
    margin: 18px 0 24px;
  }
  .tp-support p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(245,241,234,0.72);
    line-height: 1.95;
  }

  @media (max-width: 768px) {
    .tp-values { padding: 80px 24px; }
    .tp-values-grid { grid-template-columns: 1fr; }
    .tp-support { padding: 80px 24px; }
  }
  @media (max-width: 1024px) and (min-width: 769px) {
    .tp-values-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── TOURISM PAGE (standalone) ── */
  /* tourism-hero doubles as the page hero — needs sp-hero-scale top padding
     to clear the fixed transparent nav */
  #page-tourism .tourism-hero { padding-top: 200px; }

  /* ── TOURISM TEASER (home page band) ── */
  .tourism-teaser {
    background: var(--ivory);
    padding: 110px 60px;
    text-align: center;
  }
  .tourism-teaser .tourism-tag { margin-bottom: 36px; }
  .tourism-teaser h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.5vw, 64px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.15;
    max-width: 720px;
    margin: 0 auto 24px;
  }
  .tourism-teaser h2 em { font-style: italic; color: var(--gold); }
  .tourism-teaser p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.9;
  }

  /* ── BLOG PAGE ── */
  .bp-hero {
    background: var(--charcoal);
    padding: 200px 60px 110px;
    position: relative;
    overflow: hidden;
  }
  .bp-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(201,169,110,0.06), transparent);
    pointer-events: none;
  }
  .bp-hero .section-label { margin-bottom: 24px; }
  .bp-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.05;
    max-width: 760px;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .bp-hero h1 em { font-style: italic; color: var(--gold); }
  .bp-hero p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    max-width: 520px;
    line-height: 1.9;
  }

  .bp-list {
    background: var(--warm-white);
    padding: 100px 60px;
  }
  .bp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .bp-card {
    display: flex;
    flex-direction: column;
    padding: 44px;
    border: 1px solid var(--grey-light);
    text-decoration: none;
    transition: border-color 0.3s;
  }
  .bp-card:hover { border-color: var(--gold); }
  .bp-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 22px;
  }
  .bp-cat {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .bp-date {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .bp-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 16px;
    transition: color 0.3s;
  }
  .bp-card:hover h3 { color: var(--gold); }
  .bp-card p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .bp-read {
    margin-top: auto;
    align-self: flex-start;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
  }

  .bp-series {
    background: var(--ivory);
    padding: 110px 60px;
  }
  .bp-series-header {
    max-width: 640px;
    margin-bottom: 56px;
  }
  /* AutoSEO "Our Latest Thoughts" cards sit above the Soro embed */
  #autoseo-feed { margin-bottom: 48px; }
  #autoseo-feed:empty { display: none; }
  .bp-series-header h3 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .bp-series-header p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
  }
  .bp-series-list {
    max-width: 860px;
  }
  /* Soro AI blog feed section (first section under the dark hero) */
  .bp-soro {
    background: var(--ivory);
    padding: 100px 60px;
  }
  .bp-soro .bp-series-header,
  #soro-blog {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .bp-soro .bp-series-header { margin-bottom: 48px; }
  .bp-series-item {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 26px 0;
    border-bottom: 1px solid var(--grey-light);
    text-decoration: none;
  }
  .bp-series-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    min-width: 24px;
  }
  .bp-series-item h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
    transition: color 0.3s;
  }
  .bp-series-item:hover h4 { color: var(--gold); }
  .bp-series-item .bp-date { display: block; margin-top: 4px; }
  .bp-series-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--gold);
  }

  /* ── CONTACT PAGE ── */
  .cp-hero {
    background: var(--charcoal);
    padding: 200px 60px 110px;
    position: relative;
    overflow: hidden;
  }
  .cp-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(201,169,110,0.06), transparent);
    pointer-events: none;
  }
  .cp-hero .section-label { margin-bottom: 24px; }
  .cp-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .cp-hero h1 em { font-style: italic; color: var(--gold); }
  .cp-hero p {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    max-width: 520px;
    line-height: 1.9;
  }

  /* charcoal section so the shared .contact-detail (dark bg) styles apply */
  .cp-main {
    background: var(--charcoal);
    padding: 90px 60px 120px;
  }
  .cp-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cp-details .contact-map {
    min-height: 260px;
    margin-top: 44px;
  }
  .cp-form {
    background: var(--warm-white);
    padding: 52px 48px;
  }
  .cp-form-title {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
  }
  .cp-form-note {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--grey);
  }
  .cp-form-note a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-light); }

  .cp-intl {
    background: var(--ivory);
    padding: 90px 60px;
    text-align: center;
  }
  .cp-intl p {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 32px;
  }

  /* ── BLOG POST PAGE ── */
  .post-hero {
    background: var(--charcoal);
    padding: 180px 60px 90px;
    position: relative;
    overflow: hidden;
  }
  .post-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(201,169,110,0.06), transparent);
    pointer-events: none;
  }
  .post-back {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 40px;
  }
  .post-back:hover { color: var(--gold-light); }
  .post-meta {
    display: flex;
    gap: 24px;
    align-items: baseline;
    margin-bottom: 24px;
  }
  .post-hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.12;
    max-width: 820px;
    letter-spacing: -0.01em;
  }

  .post-body {
    background: var(--warm-white);
    padding: 90px 60px;
    max-width: 100%;
  }
  .post-body > * {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .post-body p {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.95;
    margin-bottom: 24px;
  }
  .post-body h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.25;
    margin: 56px auto 20px;
  }
  .post-body h3, .post-body h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 44px auto 16px;
  }
  .post-body ul, .post-body ol {
    padding-left: 22px;
    margin-bottom: 24px;
  }
  .post-body li {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 10px;
  }
  .post-body li::marker { color: var(--gold); }
  .post-body a {
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
  }
  .post-body a:hover { color: var(--gold); }
  .post-body strong { font-weight: 500; }
  .post-body blockquote {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--grey);
    border-left: 2px solid var(--gold);
    padding-left: 28px;
    margin: 40px auto;
    line-height: 1.6;
  }
  .post-body figure { margin: 40px auto; }
  .post-body img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .post-body figcaption {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--grey);
    margin-top: 10px;
    text-align: center;
  }
  .post-body table {
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 36px auto;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
  }
  .post-body th, .post-body td {
    border: 1px solid var(--grey-light);
    padding: 12px 16px;
    text-align: left;
    line-height: 1.6;
    min-width: 120px;
  }
  .post-body th {
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    background: var(--ivory);
  }

  .post-cta {
    background: var(--ivory);
    padding: 90px 60px;
    text-align: center;
  }
  .post-cta p {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 32px;
  }
  .post-cta .btn-gold { display: inline-block; margin-bottom: 28px; }
  .post-back-link {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
  }
  .post-back-link:hover { color: var(--gold); }

  /* ── MOBILE MENU (hamburger) ──
     three black lines on a warm-white chip; black alone would be invisible
     over the dark hero, and the chip also reads fine on light backgrounds */
  .nav-toggle {
    display: none;
    position: relative;
    z-index: 102;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 42px;
    padding: 0;
    background: var(--warm-white);
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }
  .nav-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .nav-toggle-lines span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1A1A;
    transition: transform 0.3s, opacity 0.3s;
  }
  body.nav-open .nav-toggle-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle-lines span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── NEW PAGES: MOBILE ── */
  @media (max-width: 768px) {
    #page-tourism .tourism-hero { padding: 140px 24px 80px; }
    .tourism-teaser { padding: 72px 24px; }
    .bp-hero, .cp-hero { padding: 140px 24px 80px; }
    .bp-list { padding: 64px 24px; }
    .bp-grid { grid-template-columns: 1fr; }
    .bp-card { padding: 32px 24px; }
    .bp-series { padding: 72px 24px; }
    .bp-soro { padding: 64px 24px; }
    .bp-series-item { gap: 20px; }
    .cp-main { padding: 64px 24px 80px; }
    .cp-inner { grid-template-columns: 1fr; gap: 48px; }
    .cp-form { padding: 36px 24px; }
    .cp-intl { padding: 64px 24px; }
    .post-hero { padding: 130px 24px 64px; }
    .post-meta { flex-wrap: wrap; gap: 12px; }
    .post-body { padding: 56px 24px; }
    .post-cta { padding: 64px 24px; }
  }
