/* ============================================================
   Blush Beauty Salon — design system
   Elegant, warm, blush-and-rose palette with soft surfaces.
   Plain static CSS, tokens-driven, light + optional dark theme.
   ============================================================ */

:root {
    --bg: #fbf4f2;
    --bg-2: #f6eae7;
    --surface: #ffffff;
    --surface-2: #fdf7f5;
    --text: #4a3940;
    --text-muted: #927e85;
    --heading: #2e2125;
    --border: #f0e1dd;
    --accent: #c96a86;          /* rose */
    --accent-deep: #a8466180;
    --accent-strong: #a84661;
    --accent-soft: rgba(201, 106, 134, 0.10);
    --gold: #c9a86a;
    --shadow: 0 1px 2px rgba(74, 41, 52, 0.04), 0 6px 18px rgba(74, 41, 52, 0.07);
    --shadow-hover: 0 6px 14px rgba(74, 41, 52, 0.08), 0 18px 40px rgba(74, 41, 52, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1140px;
    --serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.dark-mode {
    --bg: #1a1416;
    --bg-2: #211a1d;
    --surface: #241c1f;
    --surface-2: #2b2125;
    --text: #ecdfe2;
    --text-muted: #b59ba3;
    --heading: #fbf1f3;
    --border: #382b30;
    --accent: #e58aa4;
    --accent-strong: #f0a3b9;
    --accent-soft: rgba(229, 138, 164, 0.14);
    --gold: #d8bd86;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 10px 34px rgba(0, 0, 0, 0.55);
}

/* ----------------------------- Base ----------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Offset in-page anchors so the sticky header never covers them */
[id] {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    color: var(--heading);
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 0.5em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    opacity: 0.82;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin-bottom: 0.9rem;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: var(--bg-2);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin-bottom: 0.6rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.04rem;
    margin: 0;
}

.text-accent { color: var(--accent-strong); }
.text-center { text-align: center; }

/* ----------------------------- Buttons ----------------------------- */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.93rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 1.6rem;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 20px rgba(201, 106, 134, 0.32);
}

.btn-primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 106, 134, 0.42);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--accent-strong);
    border-color: var(--accent);
}

.btn-ghost:hover {
    opacity: 1;
    background: var(--accent-soft);
    transform: translateY(-2px);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.link-arrow i {
    transition: transform 0.2s ease;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* ----------------------------- Header / nav ----------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 244, 242, 0.82);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.dark-mode .site-header {
    background: rgba(26, 20, 22, 0.82);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: var(--border);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--heading);
}

.brand:hover { opacity: 1; }

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 16px rgba(201, 106, 134, 0.35);
}

.brand-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.01em;
    color: var(--heading);
}

.brand-name span {
    color: var(--accent-strong);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link {
    position: relative;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
    border-radius: 100px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.25rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover { opacity: 1; }

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--accent-strong);
}

.nav-cta {
    margin-left: 0.4rem;
    background: var(--accent);
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    box-shadow: 0 6px 16px rgba(201, 106, 134, 0.3);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-btn:hover {
    color: var(--accent-strong);
    border-color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--heading);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero {
    position: relative;
    padding: 80px 0 96px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(201, 106, 134, 0.18), transparent 68%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.14), transparent 68%);
    border-radius: 50%;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    margin-bottom: 1.1rem;
}

.hero-title em {
    font-style: italic;
    color: var(--accent-strong);
}

.hero-sub {
    color: var(--text-muted);
    font-size: 1.12rem;
    max-width: 30rem;
    margin-bottom: 1.8rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 2.2rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-meta-item i {
    color: var(--accent-strong);
}

.hero-photo {
    position: relative;
}

.hero-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 220px 220px 24px 24px;
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: 28px;
    left: -22px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-badge .stars {
    color: var(--gold);
    font-size: 0.85rem;
}

.hero-badge strong {
    font-family: var(--serif);
    color: var(--heading);
    font-size: 1.05rem;
}

.hero-badge span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ----------------------------- Marquee / trusted ----------------------------- */
.strip {
    background: var(--accent);
    color: #fff;
    padding: 18px 0;
}

.strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.6rem;
}

.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.strip-item i { opacity: 0.85; }

/* ----------------------------- Stats ----------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-value {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--accent-strong);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ----------------------------- Cards / services ----------------------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-soft);
}

.svc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.svc-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.svc-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin: 0;
}

.svc-card .price-from {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--accent-strong);
}

/* ----------------------------- Feature / why-us ----------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.split-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-list {
    margin-top: 1.6rem;
    display: grid;
    gap: 1.3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-item .fi-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: var(--sans);
    font-weight: 600;
    color: var(--heading);
}

.feature-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.93rem;
}

/* ----------------------------- Price menu ----------------------------- */
.menu-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.menu-block-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed var(--border);
}

.menu-block-head i {
    color: var(--accent-strong);
    font-size: 1.4rem;
}

.menu-block-head h3 {
    margin: 0;
    font-size: 1.45rem;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0.7rem 0;
}

.menu-item + .menu-item {
    border-top: 1px solid var(--border);
}

.menu-item .mi-name {
    font-weight: 500;
    color: var(--heading);
}

.menu-item .mi-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

.menu-item .mi-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    transform: translateY(-4px);
}

.menu-item .mi-price {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--accent-strong);
    white-space: nowrap;
}

/* ----------------------------- Steps / process ----------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 1rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--accent);
    color: var(--accent-strong);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step h4 {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.3rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ----------------------------- Testimonials ----------------------------- */
.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow);
    margin: 0;
}

.quote-card .stars {
    color: var(--gold);
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}

.quote-card blockquote {
    margin: 0 0 1.3rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.quote-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-card figcaption strong {
    display: block;
    color: var(--heading);
    font-family: var(--serif);
}

.quote-card figcaption span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ----------------------------- Team ----------------------------- */
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-body {
    padding: 1.3rem 1.4rem 1.6rem;
    text-align: center;
}

.team-body h4 {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
}

.team-body .role {
    color: var(--accent-strong);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.team-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    opacity: 1;
}

/* ----------------------------- Gallery ----------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    background: rgba(168, 70, 97, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ----------------------------- CTA band ----------------------------- */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #a84661, #c96a86);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-band::before,
.cta-band::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-band::before { top: -160px; left: -100px; }
.cta-band::after { bottom: -180px; right: -80px; }

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 0.6rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 34rem;
    margin: 0 auto 1.8rem;
    font-size: 1.05rem;
}

.cta-band .btn-primary {
    background: #fff;
    color: var(--accent-strong);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-band .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.cta-band .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-band .btn-row {
    justify-content: center;
}

/* ----------------------------- Page header ----------------------------- */
.page-head {
    position: relative;
    padding: 72px 0 64px;
    text-align: center;
    background: var(--bg-2);
    overflow: hidden;
}

.page-head::before {
    content: "";
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 360px;
    background: radial-gradient(circle, rgba(201, 106, 134, 0.14), transparent 70%);
}

.page-head .container { position: relative; z-index: 1; }

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 40rem;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-strong); }

/* ----------------------------- Contact ----------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

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

.info-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}

.info-row + .info-row { border-top: 1px solid var(--border); }

.info-row .ir-icon {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-row h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.15rem;
    color: var(--heading);
}

.info-row p { margin: 0; color: var(--text-muted); font-size: 0.93rem; }
.info-row a { color: var(--text-muted); }
.info-row a:hover { color: var(--accent-strong); }

.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: var(--shadow);
}

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

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea { resize: vertical; min-height: 120px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.form-success {
    display: none;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    color: var(--accent-strong);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.form-success.show { display: block; }

.map-offline {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 56px;
    padding: 2.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--text);
    background:
        linear-gradient(135deg, var(--accent-soft), transparent 60%),
        repeating-linear-gradient(0deg, var(--border) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, var(--border) 0 1px, transparent 1px 44px),
        var(--surface);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-offline:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.map-pin {
    flex: none;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(201, 106, 134, 0.4);
}

.map-text {
    flex: 1 1 240px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--heading);
    margin-bottom: 0.2rem;
}

.map-cta {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-strong);
    white-space: nowrap;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.93rem;
}

.hours-list li + li { border-top: 1px solid var(--border); }

.hours-list .day { color: var(--heading); font-weight: 500; }
.hours-list .time { color: var(--text-muted); }
.hours-list .closed { color: var(--accent-strong); }

/* ----------------------------- FAQ / accordion ----------------------------- */
.faq {
    max-width: 760px;
    margin: 0 auto;
}

.acc-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.acc-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    color: var(--heading);
    padding: 1.1rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.acc-q i { color: var(--accent-strong); transition: transform 0.3s ease; }
.acc-item.open .acc-q i { transform: rotate(45deg); }

.acc-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.acc-a-inner {
    padding: 0 1.3rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ----------------------------- Footer ----------------------------- */
.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin: 1rem 0 1.2rem;
    max-width: 22rem;
}

.footer h5 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--heading);
    margin-bottom: 1.1rem;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: var(--text-muted);
    font-size: 0.93rem;
}

.footer-links a:hover { color: var(--accent-strong); }

.footer-contact li {
    display: flex;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
}

.footer-contact i { color: var(--accent-strong); margin-top: 0.25rem; }

.footer-social {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.4rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------------- Back to top ----------------------------- */
.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(201, 106, 134, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 90;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover { transform: translateY(-3px); }

/* ----------------------------- Reveal animation ----------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

html:not(.js) .reveal {
    opacity: 1;
    transform: none;
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-photo { max-width: 460px; margin: 0 auto; width: 100%; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-img { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .section { padding: 60px 0; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 76px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 0.6rem 1.2rem 1.2rem;
        transform: translateY(-130%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-link { padding: 0.85rem 0.4rem; border-radius: 0; }
    .nav-link::after { display: none; }
    .nav-cta { margin: 0.6rem 0 0; justify-content: center; }
    .nav-tools { order: -1; }
    .card-grid,
    .card-grid.cols-2,
    .stats-grid,
    .steps,
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badge { left: 0; }
    .hero-photo img { height: 420px; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}
