/*
Theme Name: D & J Salon
Theme URI: https://example.com/
Author: Custom build for D & J Unisex Salon
Author URI: https://example.com/
Description: A fast, mobile-first, Google Ads-ready one-page theme for D & J Unisex Salon, Basaveshwar Nagar, Bengaluru. Edit your phone, WhatsApp, address, map and Google Ads tag under Appearance > Customize > Salon Details.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dj-salon
Tags: one-page, business, custom-logo, custom-colors, responsive-layout, full-width-template
*/

/* ============================ TOKENS ============================ */
        :root {
            --porcelain: #F5EFEA;
            --porcelain-2: #EFE6DE;
            --ink: #1B1A1F;
            --ink-soft: #302B30;
            --plum: #3A2233;
            --rose: #B84A63;
            --rose-deep: #9A3A52;
            --blush: #E9C6C1;
            --gold: #C9A15A;
            --line: rgba(27, 26, 31, .08);
            --shadow: 0 12px 30px -10px rgba(27, 26, 31, .12);
            --shadow-hover: 0 20px 40px -12px rgba(27, 26, 31, .25);
            --shadow-rose: 0 16px 30px -10px rgba(184, 74, 99, .22);
            --rose-glow: rgba(184, 74, 99, 0.15);

            --font-display: "Fraunces", Georgia, serif;
            --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

            --wrap: 1180px;
            --radius: 20px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 84px;
            -webkit-text-size-adjust: 100%
        }

        body {
            font-family: var(--font-body);
            background: var(--porcelain);
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            -webkit-tap-highlight-color: rgba(184, 74, 99, .18);
        }

        ::selection {
            background: var(--rose);
            color: #fff
        }

        a {
            color: inherit;
            text-decoration: none
        }

        img {
            max-width: 100%;
            display: block
        }

        .wrap {
            max-width: var(--wrap);
            margin: 0 auto;
            padding: 0 24px
        }

        section {
            position: relative
        }

        h1,
        h2,
        h3 {
            font-family: var(--font-display);
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: -.01em
        }

        .eyebrow {
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--rose);
            display: inline-flex;
            align-items: center;
            gap: .6rem;
        }

        .eyebrow::before {
            content: "";
            width: 26px;
            height: 1px;
            background: var(--rose);
            opacity: .7
        }

        /* ============================ BUTTONS ============================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .55rem;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: .98rem;
            padding: .95rem 1.6rem;
            border-radius: 100px;
            border: 1.5px solid transparent;
            cursor: pointer;
            transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
            white-space: nowrap;
        }

        .btn:active {
            transform: translateY(1px) scale(.99)
        }

        .btn-primary {
            background: var(--rose);
            color: #fff;
            box-shadow: 0 12px 26px -12px var(--rose)
        }

        .btn-primary:hover {
            background: var(--rose-deep);
            box-shadow: var(--shadow-rose);
            transform: translateY(-2px)
        }

        .btn-dark {
            background: var(--ink);
            color: var(--porcelain)
        }

        .btn-dark:hover {
            background: var(--ink-soft);
            transform: translateY(-2px)
        }

        .btn-ghost {
            background: transparent;
            color: var(--ink);
            border-color: var(--line)
        }

        .btn-ghost:hover {
            border-color: var(--ink);
            background: rgba(27, 26, 31, .03)
        }

        .btn-wa {
            background: #1FA855;
            color: #fff
        }

        .btn-wa:hover {
            background: #178a45;
            transform: translateY(-2px)
        }

        .btn svg {
            width: 18px;
            height: 18px;
            flex: none
        }

        /* ============================ NAV ============================ */
        header.nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(245, 239, 234, .85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transition: var(--transition);
        }

        header.nav.scrolled {
            border-color: var(--line);
            background: rgba(245, 239, 234, .92);
            box-shadow: 0 10px 30px -15px rgba(27, 26, 31, 0.08);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: .7rem;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.35rem;
            letter-spacing: -.02em
        }

        .brand .amp {
            color: var(--gold)
        }

        .brand small {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: .62rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--ink);
            opacity: .55;
            display: block;
            margin-top: -3px
        }

        .brand-logo {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            flex: none;
            object-fit: cover;
            box-shadow: 0 4px 14px -5px rgba(0, 0, 0, .55);
            background: #000
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.05
        }

        .brand-text b {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: -.01em
        }

        .brand-text small {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: .6rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            opacity: .55;
            margin-top: 3px
        }

        .foot-brand .brand-logo {
            width: 52px;
            height: 52px
        }

        .foot-brand .brand-text b {
            font-size: 1.5rem;
            color: var(--porcelain)
        }

        .foot-brand .brand-text small {
            color: var(--porcelain)
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none
        }

        .nav-links a {
            font-size: .95rem;
            font-weight: 500;
            opacity: .8;
            transition: opacity .2s;
            position: relative
        }

        .nav-links a:hover {
            opacity: 1
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            height: 2px;
            width: 0;
            background: var(--rose);
            transition: width .25s
        }

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

        .nav-cta {
            display: flex;
            align-items: center;
            gap: .6rem
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            position: relative;
            z-index: 10
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--ink);
            margin: 5px 0;
            transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
            border-radius: 2px
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg)
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg)
        }

        /* ============================ HERO ============================ */
        .hero {
            padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 6vw, 5.5rem);
            overflow: hidden
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center
        }

        .hero-amp {
            position: absolute;
            font-family: var(--font-display);
            font-weight: 400;
            font-style: italic;
            font-size: min(46vw, 620px);
            line-height: .8;
            color: var(--gold);
            opacity: .09;
            top: -8%;
            right: -4%;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        .hero-copy {
            position: relative;
            z-index: 2
        }

        .hero h1 {
            font-size: clamp(2.6rem, 6vw, 4.6rem);
            margin: 1.3rem 0 0
        }

        .hero h1 em {
            font-style: italic;
            color: var(--rose)
        }

        .hero h1 .line {
            display: block
        }

        .hero p.lead {
            font-size: 1.12rem;
            max-width: 34ch;
            margin: 1.4rem 0 2rem;
            opacity: .82
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: .8rem
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 1.6rem;
            margin-top: 2.4rem;
            padding-top: 1.6rem;
            border-top: 1px solid var(--line)
        }

        .hero-trust div {
            display: flex;
            flex-direction: column
        }

        .hero-trust b {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1
        }

        .hero-trust span {
            font-size: .8rem;
            letter-spacing: .04em;
            opacity: .65;
            margin-top: .35rem
        }

        .stars {
            color: var(--gold);
            letter-spacing: 2px
        }

        /* hero visual card */
        .hero-visual {
            position: relative;
            z-index: 2
        }

        .photo-frame {
            position: relative;
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            background: linear-gradient(150deg, var(--plum), var(--ink));
            box-shadow: var(--shadow-hover);
            aspect-ratio: 4/4.6;
            display: flex;
            align-items: flex-end;
            transition: var(--transition);
        }

        .photo-frame:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px -15px rgba(27, 26, 31, .35);
        }

        .photo-frame .placeholder-note {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(245, 239, 234, .6);
            text-align: center;
            gap: .6rem;
            padding: 2rem;
        }

        .photo-frame .placeholder-note svg {
            width: 40px;
            height: 40px;
            opacity: .7
        }

        .photo-frame .placeholder-note small {
            font-size: .78rem;
            letter-spacing: .08em;
            line-height: 1.5
        }

        .hero-visual .badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 14px;
            padding: .9rem 1.1rem;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: .7rem;
            z-index: 3;
            transition: var(--transition);
            animation: float 6s ease-in-out infinite;
        }

        .hero-visual .badge.b1 {
            bottom: 22px;
            left: -18px;
            animation-delay: 0s
        }

        .hero-visual .badge.b2 {
            top: 26px;
            right: -14px;
            animation-delay: 3s
        }

        .hero-visual .badge:hover {
            transform: translateY(-5px) scale(1.05);
            background: #fff;
            box-shadow: var(--shadow-hover);
        }

        .hero-visual .badge .dot {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--blush);
            display: grid;
            place-items: center;
            color: var(--rose-deep)
        }

        .hero-visual .badge b {
            font-family: var(--font-display);
            font-size: .98rem;
            display: block;
            line-height: 1.1;
            color: var(--ink)
        }

        .hero-visual .badge span {
            font-size: .72rem;
            opacity: .6
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* ============================ MARQUEE STRIP ============================ */
        .strip {
            background: var(--ink);
            color: var(--porcelain);
            padding: .9rem 0;
            overflow: hidden
        }

        .strip .track {
            display: flex;
            gap: 3rem;
            white-space: nowrap;
            animation: scroll 28s linear infinite;
            width: max-content
        }

        .strip .track span {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.05rem;
            opacity: .9;
            display: inline-flex;
            align-items: center;
            gap: 3rem
        }

        .strip .track span::after {
            content: "✦";
            color: var(--gold);
            font-style: normal
        }

        @keyframes scroll {
            to {
                transform: translateX(-50%)
            }
        }

        /* ============================ SECTION SHELL ============================ */
        .section-pad {
            padding: clamp(4rem, 8vw, 7rem) 0
        }

        .section-head {
            max-width: 640px;
            margin-bottom: 3rem
        }

        .section-head h2 {
            font-size: clamp(2rem, 4.4vw, 3.1rem);
            margin-top: 1rem
        }

        .section-head p {
            margin-top: 1rem;
            opacity: .78;
            font-size: 1.05rem
        }

        .center {
            text-align: center;
            margin-left: auto;
            margin-right: auto
        }

        .center .eyebrow {
            justify-content: center
        }

        /* ============================ SERVICES ============================ */
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem
        }

        .svc-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .svc-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--rose), var(--gold));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .svc-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-rose);
            border-color: transparent
        }

        .svc-card:hover::before {
            opacity: 1
        }

        .svc-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--porcelain-2);
            display: grid;
            place-items: center;
            color: var(--rose-deep);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .svc-card:hover .svc-icon {
            background: var(--rose);
            color: #fff;
            transform: scale(1.05) rotate(5deg)
        }

        .svc-icon svg {
            width: 26px;
            height: 26px
        }

        .svc-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: .6rem;
            color: var(--ink)
        }

        .svc-card p {
            font-size: .95rem;
            opacity: .75;
            line-height: 1.5
        }

        /* ============================ PRICING ============================ */
        .price-wrap {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.4rem
        }

        .price-col {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow)
        }

        .price-col header {
            display: flex;
            align-items: center;
            gap: .8rem;
            margin-bottom: 1.4rem;
            padding-bottom: 1.1rem;
            border-bottom: 1px dashed var(--line)
        }

        .price-col header .tag {
            width: 42px;
            height: 42px;
            border-radius: 11px;
            background: var(--plum);
            color: var(--porcelain);
            display: grid;
            place-items: center
        }

        .price-col header h3 {
            font-size: 1.4rem;
            font-weight: 600
        }

        .price-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .15rem
        }

        .price-list li {
            display: flex;
            align-items: baseline;
            gap: .6rem;
            padding: .62rem 0;
            border-bottom: 1px dotted var(--line)
        }

        .price-list li:last-child {
            border-bottom: none
        }

        .price-list .name {
            font-weight: 500
        }

        .price-list .leader {
            flex: 1;
            border-bottom: 1px dotted var(--line);
            transform: translateY(-4px);
            opacity: .5
        }

        .price-list .amt {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.02rem;
            white-space: nowrap
        }

        .price-list .amt small {
            font-size: .7rem;
            font-weight: 400;
            opacity: .6
        }

        .price-note {
            text-align: center;
            margin-top: 1.6rem;
            font-size: .88rem;
            opacity: .65
        }

        /* ============================ WHY / FEATURES ============================ */
        .why {
            background: linear-gradient(135deg, var(--ink), var(--plum));
            color: var(--porcelain)
        }

        .why .eyebrow {
            color: var(--blush)
        }

        .why .eyebrow::before {
            background: var(--blush)
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem
        }

        .why-item {
            border-top: 1px solid rgba(245, 239, 234, .12);
            padding-top: 1.5rem;
            transition: var(--transition)
        }

        .why-item:hover {
            border-top-color: var(--gold);
            transform: translateY(-4px)
        }

        .why-item .n {
            font-family: var(--font-display);
            font-style: italic;
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: .7rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .why-item:hover .n {
            transform: translateX(4px)
        }

        .why-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: .6rem;
            letter-spacing: -0.01em
        }

        .why-item p {
            font-size: .95rem;
            opacity: .75;
            line-height: 1.55
        }

        /* ============================ GALLERY ============================ */
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            gap: 1.2rem
        }

        .gallery figure {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            background: linear-gradient(140deg, var(--porcelain-2), var(--blush));
            display: grid;
            place-items: center;
            color: var(--rose-deep);
            border: 1px solid var(--line);
            transition: var(--transition);
            cursor: pointer;
        }

        .gallery figure.tall {
            grid-row: span 2
        }

        .gallery figure .ph {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .4rem;
            opacity: .6;
            text-align: center;
            padding: 1rem
        }

        .gallery figure .ph svg {
            width: 30px;
            height: 30px
        }

        .gallery figure .ph small {
            font-size: .72rem;
            letter-spacing: .05em
        }

        .photo-frame .frame-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 12%}

        .gallery figure{color:#fff}
  .gallery figure img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

        .gallery figure::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(58, 34, 51, 0.85), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .gallery figure::after {
            content: attr(data-cap);
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 1.2rem;
            font-family: var(--font-body);
            font-size: .88rem;
            font-weight: 600;
            letter-spacing: .02em;
            color: #fff;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 2;
        }

        .gallery figure:hover::before {
            opacity: 1
        }

        .gallery figure:hover::after {
            opacity: 1;
            transform: none
        }

        .gallery figure:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
            z-index: 5
        }

        /* ============================ TESTIMONIALS ============================ */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem
        }

        .testi {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 2.2rem;
            position: relative;
            transition: var(--transition)
        }

        .testi:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow)
        }

        .testi .q {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 3rem;
            color: var(--blush);
            line-height: 1;
            position: absolute;
            top: 1rem;
            right: 1.4rem
        }

        .testi .stars {
            font-size: .95rem;
            margin-bottom: .8rem;
            color: var(--gold);
            text-shadow: 0 2px 4px rgba(201, 161, 90, 0.2)
        }

        .testi p {
            font-size: .98rem;
            opacity: .82;
            margin-bottom: 1.5rem;
            line-height: 1.6
        }

        .testi .who {
            display: flex;
            align-items: center;
            gap: .8rem
        }

        .testi .who .av {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--plum);
            color: var(--porcelain);
            display: grid;
            place-items: center;
            font-family: var(--font-display);
            font-weight: 600
        }

        .testi .who b {
            font-size: .98rem;
            color: var(--ink)
        }

        .testi .who span {
            font-size: .78rem;
            opacity: .6
        }

        /* ============================ VISIT / CONTACT ============================ */
        .visit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.4rem;
            align-items: stretch
        }

        .info-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow)
        }

        .info-row {
            display: flex;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid var(--line)
        }

        .info-row:last-child {
            border-bottom: none
        }

        .info-row .ic {
            width: 42px;
            height: 42px;
            flex: none;
            border-radius: 11px;
            background: var(--porcelain-2);
            display: grid;
            place-items: center;
            color: var(--rose-deep)
        }

        .info-row .ic svg {
            width: 20px;
            height: 20px
        }

        .info-row h4 {
            font-size: .78rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            opacity: .55;
            margin-bottom: .25rem;
            font-family: var(--font-body);
            font-weight: 600
        }

        .info-row p {
            font-size: 1rem;
            line-height: 1.5
        }

        .info-row a {
            color: var(--rose-deep);
            font-weight: 600
        }

        .hours-list {
            list-style: none;
            font-size: .95rem
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: .35rem 0;
            border-bottom: 1px dotted var(--line)
        }

        .hours-list li:last-child {
            border-bottom: none
        }

        .hours-list li.today {
            color: var(--rose-deep);
            font-weight: 600;
            border-left: 3px solid var(--rose);
            padding-left: 8px;
            background: rgba(184, 74, 99, 0.04);
        }

        .map-embed {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            min-height: 340px;
            background: var(--porcelain-2)
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            min-height: 340px;
            border: 0;
            display: block
        }

        /* ============================ BOOKING FORM ============================ */
        .book {
            background: linear-gradient(150deg, var(--plum), var(--ink));
            color: var(--porcelain);
            border-radius: 32px;
            padding: clamp(2rem, 5vw, 4.5rem);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .book .amp-bg {
            position: absolute;
            font-family: var(--font-display);
            font-style: italic;
            font-size: 30rem;
            color: #fff;
            opacity: .04;
            right: -3rem;
            bottom: -9rem;
            pointer-events: none
        }

        .book-grid {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2
        }

        .book h2 {
            font-size: clamp(1.9rem, 4vw, 2.8rem)
        }

        .book .eyebrow {
            color: var(--blush)
        }

        .book .eyebrow::before {
            background: var(--blush)
        }

        .book p.sub {
            opacity: .8;
            margin-top: 1.2rem;
            max-width: 38ch;
            line-height: 1.6
        }

        form.booking {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem
        }

        form.booking .full {
            grid-column: 1/-1
        }

        .field label {
            display: block;
            font-size: .8rem;
            letter-spacing: .06em;
            opacity: .8;
            margin-bottom: .4rem;
            font-weight: 500
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            padding: .9rem 1.1rem;
            border-radius: 14px;
            border: 1px solid rgba(245, 239, 234, .16);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
            color: var(--porcelain);
            font-family: var(--font-body);
            font-size: .98rem;
            transition: var(--transition);
        }

        .field select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5efea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.1rem center;
            background-size: 18px;
            padding-right: 2.5rem
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: rgba(245, 239, 234, .45)
        }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--rose);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 4px rgba(184, 74, 99, 0.25);
        }

        /* Webkit autofill override for dark inputs */
        .field input:-webkit-autofill,
        .field input:-webkit-autofill:hover,
        .field input:-webkit-autofill:focus,
        .field input:-webkit-autofill:active {
            -webkit-text-fill-color: var(--porcelain) !important;
            -webkit-box-shadow: 0 0 0 30px #2D1F2A inset !important;
            /* matches the plum/ink card background */
            transition: background-color 5000s ease-in-out 0s;
        }

        .field select option {
            color: #1B1A1F
        }

        form.booking .btn-wa {
            width: 100%;
            margin-top: .4rem;
            box-shadow: 0 10px 24px -10px #1FA855;
            animation: pulse-wa 2.5s infinite;
        }

        form.booking .btn-wa:hover {
            box-shadow: 0 15px 30px -8px #1FA855;
            transform: translateY(-2px)
        }

        .form-hint {
            font-size: .8rem;
            opacity: .65;
            margin-top: .8rem;
            text-align: center
        }

        @keyframes pulse-wa {

            0%,
            100% {
                box-shadow: 0 8px 20px -8px rgba(31, 168, 85, 0.6);
            }

            50% {
                box-shadow: 0 8px 30px 0px rgba(31, 168, 85, 0.85);
            }
        }

        /* ============================ FOOTER ============================ */
        footer {
            background: var(--ink);
            color: var(--porcelain);
            padding: 4rem 0 2rem
        }

        .foot-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem
        }

        .foot-brand .brand {
            color: var(--porcelain);
            font-size: 1.6rem
        }

        .foot-brand p {
            opacity: .65;
            font-size: .92rem;
            margin-top: 1rem;
            max-width: 32ch
        }

        .foot-social {
            display: flex;
            gap: .7rem;
            margin-top: 1.4rem
        }

        .foot-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(245, 239, 234, .2);
            display: grid;
            place-items: center;
            transition: .2s
        }

        .foot-social a:hover {
            background: var(--rose);
            border-color: var(--rose);
            transform: translateY(-2px)
        }

        .foot-social a svg {
            width: 18px;
            height: 18px
        }

        footer h5 {
            font-size: .78rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            opacity: .5;
            margin-bottom: 1.1rem;
            font-weight: 600
        }

        .foot-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .65rem
        }

        .foot-links a {
            opacity: .72;
            font-size: .94rem;
            transition: opacity .2s
        }

        .foot-links a:hover {
            opacity: 1;
            color: var(--blush)
        }

        .foot-bottom {
            border-top: 1px solid rgba(245, 239, 234, .15);
            padding-top: 1.6rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: .85rem;
            opacity: .6
        }

        .foot-bottom a {
            text-decoration: underline;
            text-underline-offset: 3px
        }

        /* ============================ STICKY MOBILE BAR ============================ */
        .mobile-bar {
            position: fixed;
            bottom: 16px;
            left: 16px;
            right: 16px;
            z-index: 60;
            display: none;
            background: rgba(27, 26, 31, 0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(245, 239, 234, 0.12);
            padding: .7rem;
            gap: .7rem;
            border-radius: 100px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
            margin-bottom: env(safe-area-inset-bottom);
        }

        .mobile-bar .btn {
            flex: 1;
            padding: .85rem;
            font-size: .9rem;
            min-height: 46px;
            border-radius: 100px
        }

        /* ============================ MODAL ============================ */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1.5rem
        }

        .modal.open {
            display: flex
        }

        .modal-back {
            position: absolute;
            inset: 0;
            background: rgba(27, 26, 31, .55);
            backdrop-filter: blur(3px)
        }

        .modal-box {
            position: relative;
            background: var(--porcelain);
            border-radius: 20px;
            max-width: 640px;
            width: 100%;
            max-height: 82vh;
            overflow-y: auto;
            padding: 2.4rem;
            box-shadow: var(--shadow)
        }

        .modal-box h3 {
            font-size: 1.7rem;
            margin-bottom: 1rem
        }

        .modal-box h4 {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            margin: 1.4rem 0 .4rem
        }

        .modal-box p {
            font-size: .92rem;
            opacity: .82;
            margin-bottom: .7rem
        }

        .modal-box .close {
            position: absolute;
            top: 1.1rem;
            right: 1.1rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.6rem;
            line-height: 1;
            opacity: .6
        }

        .modal-box .close:hover {
            opacity: 1
        }

        /* ============================ REVEAL ANIM ============================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1)
        }

        .reveal.in {
            opacity: 1;
            transform: none
        }

        /* ============================ RESPONSIVE ============================ */
        @media(max-width:980px) {

            .svc-grid,
            .why-grid,
            .gallery {
                grid-template-columns: repeat(2, 1fr)
            }

            .testi-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem
            }

            .hero-visual {
                width: 100%;
                max-width: 420px;
                margin: 0 auto
            }

            .book-grid {
                grid-template-columns: 1fr;
                gap: 2rem
            }

            .visit-grid {
                grid-template-columns: 1fr
            }

            .price-wrap {
                grid-template-columns: 1fr
            }

            .foot-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem
            }
        }

        @media(max-width:640px) {
            .nav-toggle {
                display: block
            }

            .nav-links {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(245, 239, 234, 0.98);
                backdrop-filter: blur(20px);
                padding: 1.5rem 24px;
                gap: 1.2rem;
                border-bottom: 1px solid var(--line);
                box-shadow: var(--shadow);
                opacity: 0;
                pointer-events: none;
                transform: translateY(-10px);
                transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
            }

            .nav-links.open {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0)
            }

            .nav-links a::after {
                display: none
            }

            .nav-cta .btn-txt {
                display: none
            }

            .wrap {
                padding: 0 18px
            }

            .svc-grid,
            .foot-grid {
                grid-template-columns: 1fr
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 132px;
                gap: .7rem
            }

            .gallery figure.tall {
                grid-row: span 2
            }

            form.booking {
                grid-template-columns: 1fr;
                gap: .9rem
            }

            /* 16px inputs stop iOS from auto-zooming when the keyboard opens */
            .field input,
            .field select,
            .field textarea {
                font-size: 16px
            }

            .hero-actions {
                width: 100%
            }

            .hero-actions .btn {
                flex: 1;
                min-width: calc(50% - .4rem);
                min-height: 50px
            }

            .hero-visual .badge.b1 {
                left: 8px
            }

            .hero-visual .badge.b2 {
                right: 8px
            }

            .mobile-bar {
                display: flex
            }

            footer {
                padding-bottom: calc(2rem + 90px + env(safe-area-inset-bottom)) !important
            }

            .hero-trust {
                gap: 1.2rem
            }

            .section-head {
                margin-bottom: 2.2rem
            }

            .btn {
                min-height: 46px
            }
        }

        @media(max-width:430px) {
            .brand-text small {
                display: none
            }

            .brand-logo {
                width: 38px;
                height: 38px
            }

            .brand-text b {
                font-size: 1.05rem
            }

            .hero h1 {
                font-size: 2.35rem
            }

            .hero p.lead {
                font-size: 1.02rem
            }

            .hero-amp {
                font-size: 64vw;
                opacity: .07
            }

            .hero-actions .btn {
                min-width: 100%
            }

            .why-grid {
                grid-template-columns: 1fr
            }

            .hero-trust {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 1rem
            }

            .hero-trust div {
                width: 100%;
                flex: none
            }

            .section-head h2 {
                font-size: 1.85rem
            }

            .book {
                border-radius: 18px;
                padding: 1.5rem 1.25rem
            }

            .testi .q {
                font-size: 2.2rem
            }
        }

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

            .reveal {
                opacity: 1;
                transform: none;
                transition: none
            }
        }
