/* ================================================
   Hartley & Sons Kitchens — Showroom Editorial
   Premium multi-page theme · £500 tier
   ================================================ */

/* ── Custom Properties ── */
:root {
    --bg: #0e0d0c;
    --bg-surface: #1a1917;
    --bg-card: #272523;
    --text: #f5f0eb;
    --text-muted: #9a9082;
    --accent: #c9a96e;
    --accent-hover: #d4b87a;
    --border: #353230;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 80px;
    --space-3xl: 120px;

    --max-width: 1400px;
    --nav-height: 72px;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol { list-style: none; }

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-muted);
    max-width: 640px;
}

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

/* ── Layout ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-2xl) 0;
}

/* Alternating section backgrounds for visual rhythm */
section:nth-of-type(even) {
    background: var(--bg-surface);
}

/* ── Section Numbering ── */
.section-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: var(--space-sm);
}

/* ── Section Divider ── */
.section-divider {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: var(--space-xl) auto;
    border: none;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--accent);
    color: var(--bg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    transition: gap var(--transition), color var(--transition);
    text-decoration: none;
    padding: 0;
}

.btn-secondary::after {
    content: '\2192';
    font-size: 1.1em;
    transition: transform var(--transition);
}

.btn-secondary:hover { gap: 12px; color: var(--accent-hover); }
.btn-secondary:hover::after { transform: translateX(2px); }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    background: rgba(17, 17, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--accent);
}

.nav-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo .logo-accent {
    color: var(--accent);
    font-size: 0.7em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

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

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    transition: background var(--transition), color var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--bg);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero — Home ── */
.hero {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--bg);
    isolation: isolate;
    display: flex;
    align-items: center;
}

/* Photo occupies the right ~65% of the hero so the image renders close to
   its natural scale (no aggressive cover-zoom). Left 35% is solid bg for
   the type. */
.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

/* Soft fade from the solid dark zone into the photo, so the boundary is
   gradual rather than a hard edge */
.hero-photo-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14,13,12,0.95) 0%, rgba(14,13,12,0.55) 18%, rgba(14,13,12,0.18) 38%, rgba(14,13,12,0) 60%),
        linear-gradient(180deg, rgba(14,13,12,0.35) 0%, rgba(14,13,12,0) 25%, rgba(14,13,12,0) 70%, rgba(14,13,12,0.55) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
}

.hero-content {
    max-width: 580px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}

/* Stats overlay — bottom-right of the hero, sitting above the photo with
   a thin gold rule for separation */
.hero-stats {
    position: absolute;
    z-index: 2;
    right: var(--space-lg);
    bottom: var(--space-xl);
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-md);
    padding-left: var(--space-xl);
    border-top: 1px solid rgba(196, 162, 102, 0.5);
    min-width: 360px;
    justify-content: flex-end;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-lg) var(--space-xl);
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-hero .section-num {
    margin-bottom: var(--space-sm);
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-hero p {
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── Services Section ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.service-card {
    background: var(--bg-surface);
    padding: var(--space-lg);
    border-top: 2px solid var(--accent);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.service-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
    display: block;
}

/* ── Services Page — Detailed ── */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
}

.service-detail-content .service-price {
    margin-bottom: var(--space-md);
}

.service-detail-content p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-detail-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ── Process ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.process-step {
    position: relative;
    padding: var(--space-lg) var(--space-md);
}

.process-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── About ── */
.about-split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* About Page — Story */
.story-section {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.story-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.story-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.story-text p {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-sm);
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--text);
}

.team-member p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 auto;
}

/* ── Credentials ── */
.credentials {
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.credentials h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.credentials p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
}

.credential-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.credential-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 10px 20px;
    border: 1px solid var(--border);
}

/* ── Gallery ── */
.gallery-intro {
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-lg);
}

.gallery-intro p {
    margin: 0 auto;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gallery-grid figure {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

.gallery-grid figure:hover img {
    transform: scale(1.03);
}

.gallery-grid figcaption {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: var(--space-sm) 0;
    text-transform: lowercase;
}

/* Gallery preview (home page — 4 cols) */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gallery-preview figure {
    overflow: hidden;
}

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

.gallery-preview figure:hover img {
    transform: scale(1.03);
}

.gallery-preview figcaption {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: var(--space-xs) 0;
    text-transform: lowercase;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.testimonial-card {
    padding: var(--space-lg);
    border-left: 2px solid var(--accent);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 4rem;
    color: var(--accent);
    line-height: 0.8;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

/* ── CTA Banner ── */
.cta-banner {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(201, 169, 110, 0.08) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: var(--space-xl) 0 0;
}

.cta-banner h2 {
    margin-bottom: var(--space-sm);
}

.cta-banner p {
    margin: 0 auto var(--space-lg);
    font-size: 1.05rem;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-lg);
}

.contact-detail {
    margin-bottom: var(--space-md);
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
    display: block;
}

.contact-detail p,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-detail a:hover { color: var(--accent); }

/* ── Contact Form ── */
.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.contact-form .form-group {
    margin-bottom: var(--space-md);
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: border-color var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
}

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

.contact-form .btn-primary { width: 100%; text-align: center; }

.form-status {
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    color: var(--accent);
}

.form-status.error { color: #e05555; }

/* ── Areas ── */
.areas-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
}

.areas-section h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
}

.areas-section > p {
    margin: 0 auto var(--space-lg);
}

.areas-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.areas-pills span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 8px 18px;
    border: 1px solid var(--border);
    transition: border-color var(--transition), color var(--transition);
}

.areas-pills span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ── FAQ ── */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.faq-section h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary { color: var(--accent); }

.faq-answer {
    padding: 0 0 var(--space-md);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 640px;
}

/* ── Why Choose Us ── */
.why-section {
    background: var(--bg-surface);
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.why-section h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.why-section p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.9;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition);
}
.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.footer-copy a {
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.footer-copy a:hover { border-bottom-color: var(--accent); }

.footer-sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* ── Scroll Reveal (fi = fade in) ── */
.fi {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fi.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safety net: if user prefers reduced motion, skip animations */
@media (prefers-reduced-motion: reduce) {
    .fi { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Fallback: if IO doesn't fire within 3s, reveal everything */
.fi-fallback-active .fi { opacity: 1 !important; transform: none !important; }

/* stagger children */
.fi-delay-1 { transition-delay: 0.1s; }
.fi-delay-2 { transition-delay: 0.2s; }
.fi-delay-3 { transition-delay: 0.3s; }
.fi-delay-4 { transition-delay: 0.4s; }

/* ── Section Header (centred) ── */
.section-header {
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto var(--space-lg);
    padding: 0 var(--space-lg);
}

.section-header .section-num {
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── Responsive — Tablet ── */
@media (max-width: 1024px) {
    .hero { min-height: 88vh; }
    .hero-photo img { object-position: 60% 50%; }
    .hero-photo-mask {
        background:
            linear-gradient(180deg, rgba(14,13,12,0.6) 0%, rgba(14,13,12,0.4) 45%, rgba(14,13,12,0.85) 100%),
            linear-gradient(90deg, rgba(14,13,12,0.6) 0%, rgba(14,13,12,0.25) 60%, rgba(14,13,12,0) 100%);
    }
    .hero-stats { right: var(--space-md); bottom: var(--space-lg); min-width: 0; gap: var(--space-lg); }
    .hero-stat-num { font-size: 1.9rem; }

    .service-detail {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-detail:nth-child(even) { direction: ltr; }

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

    .story-section { grid-template-columns: 1fr; }

    .story-image { order: -1; }
    .story-image img { height: 360px; }

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

@media (max-width: 768px) {
    :root {
        --space-2xl: 56px;
        --space-3xl: 80px;
    }

    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .hero-stats {
        position: static;
        margin-top: var(--space-lg);
        padding-left: 0;
        gap: var(--space-md);
        min-width: 0;
        justify-content: flex-start;
        border-top-color: rgba(196, 162, 102, 0.35);
    }

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

    .about-split {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-image img { height: 320px; }

    .team-grid { grid-template-columns: 1fr; gap: var(--space-md); }

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

    .gallery-preview { grid-template-columns: 1fr 1fr; }

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

    .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

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

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 24px;
        --space-2xl: 40px;
        --space-3xl: 56px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .gallery-preview { grid-template-columns: 1fr; }

    .hero-ctas { flex-direction: column; align-items: flex-start; }

    .credential-badges { gap: var(--space-sm); }
    .credential-badge { font-size: 0.65rem; padding: 8px 14px; }
}

/* ── Print ── */
@media print {
    body { background: #fff; color: #111; }
    .nav, .nav-hamburger, .cta-banner, .contact-form { display: none; }
    .footer { border-top: 1px solid #ccc; }
    a { color: #111; }
    .service-card { border-top-color: #999; }
    .testimonial-card { border-left-color: #999; }
}

/* ── Individual Service Pages ── */
.service-single {
    padding: 0;
}
.service-single .service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-2xl);
}
.service-single .service-detail-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}
.service-single .service-detail-content h2 {
    font-size: 1.6rem;
    margin: var(--space-lg) 0 var(--space-md);
}
.service-single .service-includes {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}
.service-single .service-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-single .service-includes li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.service-price-note {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-surface);
    border-left: 3px solid var(--accent);
}
.price-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}
.service-ctas {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}
.service-single .service-detail-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}
.service-single .service-detail-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
    .service-single .service-detail-grid { grid-template-columns: 1fr; }
    .service-single .service-detail-image { order: -1; position: static; }
    .service-single .service-detail-image img { min-height: 250px; }
}
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════
   WHITELABEL MODULES — styles appended for
   FAQ (dynamic), Trust Badges, Gallery, Before/After,
   Location + Hours, Service Area, Google Reviews
   ════════════════════════════════════════════════ */

/* ── FAQ dynamic answer styling (faq.js outputs div.faq-answer) ── */
.faq-list .faq-answer {
    padding: 0 0 var(--space-md, 24px);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted, #999);
}

/* ── Trust Badges Strip ── */
.trust-badges-section {
    padding: var(--space-lg, 40px) var(--space-md, 24px);
    background: var(--bg-alt, #0a0a0a);
    border-top: 1px solid var(--border, #222);
    border-bottom: 1px solid var(--border, #222);
}
.trust-badges-strip {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md, 24px);
    align-items: center;
    justify-content: center;
}
.tb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    min-height: 72px;
    min-width: 140px;
    border: 1px solid var(--border, #222);
    background: var(--bg, #111);
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.tb-link { text-decoration: none; color: inherit; }
.tb-link:hover .tb-item {
    border-color: var(--accent, #e8a87c);
    transform: translateY(-1px);
}
.tb-item img {
    max-height: 44px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.tb-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text, #e5e5e5);
    text-align: center;
    letter-spacing: 0.02em;
}
.tb-cert {
    font-size: 0.75rem;
    color: var(--muted, #999);
    font-variant-numeric: tabular-nums;
}
@media (max-width: 480px) {
    .trust-badges-strip { gap: 12px; }
    .tb-item { min-width: 120px; padding: 12px 16px; }
}

/* ── Gallery (dynamic) ── */
.gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 auto var(--space-lg, 40px);
    padding: 0 var(--space-md, 24px);
    max-width: 1200px;
    justify-content: center;
}
.gallery-filter {
    background: transparent;
    border: 1px solid var(--border, #222);
    color: var(--muted, #999);
    padding: 8px 18px;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: all 0.15s ease;
}
.gallery-filter:hover { color: var(--text, #e5e5e5); border-color: var(--accent, #e8a87c); }
.gallery-filter.active {
    background: var(--text, #e5e5e5);
    color: var(--bg, #0a0a0a);
    border-color: var(--text, #e5e5e5);
}
.gallery-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 0 var(--space-md, 24px) var(--space-lg, 40px);
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid-dynamic .gallery-item {
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background: var(--bg-alt, #111);
    transition: transform 0.2s ease;
}
.gallery-grid-dynamic .gallery-item:hover { transform: scale(1.02); }
.gallery-grid-dynamic .gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}
.gallery-grid-dynamic .gallery-item figcaption {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--muted, #999);
    font-weight: 500;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox .gl-figure {
    margin: 0;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.gallery-lightbox .gl-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.gallery-lightbox .gl-cap {
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
}
.gallery-lightbox button {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.gallery-lightbox button:hover { background: rgba(255, 255, 255, 0.2); }
.gallery-lightbox .gl-close { top: 24px; right: 24px; }
.gallery-lightbox .gl-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox .gl-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── Before/After slider ── */
.before-after-section {
    padding: var(--space-lg, 40px) var(--space-md, 24px);
}

/* Scoped overrides for the static (hardcoded) slider — uses clip-path on the
   before image so it stays at slider-width regardless of drag position. */
.ba-static {
    padding: var(--space-3xl) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.ba-static .ba-section-head {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.ba-static .ba-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.ba-static .ba-section-head h2 { margin-bottom: var(--space-sm); }
.ba-static .ba-section-head p { color: var(--text-muted); max-width: 56ch; margin: 0 auto; }

.ba-static .ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(520px, 100%), 1fr));
    max-width: 1400px;
    margin: 0 auto;
    gap: var(--space-lg);
}

.ba-static .ba-slider {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    touch-action: pan-y;
    background: #000;
    border-radius: 2px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.ba-static .ba-after,
.ba-static .ba-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.ba-static .ba-before {
    clip-path: inset(0 calc(100% - var(--ba-pct, 50%)) 0 0);
    -webkit-clip-path: inset(0 calc(100% - var(--ba-pct, 50%)) 0 0);
    transition: clip-path 0.05s linear;
}

.ba-static .ba-handle {
    position: absolute;
    top: 0;
    left: var(--ba-pct, 50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
}

.ba-static .ba-handle-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.ba-static .ba-handle-knob::before,
.ba-static .ba-handle-knob::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
.ba-static .ba-handle-knob::before {
    left: 12px;
    border-left: 2px solid #fff;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
.ba-static .ba-handle-knob::after {
    right: 12px;
    border-right: 2px solid #fff;
    border-top: none;
    border-bottom: 2px solid #fff;
    border-left: none;
    transform: translateY(-50%) rotate(-45deg);
}

.ba-static .ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    background: rgba(14, 13, 12, 0.78);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ba-static .ba-label-before { left: 16px; }
.ba-static .ba-label-after { right: 16px; }

.ba-static .ba-caption {
    margin-top: var(--space-md);
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.ba-pair { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.ba-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    touch-action: pan-y;
    background: #000;
}
.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
.ba-before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 2px solid #fff;
}
.ba-before-wrap img {
    width: 200%;
    /* compensate for container shrink so photo aligns */
}
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    pointer-events: none;
    transform: translateX(-50%);
}
.ba-handle-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.ba-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }
.ba-caption {
    font-size: 0.9rem;
    color: var(--muted, #999);
    font-weight: 500;
}

/* ── Location & Hours ── */
.location-hours-section {
    padding: var(--space-lg, 40px) var(--space-md, 24px);
    background: var(--bg-alt, #0a0a0a);
}
.lh-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.lh-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg, #111);
    border: 1px solid var(--border, #222);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.lh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f55;
}
.lh-open .lh-dot { background: #5f5; box-shadow: 0 0 8px #5f5; }
.lh-address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text, #e5e5e5);
}
.lh-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.lh-hours-table th, .lh-hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border, #222);
    text-align: left;
}
.lh-hours-table th { font-weight: 500; color: var(--muted, #999); }
.lh-hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.lh-hours-table .lh-row-today th,
.lh-hours-table .lh-row-today td {
    color: var(--accent, #e8a87c);
    font-weight: 600;
}
.lh-map {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg, #111);
}
.lh-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.2) contrast(0.95);
}
@media (max-width: 768px) {
    .lh-inner { grid-template-columns: 1fr; }
}

/* ── Service Area ── */
.service-area-section {
    padding: var(--space-md, 24px);
    background: var(--bg, #111);
    border-top: 1px solid var(--border, #222);
}
.sa-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.sa-intro { color: var(--muted, #999); }
.sa-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sa-item {
    padding: 4px 12px;
    background: var(--bg-alt, #0a0a0a);
    border: 1px solid var(--border, #222);
    color: var(--text, #e5e5e5);
    font-size: 0.85rem;
}

/* ── Google Reviews ── */
.google-reviews-section {
    padding: var(--space-lg, 40px) var(--space-md, 24px);
}
.gr-inner { max-width: 1200px; margin: 0 auto; }
.gr-header {
    text-align: center;
    margin-bottom: var(--space-lg, 40px);
}
.gr-rating-block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.gr-rating-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text, #e5e5e5);
}
.gr-rating-stars { font-size: 1.3rem; color: #fbbc04; }
.gr-rating-count {
    font-size: 0.85rem;
    color: var(--muted, #999);
}
.gr-star { display: inline-block; }
.gr-star-full, .gr-star-half { color: #fbbc04; }
.gr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.gr-review {
    background: var(--bg-alt, #0a0a0a);
    border: 1px solid var(--border, #222);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gr-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gr-avatar, .gr-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    background: var(--bg, #111);
    color: var(--muted, #999);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.gr-review-meta { flex: 1; min-width: 0; }
.gr-review-name { font-weight: 600; font-size: 0.95rem; color: var(--text, #e5e5e5); }
.gr-review-stars { font-size: 0.85rem; color: #fbbc04; line-height: 1; margin: 2px 0; }
.gr-review-time { font-size: 0.75rem; color: var(--muted, #999); }
.gr-review-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted, #ccc);
}
.lh-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text, #e5e5e5);
    background: linear-gradient(135deg, var(--bg-alt, #0a0a0a) 0%, var(--bg, #111) 100%);
    border: 1px solid var(--border, #222);
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.lh-map-link:hover { border-color: var(--accent, #e8a87c); transform: translateY(-1px); }
.lh-map-inner { display: flex; align-items: center; gap: 16px; padding: 20px 24px; }
.lh-map-icon { color: var(--accent, #e8a87c); flex-shrink: 0; }
.lh-map-text { display: flex; flex-direction: column; gap: 2px; }
.lh-map-text strong { font-size: 1rem; font-weight: 600; }
.lh-map-text span { font-size: 0.85rem; color: var(--muted, #999); }

/* Upgraded trust badge styling (overrides earlier block) */
.tb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 24px;
    min-height: 120px;
    min-width: 160px;
    max-width: 220px;
    border: 1px solid var(--border, #222);
    background: var(--bg, #111);
    position: relative;
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.tb-item::before, .tb-item::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: var(--accent, #e8a87c);
    opacity: 0.5;
}
.tb-item::before { top: 6px; left: 6px; box-shadow: 0 9px 0 -1px var(--accent, #e8a87c); }
.tb-item::after  { bottom: 6px; right: 6px; box-shadow: 0 -9px 0 -1px var(--accent, #e8a87c); }
.tb-link:hover .tb-item { border-color: var(--accent, #e8a87c); transform: translateY(-2px); }
.tb-seal { width: 36px; height: 36px; color: var(--accent, #e8a87c); flex-shrink: 0; }
.tb-img { max-height: 56px; max-width: 140px; width: auto; height: auto; object-fit: contain; }
.tb-label { font-size: 0.88rem; font-weight: 600; color: var(--text, #e5e5e5); text-align: center; letter-spacing: 0.03em; line-height: 1.3; }
.tb-label-with-img { font-size: 0.75rem; font-weight: 500; color: var(--muted, #999); letter-spacing: 0.05em; text-transform: uppercase; }
.tb-cert { font-size: 0.72rem; color: var(--muted, #999); font-variant-numeric: tabular-nums; letter-spacing: 0.05em; padding-top: 4px; border-top: 1px solid var(--border, #222); width: 80%; text-align: center; }

/* Uniform sizing for trust badges (final) */
.trust-badges-strip {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    justify-items: stretch;
    align-items: stretch;
}
.tb-link { display: block; height: 100%; text-decoration: none; color: inherit; }
.tb-item {
    height: 150px;
    width: 100%;
    min-height: 0;
    min-width: 0;
    max-width: none;
    padding: 20px 16px;
}

/* Semantic footer address */
.footer-address {
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted, #999);
    padding: 14px 0 10px;
    letter-spacing: 0.01em;
}
.footer-address a {
    color: var(--text, #e5e5e5);
    text-decoration: none;
    font-weight: 500;
}
.footer-address a:hover {
    color: var(--accent, #e8a87c);
}
