
    :focus-visible {
      outline: 2px solid rgba(183, 144, 73, 0.9);
      outline-offset: 3px;
    }

    :root {
      --bg: #f6f1ef;
      --bg-2: #fbf8f6;
      --surface: rgba(255,255,255,0.7);
      --surface-strong: #ffffff;
      --text: #2e3147;
      --muted: #6f7388;
      --line: rgba(46, 49, 71, 0.08);
      --gold: #b79049;
      --gold-soft: rgba(183, 144, 73, 0.14);
      --rose: #ee4a93;
      --rose-deep: #db2d7d;
      --shadow: 0 22px 52px rgba(43, 36, 45, 0.10);
      --shadow-soft: 0 10px 26px rgba(43, 36, 45, 0.05);
      --shadow-lift: 0 26px 60px rgba(43, 36, 45, 0.12);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: 1280px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(183, 144, 73, 0.08), transparent 30%),
        linear-gradient(180deg, #f8f3f1 0%, #f5f0ee 100%);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin: 0 auto;
    }

    .site-shell {
      padding: 12px 0 32px;
    }

    .promo-bar {
      position: sticky;
      top: 0;
      z-index: 30;
      padding: 10px 0;
      background: rgba(247, 241, 237, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(46, 49, 71, 0.06);
    }

    .promo-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      text-align: center;
      color: var(--text);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .promo-bar-label {
      color: #8b6a2c;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.74rem;
    }

    .promo-bar-copy {
      color: #5c6278;
      font-weight: 500;
    }

    .promo-bar-link {
      color: var(--text);
      font-weight: 700;
      white-space: nowrap;
    }

    .promo-bar-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(183, 144, 73, 0.7);
      flex: 0 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 16px;
      z-index: 20;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 24px;
      background: rgba(251, 248, 246, 0.75);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.7);
      border-radius: 24px;
      box-shadow: var(--shadow-soft);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 1.5px solid rgba(183, 144, 73, 0.6);
      display: grid;
      place-items: center;
      color: var(--gold);
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.72));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-style: italic;
      font-weight: 700;
      line-height: 1;
      flex: 0 0 auto;
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.15rem;
      line-height: 0.9;
      letter-spacing: -0.02em;
      font-weight: 600;
    }

    .brand-tag {
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      margin-left: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      font-weight: 600;
      color: var(--text);
    }

    .nav-links a {
      position: relative;
      font-size: 1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transition: width 0.25s ease;
    }

    .nav-links a:hover::after { width: 100%; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      padding: 0 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 1rem;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
      cursor: pointer;
      border: none;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, #e87cad, #d94c86);
      box-shadow: 0 14px 26px rgba(217, 76, 134, 0.18);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,0.56);
      border: 1px solid rgba(46, 49, 71, 0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
    }

    .hero {
      display: grid;
      grid-template-columns: 1.06fr 0.94fr;
      gap: 54px;
      align-items: center;
      padding: 56px 0 34px;
    }

    .eyebrow {
      font-size: 0.98rem;
      letter-spacing: 0.30em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 22px;
    }

    h1 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(4.2rem, 8vw, 6.35rem);
      line-height: 0.92;
      letter-spacing: -0.045em;
      font-weight: 600;
      max-width: 740px;
    }

    .hero-copy p {
      margin: 22px 0 0;
      font-size: 1.12rem;
      line-height: 1.78;
      color: #5a5f74;
      max-width: 640px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 34px;
    }

    .tagline {
      margin-top: 28px;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(46,49,71,0.08);
      color: var(--text);
      font-size: 0.86rem;
      font-weight: 600;
      letter-spacing: 0.03em;
    }

    .feature-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 38px;
    }

    .feature-card {
      padding: 26px 22px;
      background: rgba(255,255,255,0.65);
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 24px;
      box-shadow: 0 8px 20px rgba(43, 36, 45, 0.05);
      backdrop-filter: blur(6px);
    }

    .hero-photo img,
    .gallery-card img {
      transition: transform 0.8s ease, filter 0.5s ease;
    }

    .hero-visual:hover .hero-photo img,
    .gallery-card:hover img {
      transform: scale(1.03);
    }

    .feature-card:hover,
    .service-card:hover,
    .gallery-card:hover,
    .hours-card:hover,
    .floating-card:hover,
    .stat:hover,
    .contact-card:hover,
    .contact-item:hover,
    .contact-panel:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lift);
    }

    .navbar,
    .feature-card,
    .service-card,
    .gallery-card,
    .hours-card,
    .floating-card,
    .stat,
    .btn,
    .hero-photo img,
    .contact-card,
    .contact-item,
    .contact-panel {
      transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
    }

    .feature-card h3 {
      margin: 0 0 12px;
      font-size: 1.05rem;
      line-height: 1.45;
    }

    .feature-card p {
      margin: 0;
      color: #5d6278;
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .hero-visual {
      position: relative;
      min-height: 760px;
      border-radius: 38px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(238, 231, 225, 0.92) 0%, rgba(214, 210, 212, 0.84) 100%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.72);
      isolation: isolate;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(231, 212, 191, 0.16) 0%, rgba(255,255,255,0) 35%, rgba(46,49,71,0.04) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-photo {
      position: absolute;
      inset: 0 0 auto 0;
      height: 48%;
      overflow: hidden;
      z-index: 0;
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(245, 221, 198, 0.08), rgba(255,255,255,0.02));
    }

    .floating-card {
      position: absolute;
      left: 32px;
      bottom: 32px;
      max-width: 360px;
      padding: 28px 28px 24px;
      background: rgba(255,255,255,0.80);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.62);
      border-radius: 26px;
      box-shadow: 0 20px 42px rgba(40, 35, 44, 0.10);
      z-index: 2;
    }

    .floating-card .mini,
    .service-label,
    .service-panel-tag,
    .service-mini-label {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--gold-soft);
      color: #7a5e24;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      white-space: nowrap;
    }

    .floating-card .mini {
      margin-bottom: 16px;
      min-height: 32px;
      padding: 8px 12px;
      font-size: 0.82rem;
    }

    .floating-card h3 {
      margin: 0 0 12px;
      font-size: 2rem;
      line-height: 1.05;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
    }

    .floating-card p {
      margin: 0;
      color: #5e6377;
      font-size: 1.03rem;
      line-height: 1.75;
    }

    .hero-stats {
      position: absolute;
      top: 26px;
      right: 26px;
      z-index: 2;
      display: grid;
      gap: 12px;
      width: 220px;
    }

    .stat {
      padding: 15px 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.54);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.62);
      box-shadow: var(--shadow-soft);
    }

    .stat strong {
      display: block;
      font-size: 0.88rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .stat span {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
    }

    .section-block {
      padding: 36px 0;
    }

    .section-shell {
      padding: 40px 0 10px;
    }

    .section-soft {
      background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.08));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-heading {
      max-width: 900px;
      margin-bottom: 28px;
    }

    .section-heading h2 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.7rem, 5vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .section-heading p {
      margin: 18px 0 0;
      color: #5b6177;
      font-size: 1.08rem;
      line-height: 1.8;
      max-width: 760px;
    }

    .split-heading {
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 28px;
      align-items: end;
    }

    .services-showcase {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 26px;
      align-items: start;
    }

    .services-intro-card {
      position: sticky;
      top: 120px;
      padding: 34px 30px;
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,243,240,0.84));
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: var(--shadow);
    }

    .services-intro-card h3 {
      margin: 12px 0 16px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.35rem;
      line-height: 0.98;
      font-weight: 600;
    }

    .services-intro-card p {
      margin: 0;
      color: #5d6278;
      font-size: 1.02rem;
      line-height: 1.85;
    }

    .services-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0 26px;
    }

    .services-badge,
    .contact-badge {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(46,49,71,0.08);
      color: var(--text);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .services-note {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(46,49,71,0.08);
      color: #70758b;
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .conversion-note {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(46,49,71,0.08);
      color: #5f6479;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .services-stack {
      display: grid;
      gap: 18px;
    }

    .service-panel {
      padding: 16px;
      border-radius: 30px;
      background: rgba(255,255,255,0.62);
      border: 1px solid rgba(255,255,255,0.68);
      box-shadow: var(--shadow-soft);
    }

    .service-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 12px 16px;
    }

    .service-panel-head h3 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.95rem;
      line-height: 1;
      font-weight: 600;
    }

    .service-panel-head p {
      margin: 8px 0 0;
      color: #63697f;
      font-size: 0.98rem;
      line-height: 1.7;
      max-width: 600px;
    }

    .service-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
      min-height: 238px;
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(255,255,255,0.66);
      box-shadow: 0 10px 24px rgba(43, 36, 45, 0.05);
      backdrop-filter: blur(6px);
    }

    .service-card.featured-service {
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,246,242,0.82));
      box-shadow: 0 16px 34px rgba(43, 36, 45, 0.07);
    }

    .service-card.premium-service {
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,242,238,0.84));
      border-color: rgba(183,144,73,0.20);
    }

    .pedicure-grid {
      grid-template-columns: 1fr 1fr;
    }

    .subtle-service {
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(255,255,255,0.58);
      box-shadow: 0 8px 18px rgba(43, 36, 45, 0.04);
    }

    .best-value-service {
      border-color: rgba(183,144,73,0.24);
      box-shadow: 0 18px 36px rgba(183,144,73,0.10);
    }

    .royal-service {
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,241,237,0.86));
      border-color: rgba(162,83,105,0.20);
    }

    .service-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .service-card-title {
      margin: 0;
      font-size: 1.16rem;
      line-height: 1.4;
      font-weight: 700;
      color: var(--text);
    }

    .service-card-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
    }

    .service-card-copy {
      margin: 10px 0 0;
      color: #5e647a;
      font-size: 0.98rem;
      line-height: 1.75;
    }

    .service-mini-label {
      min-height: 28px;
      padding: 0 10px;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .service-cta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
    }

    .service-cta-row .btn {
      min-height: 48px;
      padding: 0 20px;
      font-size: 0.96rem;
    }

    .service-cta-text {
      color: #7a7f93;
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.18fr 0.82fr 0.82fr;
      grid-template-areas:
        "feature detail-one detail-two"
        "feature note note";
      gap: 22px;
      align-items: stretch;
    }

    .gallery-card {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(255,255,255,0.62);
      box-shadow: var(--shadow-soft);
      min-height: 100%;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(1.04) contrast(0.95);
    }

    .gallery-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
      pointer-events: none;
    }

    .gallery-large {
      grid-area: feature;
      min-height: 620px;
    }

    .gallery-small {
      min-height: 298px;
    }

    .gallery-detail-one { grid-area: detail-one; }
    .gallery-detail-two { grid-area: detail-two; }

    .gallery-note {
      grid-area: note;
      display: flex;
      align-items: stretch;
      min-height: 300px;
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,241,237,0.88));
    }

    .gallery-note-inner {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 640px;
    }

    .gallery-note h3 {
      margin: 12px 0 14px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.15rem;
      line-height: 1.02;
      font-weight: 600;
    }

    .gallery-note p {
      margin: 0;
      color: #5d6278;
      font-size: 1.02rem;
      line-height: 1.8;
    }

    .hours-shell {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 26px;
      align-items: center;
    }

    .hours-copy h2 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.7rem, 5vw, 4.1rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .hours-copy p {
      margin: 18px 0 0;
      color: #5d6278;
      font-size: 1.08rem;
      line-height: 1.85;
      max-width: 620px;
    }

    .hours-note {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.75);
      border: 1px solid rgba(46,49,71,0.08);
      color: var(--text);
      font-weight: 600;
    }

    .hours-card {
      padding: 26px 28px;
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,243,240,0.84));
      border: 1px solid rgba(255,255,255,0.7);
      box-shadow: var(--shadow);
    }

    .hours-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(46,49,71,0.08);
      font-size: 1.03rem;
      color: #565c73;
    }

    .hours-row strong {
      color: var(--text);
      font-size: 1.03rem;
    }

    .hours-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .hours-row-closed strong {
      color: #a25369;
    }

    .signature-band {
      margin-top: 28px;
      padding: 22px 0;
      border-top: 1px solid rgba(46,49,71,0.06);
      border-bottom: 1px solid rgba(46,49,71,0.06);
      background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
    }

    .signature-lux {
      backdrop-filter: blur(10px);
    }

    .signature-inner {
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding: 18px 0;
    }

    .signature-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .signature-mark {
      width: 44px;
      height: 44px;
      font-size: 26px;
      border-radius: 50%;
      border: 1px solid rgba(183,144,73,0.5);
    }

    .signature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
    }

    .signature-center {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 0.95rem;
      color: #666b7f;
    }

    .sig-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .sig-cta {
      color: var(--text);
      font-weight: 600;
    }

    .sig-divider {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(183,144,73,0.6);
    }

    .promo-section {
      padding: 22px 0 10px;
    }

    .promo-shell {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      align-items: stretch;
    }

    .promo-card,
    .promo-offer {
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.72);
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,243,240,0.86));
      box-shadow: var(--shadow);
    }

    .promo-card {
      padding: 34px 32px;
    }

    .promo-card h2 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 3.9rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .promo-card p {
      margin: 18px 0 0;
      color: #5d6278;
      font-size: 1.04rem;
      line-height: 1.8;
      max-width: 620px;
    }

    .promo-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0 28px;
    }

    .promo-badge {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(46,49,71,0.08);
      color: var(--text);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .promo-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 8px;
    }

    .promo-offer {
      padding: 18px;
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .promo-offer-card {
      padding: 24px 24px 22px;
      border-radius: 24px;
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(255,255,255,0.76);
      box-shadow: var(--shadow-soft);
    }

    .promo-offer-card strong {
      display: block;
      color: var(--text);
      font-size: 1.2rem;
      line-height: 1.45;
      margin-top: 12px;
    }

    .promo-offer-card p {
      margin: 12px 0 0;
      color: #61677d;
      font-size: 0.98rem;
      line-height: 1.72;
    }

    .promo-fineprint {
      color: #7a7f93;
      font-size: 0.88rem;
      line-height: 1.65;
      padding: 0 6px;
    }

    .contact-section {
      padding: 42px 0 26px;
    }

    .contact-shell {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-card,
    .contact-panel {
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.7);
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,243,240,0.84));
      box-shadow: var(--shadow);
    }

    .contact-card {
      padding: 34px 32px;
    }

    .contact-card h2 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .contact-card p {
      margin: 18px 0 0;
      color: #5d6278;
      font-size: 1.04rem;
      line-height: 1.82;
      max-width: 620px;
    }

    .contact-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 28px;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 18px;
    }

    .contact-panel {
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.68);
      border: 1px solid rgba(255,255,255,0.7);
      box-shadow: var(--shadow-soft);
    }

    .contact-item-left {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      background: rgba(183,144,73,0.12);
      color: #86621c;
      font-size: 1rem;
      font-weight: 700;
      border: 1px solid rgba(183,144,73,0.16);
    }

    .contact-label {
      margin: 0 0 6px;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 700;
    }

    .contact-value {
      margin: 0;
      color: var(--text);
      font-size: 1.08rem;
      line-height: 1.55;
      font-weight: 600;
    }

    .contact-subtext {
      margin: 6px 0 0;
      color: #6b7186;
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      color: var(--text);
      font-size: 0.96rem;
      font-weight: 700;
      white-space: nowrap;
      align-self: center;
    }

    .floating-promo {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px 14px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.76);
      box-shadow: 0 20px 40px rgba(43,36,45,0.14);
    }

    .floating-promo-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .floating-promo-label {
      color: #8b6a2c;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1.2;
    }

    .floating-promo-text {
      color: var(--text);
      font-size: 0.94rem;
      font-weight: 700;
      line-height: 1.35;
      white-space: nowrap;
    }

    .floating-promo .btn {
      min-height: 46px;
      padding: 0 18px;
      font-size: 0.92rem;
      width: auto;
      box-shadow: 0 12px 24px rgba(217, 76, 134, 0.16);
    }

    .mobile-action-bar {
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 45;
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 10px;
      border-radius: 22px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.8);
      box-shadow: 0 20px 40px rgba(43,36,45,0.16);
    }

    .mobile-action-btn {
      min-height: 50px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.96rem;
      font-weight: 700;
      text-align: center;
      padding: 0 14px;
    }

    .mobile-action-btn.call {
      color: var(--text);
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(46,49,71,0.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
    }

    .mobile-action-btn.book {
      color: white;
      background: linear-gradient(135deg, #e87cad, #d94c86);
      box-shadow: 0 12px 24px rgba(217, 76, 134, 0.18);
    }

    .footer {
      margin-top: 40px;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,0.4);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      padding: 40px 0 20px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-columns {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-columns h4 {
      margin: 0 0 10px;
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer-columns p {
      margin: 4px 0;
      color: #5d6278;
      font-size: 0.98rem;
    }

    .footer-bottom {
      text-align: center;
      padding: 16px 0 26px;
      font-size: 0.9rem;
      color: #7a7f93;
    }

    .reveal-block {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .reveal-block {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 1180px) {
      .hero,
      .split-heading,
      .hours-shell,
      .services-showcase,
      .contact-shell,
      .promo-shell {
        grid-template-columns: 1fr;
      }

      .hero { gap: 34px; }
      .hero-visual { min-height: 680px; }
      .services-intro-card { position: static; }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "feature feature"
          "detail-one detail-two"
          "note note";
      }

      .gallery-large { min-height: 460px; }
      .gallery-small,
      .gallery-note { min-height: 280px; }
    }

    @media (min-width: 641px) {
      .mobile-action-bar {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .navbar { padding: 14px 16px; }
      .nav-links { display: none; }
      .brand-name { font-size: 1.9rem; }
      h1 { font-size: clamp(3.2rem, 12vw, 4.8rem); }
      .hero-copy p { font-size: 1.08rem; line-height: 1.75; }
      .feature-row,
      .service-card-grid,
      .pedicure-grid { grid-template-columns: 1fr; }
      .hero-visual { min-height: 620px; }
      .hero-stats {
        width: auto;
        left: 20px;
        right: 20px;
        top: 20px;
        grid-template-columns: 1fr 1fr;
      }
      .signature-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
      .signature-center { gap: 10px; }
    }

    @media (max-width: 640px) {
      .promo-card {
        padding: 26px 22px;
      }

      .promo-actions {
        flex-direction: column;
      }

      .floating-promo {
        display: none;
      }

      .mobile-action-bar {
        display: grid;
      }
.promo-bar {
        padding: 8px 0;
      }

      .promo-bar-inner {
        gap: 8px;
        font-size: 0.84rem;
      }

      .promo-bar-label {
        width: 100%;
      }

      .promo-bar-dot {
        display: none;
      }

      .promo-card {
        padding: 26px 22px;
      }

      .promo-actions {
        flex-direction: column;
      }

      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .site-shell { padding-top: 10px; }

      .brand-mark {
        width: 50px;
        height: 50px;
        font-size: 30px;
      }

      .brand-name { font-size: 1.65rem; }
      .brand-tag { letter-spacing: 0.18em; }

      .btn {
        min-height: 54px;
        width: 100%;
      }

      .hero-actions,
      .contact-actions {
        flex-direction: column;
      }

      .hero-visual {
        min-height: 560px;
        border-radius: 28px;
      }

      .hero-stats { grid-template-columns: 1fr; }

      .floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
        padding: 22px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          "feature"
          "detail-one"
          "detail-two"
          "note";
      }

      .gallery-large,
      .gallery-small,
      .gallery-note {
        min-height: 260px;
      }

      .gallery-note-inner { padding: 24px; }
      .gallery-note h3 { font-size: 1.8rem; }

      .contact-card { padding: 26px 22px; }
      .contact-panel { padding: 14px; }

      .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
      }

      .contact-link { align-self: flex-start; }
    }
.hero-note {
  margin-top: 14px;
  font-size: 14px;
  color: #6f7682;
  font-weight: 500;
  letter-spacing: 0.2px;
}
/* .note-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #d4bfa3;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  top: -1px;
} */
 .hero-note {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid #e6d8c9; /* soft gold-beige */
  font-size: 14px;
  color: #6f7682;
}