/* ===========================
   ROOT & RESET
=========================== */
:root {
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-text: #c9950c;
    --dark: #1a1a1a;
    --darker: #111111;
    --darkest: #0c0c0c;
    --white: #ffffff;
    --off-white: #f9f8f5;
    --cream: #f4f1eb;
    --muted: #888888;
    --font-heading: 'Marcellus', serif;
    --font-nav: 'Work Sans', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --nav-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--off-white);
    overflow-x: hidden;
}

/* Menu-open scroll lock — top is set by JS before this class is added */
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--cream);
}

.text-center {
    text-align: center;
}

/* ===========================
   ANIMATIONS
=========================== */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
}

.eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-text);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-nav);
}

.divider-icon {
    font-size: 20px;
    color: var(--dark);
    margin: 14px 0 22px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    height: auto;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-whatsapp {
    background: #9e8a78;
    color: var(--white);
    border-color: #9e8a78;
    font-size: 12px;
    padding: 13px 24px;
    justify-content: center;
    text-align: center;
}

.btn-whatsapp:hover {
    background: #8e7a68;
    border-color: #8e7a68;
}

.btn.full {
    width: 100%;
    display: flex;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar.page-nav {
    background: var(--darker);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
}

/* ---- THE EXACT MENU STYLE FROM USER ---- */
.nav-links a {
    color: #ddd;
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 80px;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 20px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: calc(100% - 40px);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-cta {

    padding: 10px 26px;
    font-size: 11px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile open panel */
.navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--darker);
    padding: 90px 36px 80px;
    gap: 0;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow-y: auto;
    animation: slideInRight 0.3s ease forwards;
    will-change: transform;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fix line-height on mobile links */
.navbar.open .nav-links a {
    line-height: 1.2;
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.navbar.open .nav-links a::after {
    display: none;
    /* hide underline animation on mobile */
}

/* CTA pinned to bottom of panel */
.navbar.open .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 280px;
    margin: 0;
    padding: 18px 36px;
    border-radius: 0;
    font-size: 11px;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
    animation: slideInRight 0.3s ease 0.1s both;
}

.navbar.open .nav-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/freak.jpg') center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.52) 55%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 38px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(9px);
    }
}

/* ===========================
   ABOUT (home snippet)
=========================== */
.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-img-sub1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46%;
    z-index: 2;
    box-shadow: var(--shadow);
    border: 8px solid var(--off-white);
    overflow: hidden;
    height: 200px;
}

.about-img-sub2 {
    position: absolute;
    bottom: 50%;
    left: 18%;
    transform: translateY(50%);
    width: 42%;
    z-index: 3;
    box-shadow: var(--shadow);
    border: 8px solid var(--off-white);
    overflow: hidden;
    height: 215px;
}

.about-img-main img,
.about-img-sub1 img,
.about-img-sub2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img,
.about-img-sub1:hover img,
.about-img-sub2:hover img {
    transform: scale(1.05);
}

.about-text p {
    color: var(--muted);
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--dark);
}

.about-text .btn {
    margin-top: 24px;
}

/* ===========================
   SERVICES (home grid)
=========================== */
.services-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(var(--grid-cols, 4), 1fr);
}
/* HOME PAGE → 4 columns */
#services {
    --grid-cols: 4;
}

/* SERVICES PAGE → 3 columns */
.services-page-section {
    --grid-cols: 3;
}

.service-card {
    padding: 44px 26px;
    text-align: center;
    background: var(--cream);
    transition: background var(--transition), transform var(--transition);
    cursor: default;
}

.service-card:hover {
    background: var(--dark);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    transition: color var(--transition);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    transition: color var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===========================
   APPOINTMENT (WhatsApp CTA)
=========================== */
.appointment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.appt-img-col {
    overflow: hidden;
    position: relative;
}

.appt-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease;
}

.appt-img-col:hover img {
    transform: scale(1.05);
}

.appt-form-col {
    background: var(--dark);
    color: var(--white);
    padding: 80px 9%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.appt-form-col .eyebrow {
    color: var(--gold-text);
}

.appt-form-col h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.appt-form-col>p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.appt-whatsapp-features {
    list-style: none;
    margin-bottom: 36px;
}

.appt-whatsapp-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.appt-whatsapp-features li i {
    color: var(--gold);
    width: 18px;
}

/* ===========================
   MARQUEE
=========================== */
.testimonial-banner {
    background: var(--gold);
    padding: 17px 0;
    overflow: hidden;
    white-space: nowrap;
}

.banner-track {
    display: inline-flex;
    gap: 40px;
    animation: marquee 32s linear infinite;
}

.banner-track span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-nav);
}

.banner-track .dot {
    color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===========================
   PRICING TABS (services page)
=========================== */
.price-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px;
    border-bottom: 1px solid var(--rule);
}

.tab-btn {
    padding: 14px 52px;
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: var(--muted);
    cursor: pointer;
    transition: color .25s, border-color .25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 11px;
}

.tab-btn.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.tab-btn:hover:not(.active) {
    color: #2c2c2c;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeUp .4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION BLOCK ── */
.svc-block {
    margin-bottom: 48px;
}

.svc-block:last-child {
    margin-bottom: 0;
}

/* ── TABLE ── */
.svc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

/* Category header row */
.svc-table thead tr {
    background: var(--dark);
}

.svc-table thead th {
    padding: 14px 22px;
    text-align: left;
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.svc-table thead th.th-cat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-table thead th.th-cat i {
    color: var(--gold);
    font-size: 11px;
}

.svc-table thead th.th-num {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 400;
    color: rgba(201, 169, 110, 0.6);
    letter-spacing: 1px;
    width: 52px;
    text-align: center;
}

.svc-table thead th.th-price {
    text-align: right;
    width: 130px;
}

/* Body rows */
.svc-table tbody tr {
    border-bottom: 1px solid #e8e2d9;
    transition: background .18s ease;
}

.svc-table tbody tr:last-child {
    border-bottom: none;
}

.svc-table tbody tr:hover {
    background: #fdf8f0;
}

.svc-table tbody td {
    padding: 14px 22px;
    vertical-align: middle;
}

.td-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(160, 120, 64, 0.45);
    text-align: center;
    width: 52px;
    font-weight: 400;
    letter-spacing: 1px;
    user-select: none;
}

.td-name {
    font-size: 0.95rem;
    color: var(--darker);
    font-weight: 400;
    letter-spacing: 0.1px;
}

.td-price {
    text-align: right;
    width: 130px;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.price-tag sup {
    font-size: 0.48em;
    font-family: var(--font-nav);
    font-weight: 400;
    color: var(--muted);
    vertical-align: super;
}

/* zebra light stripe */
.svc-table tbody tr:nth-child(even) {
    background: #fdfaf6;
}

.svc-table tbody tr:nth-child(even):hover {
    background: #fdf8f0;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background: url('../img/freak.jpg') center/cover no-repeat;
    margin-top: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.75);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 10px;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.breadcrumb {
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 14px;
    font-family: var(--font-nav);
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--gold);
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-full-img {
    position: relative;
}

.about-full-img img {
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-family: var(--font-heading);
}

.about-badge .big {
    font-size: 2.2rem;
    line-height: 1;
}

.about-badge .small {
    font-size: 0.75rem;
}

.about-full-text h2 {
    margin-bottom: 20px;
}

.about-full-text p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-full-text .btn {
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 28px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-area {
    padding: 50px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form-area h2 {
    margin-bottom: 8px;
}

.contact-form-area p {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 18px;
    background: var(--cream);
    border: 1px solid #e0dbd0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: border-color var(--transition);
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    height: 130px;
}

.locations-area h2 {
    margin-bottom: 8px;
}

.locations-area>p {
    color: var(--muted);
    margin-bottom: 36px;
}

.location-card {
    margin-bottom: 36px;
}

.location-card h3 {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    display: inline-block;
    padding: 5px 14px;
    margin-bottom: 14px;
}

.location-card .map-embed {
    width: 100%;
    height: 240px;
    border: none;
    filter: grayscale(20%);
}

.location-card .location-info {
    padding: 16px;
    background: var(--white);
    border: 1px solid #e8e3d9;
}

.location-card .location-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.location-card .location-info p i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 14px;
}

.location-card .map-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.location-card .map-cta:hover {
    color: var(--gold-light);
}

/* ===========================
   REVIEWS (home)
=========================== */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.big-rating {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1;
}

.stars.gold {
    color: var(--gold);
    font-size: 1rem;
}

.total-reviews {
    font-size: 0.95rem;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: var(--cream);
    padding: 36px;
    transition: transform var(--transition), box-shadow var(--transition);
    border-bottom: 3px solid transparent;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--gold);
}

.review-card .stars {
    margin-bottom: 16px;
}

.review-card>p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.93rem;
}

.reviewer-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.reviewer-sub {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ===========================
   PARALLAX
=========================== */
.parallax-section {
    position: relative;
    padding: 130px 0;
    background: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    text-align: center;
    color: var(--white);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.86);
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.quote-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 28px;
    display: block;
}

.parallax-content h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 38px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--darkest);
    color: rgba(255, 255, 255, 0.6);
    padding: 90px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    height: 68px;
    width: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 280px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-nav);
}

.footer-col ul a::before {
    content: '›';
    color: var(--gold);
    font-size: 1.05rem;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-col p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-col p i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 14px;
}

.footer-col a {
    color: inherit;
}

.footer-col a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.newsletter-form input {
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-nav);
    font-size: 0.88rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    padding: 12px;
    font-size: 11px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-nav);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-categories {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-strip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {

    .about-grid,
    .about-full-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 380px;
    }

    .appointment-section {
        grid-template-columns: 1fr;
    }

    .appt-img-col {
        height: 340px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .info-strip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar.open .nav-links {
        display: flex;
    }

    .navbar.open .nav-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .price-tabs {
        flex-direction: row;
        gap: 0;
        margin-bottom: 40px;
    }

    .tab-btn {
        width: 50%;
        text-align: center;
        justify-content: center;
        padding: 14px 10px;
        font-size: 10px;
    }

    .pricing-categories {
        grid-template-columns: 1fr;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .page-hero {
        height: 300px;
    }

    /* Table Mobile fixes */
    .td-num,
    .svc-table thead th.th-num {
        display: none;
    }

    .svc-table thead th {
        padding: 12px 14px;
    }

    .svc-table tbody td {
        padding: 12px 14px;
    }

    .price-tag {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-badge {
        width: 110px;
        height: 110px;
    }
}
@media (max-width: 992px) {
    .services-grid {
        --grid-cols: 2;
    }
}

@media (max-width: 576px) {
    .services-grid {
        --grid-cols: 1;
    }
}