/* Luxe Nail Studio Sandton - blush, plum & gold boutique theme */
:root {
    --plum: #4a2440;
    --plum-deep: #38192f;
    --blush: #e8a3bf;
    --blush-soft: #f7e3ec;
    --gold: #c9a227;
    --bg: #fdf9f7;
    --text: #3c2f38;
    --muted: #7d6b76;
    --line: #ecd9e3;
    --serif: Georgia, "Times New Roman", serif;
    --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --radius: 10px;
    --shadow: 0 8px 24px rgba(74, 36, 64, .09);
    --container: 1120px;
    --space: clamp(3rem, 6vw, 4.75rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); line-height: 1.7; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.22; margin: 0 0 .5em; color: var(--plum); font-weight: 700; }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.05rem); }
h3 { font-size: 1.16rem; }
em { font-style: italic; }
p { margin: 0 0 1em; }
address { font-style: normal; }
a { color: var(--plum); }
a:hover { color: var(--gold); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.center-lead { text-align: center; max-width: 560px; margin-inline: auto; }
.small { font-size: .875rem; color: var(--muted); }
.fineprint { font-size: .78rem; color: var(--muted); padding-bottom: 1.5rem; }
.meta { color: var(--muted); font-size: .85rem; }
.kicker { display: block; font-family: var(--sans); font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.price-hint { color: var(--gold); font-weight: 700; font-size: .95rem; }

.gold-rule { height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .55; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 100;
    background: var(--plum); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

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

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 46px; padding: .68rem 1.65rem; border-radius: 999px;
    border: 2px solid transparent; font-weight: 600; font-family: inherit; font-size: .97rem;
    text-decoration: none; cursor: pointer; letter-spacing: .01em;
}
.btn-accent { background: var(--plum); color: #fff; }
.btn-accent:hover { background: var(--plum-deep); color: #fff; }
.btn-primary { background: var(--blush); color: var(--plum); }
.btn-primary:hover { background: var(--blush-soft); color: var(--plum); }
.btn-accent-light { background: var(--blush); color: var(--plum); }
.btn-accent-light:hover { background: #fff; color: var(--plum); }
.btn-outline { border-color: var(--plum); color: var(--plum); background: transparent; }
.btn-outline:hover { background: var(--plum); color: #fff; }
.btn-lg { padding: .9rem 1.95rem; }
.btn-sm { min-height: 38px; padding: .35rem 1.15rem; font-size: .88rem; }
.text-link { font-weight: 600; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.masthead { background: rgba(253,249,247,.94); position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--plum); font-size: 1.28rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text em { color: var(--blush); }
.brand-text small { font-size: .6rem; letter-spacing: .26em; color: var(--muted); margin-top: .18rem; }
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; }
.site-nav a {
    display: block; padding: .55rem .95rem; min-height: 44px;
    color: var(--text); text-decoration: none; font-weight: 600; font-size: .93rem;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a[aria-current="page"] { color: var(--plum); box-shadow: inset 0 -3px 0 var(--blush); }

.nav-toggle {
    display: none; align-items: center; gap: .5rem; min-height: 44px;
    background: none; border: 2px solid var(--line); border-radius: 999px;
    font: inherit; font-weight: 600; color: var(--plum); padding: .4rem .9rem; cursor: pointer;
    margin-left: auto;
}
.nav-toggle-box { display: inline-flex; flex-direction: column; gap: 3px; }
.nav-toggle-box span { width: 16px; height: 2px; background: currentColor; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.wa-link {
    font-size: .88rem; font-weight: 600; color: var(--plum);
    text-decoration-thickness: 2px; text-underline-offset: 3px;
}

.hero { padding-block: clamp(3rem, 6.5vw, 5rem); }
.hero-inner { display: grid; gap: 3rem; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; margin-bottom: 1rem; }
.lead { font-size: clamp(1.03rem, 2vw, 1.18rem); color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid #fff; }

.trust-strip { background: var(--plum); color: #f2dfec; padding-block: 1.35rem; }
.trust-grid { display: grid; gap: 1rem; text-align: center; grid-template-columns: repeat(2, 1fr); }
.trust-grid p { margin: 0; display: flex; flex-direction: column; }
.trust-grid strong { font-family: var(--serif); font-size: 1.4rem; color: var(--blush); }
.trust-grid span { font-size: .83rem; color: #d9bcd0; }

.section { padding-block: var(--space); }
.section-tint { background: var(--blush-soft); }
.section-head { max-width: 720px; margin-bottom: 2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.split { display: grid; gap: 2.5rem; align-items: start; }

.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; border: 1px solid var(--line); }
.service-card { position: relative; }
.service-card::before {
    content: ""; display: block; width: 42px; height: 2px; background: var(--gold); margin-bottom: 1rem;
}
.card h3 a { text-decoration: none; color: inherit; }
.card h3 a:hover { color: var(--gold); }

.card-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }

.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.check-list li { padding-left: 2rem; position: relative; margin-bottom: .65rem; }
.check-list li::before {
    content: ""; position: absolute; left: 0; top: .3em; width: 1.05em; height: 1.05em;
    border: 2px solid var(--gold); border-right: none; border-top: none;
    transform: rotate(-48deg) scale(.82);
}
.check-list.two-col { columns: 2; column-gap: 2rem; }
.check-list.two-col li { break-inside: avoid; }
.check-list.big li { margin-bottom: .95rem; font-size: 1.02rem; }

.panel { background: var(--plum-deep); color: #e7cfdd; border-radius: var(--radius); padding: 1.85rem; }
.panel h2, .panel h3 { color: #fff; }
.panel a:not(.btn) { color: var(--blush); }
.area-list { list-style: none; padding: 0; margin: 0 0 1rem; columns: 2; column-gap: 1.5rem; }
.area-list li { break-inside: avoid; padding: .13rem 0; }
.area-list li::before { content: "\273F\00a0"; color: var(--blush); font-size: .8em; }
.panel p { color: #cdaabd; }

.project-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.project-card { padding: 0; overflow: hidden; }
.project-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.project-body { padding: 1.25rem 1.45rem 1.45rem; }
.testimonial-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.testimonial { border-top: 3px solid var(--blush); }
.testimonial blockquote { margin: 0; }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--gold); }

.cta-band { background: var(--plum); color: #f2dfec; padding-block: clamp(2.75rem, 5vw, 3.75rem); }
.cta-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta-inner > div:first-child { max-width: 560px; }
.cta-band h2 { color: #fff; margin-bottom: .25em; }
.cta-band p { color: #d9bcd0; margin: 0; }

.page-hero { background: var(--blush-soft); padding-block: clamp(2.6rem, 6vw, 4.1rem); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0 0 1rem; padding: 0; font-size: .84rem; }
.breadcrumbs li + li::before { content: "\2022"; margin-right: .35rem; color: var(--blush); }
.breadcrumbs a { color: var(--plum); }

.services-list { display: grid; gap: 1.9rem; }
.service-detail { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; scroll-margin-top: 90px; border-top: 3px solid var(--gold); }
.service-detail-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; }
.detail-price { color: var(--gold); font-weight: 700; font-family: var(--serif); font-size: 1.08rem; margin: 0; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.price-table caption { caption-side: bottom; padding: .8rem; font-size: .84rem; color: var(--muted); text-align: left; }
.price-table th, .price-table td { text-align: left; padding: .75rem 1rem; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--plum); color: #fff; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.price-table tbody th { font-weight: 600; }
.price-table td:last-child { font-weight: 700; color: var(--gold); white-space: nowrap; }

.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1rem; }
.faq summary { cursor: pointer; padding: 1.1rem 1.35rem; font-weight: 700; font-family: var(--serif); color: var(--plum); min-height: 44px; }
.faq summary:hover { color: var(--gold); }
.faq[open] summary { border-bottom: 1px solid var(--line); }
.faq p { padding: 0 1.35rem 1.2rem; margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.5rem; }

.about-media { margin: 0; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.value-card h3 { color: var(--gold); }

.contact-grid { display: grid; gap: 2rem; }
.detail-list { margin: 0 0 1.5rem; }
.detail-list div { margin-bottom: 1rem; }
.detail-list dt { font-weight: 700; color: var(--blush); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.detail-list dd { margin: 0; }
.hours { list-style: none; padding: 0; margin: 0; }
.form-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; border: 1px solid var(--line); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; }
.req { color: #b3261e; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%; min-height: 46px; padding: .65rem .9rem;
    border: 2px solid var(--line); border-radius: var(--radius); font: inherit; color: var(--text);
}
textarea { resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline-offset: 0; border-color: var(--blush); }
.checkbox input[type="checkbox"] { width: 1.15rem; height: 1.15rem; accent-color: var(--plum); }
.checkbox label { display: inline; font-weight: 500; }
.field-error { color: #b3261e; font-size: .85rem; margin: .25rem 0 0; font-weight: 600; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.hp-field { position: absolute; left: -9999px; }
.form-status { padding: .85rem 1.1rem; border-radius: var(--radius); background: #e6f4ea; color: #1e4620; border: 1px solid #b7dfc2; font-weight: 600; }
.map-figure { margin: 0; }
.map-figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.tip-box { background: #fff; border-left: 3px solid var(--gold); padding: .85rem 1.1rem; border-radius: 4px; font-size: .92rem; color: #efe0ea; }

.error-hero { padding-block: clamp(3rem, 8vw, 6rem); }
.error-code { font-family: var(--serif); font-size: clamp(4rem, 12vw, 7rem); font-weight: 700; color: var(--blush); margin: 0; line-height: 1; }
.error-links li { text-align: left; }
.error-links h2 { font-size: 1.14rem; }
.error-links a { text-decoration: none; }
.error-links a:hover { text-decoration: underline; }

.site-footer { background: var(--plum-deep); color: #cdaabd; padding-top: 3.25rem; }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2rem; }
.site-footer h2 { color: #fff; font-size: 1.14rem; margin-bottom: .8rem; }
.site-footer em { color: var(--blush); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .48rem; }
.site-footer a { color: #cdaabd; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-about p { font-size: .92rem; }
.footer-wa a { color: var(--blush); font-weight: 700; }
.footer-contact address { margin-bottom: 1rem; }
.footer-contact strong { color: var(--blush); }
.footer-bottom { border-top: 1px solid #59334c; padding-block: 1.15rem; font-size: .81rem; color: #a37f96; }
.footer-bottom p { margin: 0; }

@media (min-width: 640px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; }
    .split { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 380px 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 2fr 1fr 1.4fr 1.6fr; }
}

@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .project-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1099px) {
    .header-actions .wa-link { display: none; }
}

@media (max-width: 899px) {
    .header-actions { display: none; }
    .nav-toggle { display: inline-flex; order: 3; margin-left: auto; }
    .site-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .js .site-nav.open { display: block; }
    .no-js .site-nav { display: block; }
    .site-nav ul { flex-direction: column; padding: .5rem 0; }
    .site-nav a { padding: .85rem 1.5rem; }
}
