/* ============================================
       Sanganer Massage Spa — Design System
       Deep aubergine plum (#3b0f30) + warm gold (#c9a24c)
       Cormorant Garamond display / Inter body
       Signature: Mandala hero glow + lotus motifs,
       matched to the brand mark — organic, not tech
    ============================================ */

    :root {
      --plum:   #3b0f30;
      --plum2:  #4d1640;
      --plum3:  #611d52;
      --gold:     #c9a24c;
      --gold-lt:  #e6cd85;
      --gold-dk:  #9c7a2e;
      --cream:    #faf5ee;
      --cream2:   #f2e7d3;
      --white:    #ffffff;
      --text:     #2a0f22;
      --muted:    #7a5570;
      --border:   rgba(201,162,76,.20);
      --radius:   4px;
      --shadow:   0 8px 40px rgba(59,15,48,.14);
    }

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

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* === SKIP LINK === */
    .skip { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--plum); padding: 8px 14px; font-weight: 700; z-index: 999; border-radius: 0 0 4px 0; }
    .skip:focus { left: 0; }

    /* === CONTAINER === */
    .wrap { width: min(1160px, 92%); margin: 0 auto; }

    /* ============================================
       TOPBAR
    ============================================ */
    .topbar {
      background: var(--plum);
      padding: 10px 0;
      font-size: 13px;
      color: rgba(255,255,255,.7);
    }
    .topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .topbar a { color: var(--gold-lt); transition: color .2s; }
    .topbar a:hover { color: var(--white); }
    .topbar-left { display: flex; gap: 20px; align-items: center; }
    .topbar-left span { display: flex; align-items: center; gap: 6px; }
    .topbar-right { display: flex; gap: 10px; }
    .tb-social {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1px solid rgba(201,162,76,.35);
      display: grid; place-items: center;
      font-size: 11px; font-weight: 700; color: var(--gold-lt);
      transition: background .2s, border-color .2s;
    }
    .tb-social:hover { background: var(--gold); border-color: var(--gold); color: var(--plum); }

    /* ============================================
       NAVBAR
    ============================================ */
    .navbar {
      position: sticky; top: 0; z-index: 100;
      background: rgba(59,15,48,.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,162,76,.15);
      transition: box-shadow .3s;
    }
    .navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.3); }
    .nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .logo-mark { display: flex; align-items: center; gap: 14px; }
    .logo-mark img { height: 52px; width: auto; }
    .logo-text { font-family: 'Cormorant Garamond', serif; color: var(--white); line-height: 1.1; }
    .logo-text strong { display: block; font-size: 20px; font-weight: 700; letter-spacing: .5px; }
    .logo-text small { font-size: 11px; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400; }

    .nav-links { display: flex; gap: 4px; align-items: center; }
    .nav-links a {
      color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 500;
      padding: 8px 14px; border-radius: 4px;
      letter-spacing: .3px; transition: color .2s, background .2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold-lt); background: rgba(201,162,76,.08); }

    .nav-cta {
      background: var(--gold); color: var(--plum);
      padding: 11px 22px; border-radius: 4px;
      font-weight: 600; font-size: 13.5px; letter-spacing: .3px;
      transition: background .2s, transform .15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: .3s; display: block; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ============================================
       HERO
    ============================================ */
    .hero {
      min-height: 100svh;
      background: var(--plum);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 80px 0 60px;
    }

    /* Mandala petal decoration */
    .petals {
      position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
      width: 680px; height: 680px; pointer-events: none;
    }
    .petal-ring {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .petal-ring ellipse { transform-box: fill-box; transform-origin: center; }

    /* Gold line accent */
    .hero::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }

    .hero-content { position: relative; z-index: 2; max-width: 640px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--gold); font-size: 11px; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 22px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; display: block; height: 1px; width: 30px;
      background: var(--gold); opacity: .6;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 7vw, 82px);
      font-weight: 700; line-height: 1.0;
      color: var(--white); letter-spacing: -1px;
      margin-bottom: 10px;
    }
    .hero h1 em { color: var(--gold); font-style: italic; display: block; }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(18px, 2.5vw, 24px);
      color: rgba(255,255,255,.6); font-style: italic;
      margin-bottom: 28px;
    }
    .hero p {
      font-size: 15px; color: rgba(255,255,255,.65);
      max-width: 480px; line-height: 1.75; margin-bottom: 36px;
    }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--gold); color: var(--plum);
      padding: 15px 28px; border-radius: 4px;
      font-weight: 700; font-size: 14.5px; letter-spacing: .3px;
      transition: all .2s;
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,162,76,.30); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,.85);
      padding: 15px 28px; border-radius: 4px;
      border: 1px solid rgba(201,162,76,.40);
      font-weight: 500; font-size: 14.5px;
      transition: all .2s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); background: rgba(201,162,76,.06); }

    /* Stats strip under hero */
    .hero-stats {
      display: flex; gap: 40px; flex-wrap: wrap;
      margin-top: 52px; padding-top: 36px;
      border-top: 1px solid rgba(201,162,76,.18);
    }
    .h-stat strong {
      display: block; font-family: 'Cormorant Garamond', serif;
      font-size: 40px; font-weight: 700; color: var(--gold);
      line-height: 1;
    }
    .h-stat span { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }

    /* ============================================
       TRUST STRIP
    ============================================ */
    .trust-strip {
      background: var(--cream);
      padding: 56px 0 60px;
      border-bottom: 1px solid var(--border);
    }
    .trust-inner {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 8px;
    }
    .trust-item {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      gap: 14px; padding: 0 12px;
      position: relative;
    }
    .trust-item + .trust-item::before {
      content: ''; position: absolute; left: -4px; top: 8px; bottom: 8px;
      width: 1px; background: var(--border);
    }
    .trust-icon {
      width: 58px; height: 58px; border-radius: 50%;
      display: grid; place-items: center;
      background: var(--plum);
      border: 1px solid var(--gold);
      font-size: 22px; color: var(--gold);
      box-shadow: 0 8px 20px rgba(59,15,48,.15);
    }
    .trust-item span { font-size: 13px; font-weight: 600; color: var(--plum); letter-spacing: .2px; line-height: 1.4; }
    .trust-sep { display: none; }

    @media (max-width: 900px) {
      .trust-inner { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
      .trust-item + .trust-item::before { display: none; }
    }
    @media (max-width: 560px) {
      .trust-inner { grid-template-columns: repeat(2, 1fr); }
    }

    /* ============================================
       SECTION COMMON
    ============================================ */
    .section { padding: 96px 0; }
    .section.dark { background: var(--plum); }
    .section.plum2 { background: var(--plum2); }
    .section.cream2 { background: var(--cream2); }

    .section-label {
      display: flex; align-items: center; gap: 12px;
      color: var(--gold); font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 3px;
      margin-bottom: 14px;
    }
    .section-label::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); opacity: .5; }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4.5vw, 52px);
      font-weight: 700; line-height: 1.1;
      color: var(--plum); margin-bottom: 16px;
    }
    .section.dark .section-title { color: var(--white); }
    .section-desc { color: var(--muted); max-width: 560px; font-size: 15.5px; }
    .section.dark .section-desc { color: rgba(255,255,255,.58); }

    .section-head { margin-bottom: 56px; }
    .section-head.center { text-align: center; }
    .section-head.center .section-label { justify-content: center; }
    .section-head.center .section-label::after { display: none; }
    .section-head.center .section-label::before { content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); opacity: .5; }
    .section-head.center .section-desc { margin: 0 auto; }

    /* ============================================
       ABOUT
    ============================================ */
    .about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }

    .about-img-col { position: relative; }
    .about-main-img {
      aspect-ratio: 3/4; border-radius: 2px;
      background: url('../images/alan-caishan-cU53ZFBr3lk-unsplash.jpg') center/cover no-repeat;
      box-shadow: var(--shadow);
    }
    .about-accent-card {
      position: absolute; right: -28px; bottom: 40px;
      background: var(--gold); color: var(--plum);
      padding: 24px 28px; border-radius: 2px;
      font-family: 'Cormorant Garamond', serif;
      box-shadow: 0 16px 48px rgba(201,162,76,.35);
    }
    .about-accent-card b { display: block; font-size: 46px; font-weight: 700; line-height: 1; }
    .about-accent-card span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; }

    .about-text .section-head { margin-bottom: 28px; }
    .about-text p { color: var(--muted); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
    .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
    .pillar {
      background: var(--cream2); border-left: 3px solid var(--gold);
      padding: 14px 16px; border-radius: 0 4px 4px 0;
      font-size: 14px; font-weight: 600; color: var(--plum);
    }

    .about-cta { margin-top: 32px; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid var(--plum); color: var(--plum);
      padding: 13px 24px; border-radius: 4px;
      font-weight: 600; font-size: 14px; transition: all .2s;
    }
    .btn-outline:hover { background: var(--plum); color: var(--gold); }

    /* ============================================
       SERVICES
    ============================================ */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .service-card {
      background: var(--cream2);
      border: 1px solid rgba(201,162,76,.18);
      border-bottom: 3px solid transparent;
      border-radius: 2px; padding: 30px 24px;
      transition: all .3s;
    }
    .service-card:hover {
      border-bottom-color: var(--gold);
      box-shadow: 0 16px 48px rgba(59,15,48,.10);
      transform: translateY(-6px);
      background: var(--white);
    }
    .svc-icon {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--plum); display: grid; place-items: center;
      font-size: 22px; margin-bottom: 18px;
    }
    .svc-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; color: var(--gold); font-weight: 600;
      letter-spacing: 2px; margin-bottom: 10px;
    }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 700; color: var(--plum);
      margin-bottom: 10px; line-height: 1.2;
    }
    .service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
    .svc-cta {
      font-size: 13px; font-weight: 600; color: var(--gold-dk);
      display: flex; align-items: center; gap: 6px;
      transition: gap .2s, color .2s;
    }
    .service-card:hover .svc-cta { gap: 10px; color: var(--gold); }

    /* ============================================
       EXPERIENCE SECTION (image + text split)
    ============================================ */
    .exp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
    .exp-img {
      aspect-ratio: 4/3;
      background: url('../images/engin-akyurt-ZbzYDboN7fg-unsplash.jpg') center/cover no-repeat;
      border-radius: 2px; box-shadow: var(--shadow);
      position: relative;
    }
    .exp-img::after {
      content: '';
      position: absolute; inset: 16px;
      border: 1px solid rgba(201,162,76,.25);
      border-radius: 2px; pointer-events: none;
    }
    .exp-text { color: var(--white); }
    .exp-text .section-title { color: var(--white); }
    .exp-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
    .exp-point {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(201,162,76,.12);
      border-radius: 4px;
    }
    .exp-point-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(201,162,76,.15);
      border-radius: 50%; display: grid; place-items: center;
      font-size: 16px;
    }
    .exp-point-text h4 { font-size: 14.5px; font-weight: 600; color: var(--gold-lt); margin-bottom: 3px; }
    .exp-point-text p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

    /* ============================================
       TESTIMONIALS
    ============================================ */
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .testi-card {
      background: var(--white);
      border: 1px solid rgba(201,162,76,.18);
      border-radius: 2px; padding: 28px 24px;
      box-shadow: 0 4px 24px rgba(59,15,48,.06);
      position: relative;
    }
    .testi-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px; color: var(--gold); opacity: .25;
      line-height: .8; margin-bottom: 10px; font-weight: 700;
    }
    .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-card p { font-style: italic; color: var(--muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; }
    .testi-who { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--plum2); display: grid; place-items: center;
      font-family: 'Cormorant Garamond', serif; font-size: 18px;
      font-weight: 700; color: var(--gold);
    }
    .testi-who strong { display: block; font-size: 14px; color: var(--plum); }
    .testi-who span { font-size: 12px; color: var(--muted); }

    /* ============================================
       CTA BANNER
    ============================================ */
    .cta-banner {
      background: var(--gold);
      padding: 64px 0;
    }
    .cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
    .cta-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 700; color: var(--plum); margin-bottom: 8px;
    }
    .cta-text p { color: rgba(59,15,48,.65); font-size: 15px; }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--plum); color: var(--gold);
      padding: 15px 28px; border-radius: 4px;
      font-weight: 700; font-size: 14.5px;
      transition: all .2s;
    }
    .btn-dark:hover { background: var(--plum2); transform: translateY(-2px); }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 9px;
      background: #25d366; color: var(--white);
      padding: 15px 28px; border-radius: 4px;
      font-weight: 700; font-size: 14.5px;
      transition: all .2s;
    }
    .btn-wa:hover { background: #1db554; transform: translateY(-2px); }

    /* ============================================
       FOOTER
    ============================================ */
    .footer { background: #1a0715; color: #a888ab; padding: 64px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
    .footer h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 18px; }
    .footer p, .footer li { font-size: 14px; line-height: 1.75; }
    .footer ul { list-style: none; }
    .footer li { margin-bottom: 8px; }
    .footer a { color: #a888ab; transition: color .2s; }
    .footer a:hover { color: var(--gold-lt); }
    .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-brand img { height: 42px; width: auto; }
    .footer-brand span { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); }
    .footer-social { display: flex; gap: 8px; margin-top: 18px; }
    .footer-soc {
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid rgba(201,162,76,.25);
      display: grid; place-items: center;
      font-size: 12px; font-weight: 700; color: #a888ab;
      transition: all .2s;
    }
    .footer-soc:hover { background: var(--gold); border-color: var(--gold); color: var(--plum); }
    .footer-copy {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 20px; text-align: center;
      color: #6b4a63; font-size: 13px;
    }

    /* ============================================
       FLOATING BUTTONS
    ============================================ */
    .float-btns {
      position: fixed; right: 18px; bottom: 20px;
      display: flex; flex-direction: column; gap: 10px;
      z-index: 200;
    }
    .float-btns a {
      width: 52px; height: 52px; border-radius: 50%;
      display: grid; place-items: center;
      box-shadow: 0 8px 24px rgba(0,0,0,.25);
      transition: transform .2s, box-shadow .2s;
      color: var(--white);
    }
    .float-btns a:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
    .float-wa { background: #25d366; }
    .float-ph { background: var(--gold); }
    .float-btns svg { width: 24px; height: 24px; fill: currentColor; }

    /* ============================================
       MOBILE STICKY BAR
    ============================================ */
    .mobile-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--plum); z-index: 150;
      border-top: 1px solid rgba(201,162,76,.20);
    }
    .mobile-bar-inner { display: flex; }
    .mob-btn {
      flex: 1; display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 14px; font-size: 14px; font-weight: 700;
      color: var(--white); transition: background .2s;
    }
    .mob-btn.call { background: var(--gold); color: var(--plum); }
    .mob-btn.wa { background: #25d366; }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 940px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 76px; left: 0; right: 0;
        background: var(--plum);
        border-top: 1px solid rgba(201,162,76,.12);
        padding: 12px 20px 20px; gap: 2px; z-index: 99;
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 12px 14px; border-radius: 4px; }
      .nav-cta { display: none; }

      .about-grid, .exp-grid { grid-template-columns: 1fr; gap: 36px; }
      .about-accent-card { right: 10px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-pillars { grid-template-columns: 1fr; }
      .hero-stats { gap: 24px; }
      .petals { width: 400px; height: 400px; right: -100px; opacity: .4; }
    }

    @media (max-width: 600px) {
      .topbar { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .hero h1 { font-size: 44px; }
      .hero-stats { gap: 20px; }
      .section { padding: 64px 0; }
      .float-btns { display: none; }
      .mobile-bar { display: block; }
      body { padding-bottom: 58px; }
      .trust-sep { display: none; }
      .trust-inner { gap: 16px; }
      .petals { display: none; }
    }

    /* ============================================
       PAGE HEADER (inner pages)
    ============================================ */
    .page-hero {
      background: var(--plum);
      padding: 150px 0 80px;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }
    .page-hero .petals-sm {
      position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
      width: 460px; height: 460px; pointer-events: none; opacity: .8;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.45);
      margin-bottom: 20px; position: relative; z-index: 2;
    }
    .breadcrumb a { color: var(--gold-lt); }
    .breadcrumb a:hover { color: var(--gold); }
    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 5.5vw, 60px);
      font-weight: 700; color: var(--white); line-height: 1.08;
      margin-bottom: 14px; position: relative; z-index: 2;
    }
    .page-hero h1 em { color: var(--gold); font-style: italic; }
    .page-hero p { color: rgba(255,255,255,.62); font-size: 15.5px; max-width: 560px; position: relative; z-index: 2; }

    /* ============================================
       ARTICLE / WRITTEN CONTENT (About page)
    ============================================ */
    .article { padding: 96px 0; }
    .article-wrap { max-width: 820px; margin: 0 auto; }
    .article h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px; font-weight: 700; color: var(--plum);
      margin: 48px 0 16px;
    }
    .article h2:first-child { margin-top: 0; }
    .article p { color: var(--muted); font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }
    .article blockquote {
      border-left: 3px solid var(--gold); padding: 6px 0 6px 24px; margin: 32px 0;
      font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic;
      color: var(--plum); font-weight: 600; line-height: 1.5;
    }
    .pillar-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 32px 0; }
    .pillar-grid-3 .pc {
      background: var(--cream2); border-radius: 4px; padding: 24px;
      border-top: 3px solid var(--gold);
    }
    .pillar-grid-3 .pc strong {
      display: block; font-family: 'Cormorant Garamond', serif; font-size: 19px;
      color: var(--plum); margin-bottom: 8px;
    }
    .pillar-grid-3 .pc span { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

    .founder-strip {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
      margin: 40px 0 8px;
    }
    .founder-strip div {
      text-align: center; background: var(--plum); border-radius: 4px; padding: 26px 10px;
    }
    .founder-strip strong {
      display: block; font-family: 'Cormorant Garamond', serif; font-size: 30px;
      color: var(--gold); line-height: 1;
    }
    .founder-strip span { font-size: 11.5px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; }

    /* ============================================
       SERVICES PAGE — detail cards w/ price
    ============================================ */
    .svc-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
    .svc-detail-card {
      display: flex; gap: 20px; background: var(--cream2);
      border: 1px solid rgba(201,162,76,.18); border-radius: 4px;
      padding: 28px; transition: all .3s;
    }
    .svc-detail-card:hover { background: var(--white); box-shadow: 0 16px 48px rgba(59,15,48,.10); transform: translateY(-4px); }
    .svc-detail-card .svc-icon { flex-shrink: 0; }
    .svc-detail-body h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700;
      color: var(--plum); margin-bottom: 8px; display: flex; align-items: baseline; gap: 10px; justify-content: space-between;
    }
    .svc-detail-body h3 .price { font-family: 'Inter',sans-serif; font-size: 14px; font-weight: 700; color: var(--gold-dk); white-space: nowrap; }
    .svc-detail-body .duration { font-size: 12px; color: var(--gold-dk); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; display:block; }
    .svc-detail-body p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }

    .pkg-note {
      background: var(--plum); color: rgba(255,255,255,.75);
      border-radius: 4px; padding: 28px 32px; margin-top: 50px;
      display: flex; gap: 20px; align-items: flex-start;
    }
    .pkg-note .n-icon { font-size: 26px; flex-shrink: 0; }
    .pkg-note strong { display: block; color: var(--gold-lt); font-family: 'Cormorant Garamond', serif; font-size: 19px; margin-bottom: 6px; }
    .pkg-note p { font-size: 14px; margin: 0; }

    /* ============================================
       GALLERY PAGE
    ============================================ */
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 190px; gap: 14px;
    }
    .g-tile {
      border-radius: 4px; overflow: hidden; position: relative;
      display: flex; align-items: flex-end; padding: 18px;
      box-shadow: 0 4px 20px rgba(59,15,48,.08);
    }
    .g-tile span {
      position: relative; z-index: 2; color: #fff; font-family: 'Cormorant Garamond', serif;
      font-size: 17px; font-weight: 600; letter-spacing: .3px;
    }
    .g-tile::before { content:''; position:absolute; inset:0; z-index: 1; }
    .g-tile.big { grid-column: span 2; grid-row: span 2; }
    .g-tile::after {
      content:''; position:absolute; inset:0;
      background: linear-gradient(to top, rgba(7,22,16,.75), rgba(7,22,16,.05) 60%);
      z-index: 1;
    }

    /* ============================================
       FAQ PAGE (accordion)
    ============================================ */
    .faq-page-list { max-width: 780px; margin: 0 auto; }
    .faq-item {
      background: var(--white); border: 1px solid rgba(201,162,76,.20);
      border-radius: 4px; margin-bottom: 12px; overflow: hidden;
    }
    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
      font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 17px; color: var(--plum);
    }
    .faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
    .faq-q .plus::before, .faq-q .plus::after {
      content: ''; position: absolute; background: var(--gold); transition: transform .25s;
    }
    .faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
    .faq-q .plus::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
    .faq-item.open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
    .faq-item.open .faq-a { max-height: 260px; }

    /* ============================================
       CONTACT PAGE
    ============================================ */
    .contact-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 56px; }
    .cc-card {
      text-align: center; background: var(--cream2); border-radius: 4px;
      padding: 32px 22px; border-bottom: 3px solid transparent; transition: all .3s;
    }
    .cc-card:hover { border-bottom-color: var(--gold); background: var(--white); box-shadow: 0 16px 48px rgba(59,15,48,.08); }
    .cc-card .cc-icon {
      width: 54px; height: 54px; border-radius: 50%; background: var(--plum);
      display: grid; place-items: center; margin: 0 auto 16px; font-size: 22px;
    }
    .cc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--plum); margin-bottom: 6px; }
    .cc-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 4px; }
    .cc-card a { color: var(--gold-dk); font-weight: 600; font-size: 14px; }

    /* ============================================
       RESPONSIVE — new components
    ============================================ */
    @media (max-width: 940px) {
      .svc-detail-grid { grid-template-columns: 1fr; }
      .pillar-grid-3, .founder-strip, .contact-cards-row { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
      .g-tile.big { grid-column: span 2; grid-row: span 1; }
      .page-hero { padding: 130px 0 60px; }
    }
    @media (max-width: 600px) {
      .pillar-grid-3, .founder-strip, .contact-cards-row { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
      .page-hero h1 { font-size: 32px; }
      .article { padding: 64px 0; }
    }

    /* ============================================
       ANIMATIONS
    ============================================ */
    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0; transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
      }
      .reveal.in-view { opacity: 1; transform: none; }
      .reveal-delay-1 { transition-delay: .1s; }
      .reveal-delay-2 { transition-delay: .2s; }
      .reveal-delay-3 { transition-delay: .3s; }
    }