/* ============================================================
   THE DUO HAIR & BEAUTY — Westfield, Norfolk
   Stylesheet
   ------------------------------------------------------------
   Original work, written for The Duo. No third-party CSS
   frameworks, no webfonts, no third-party requests.
   Display type: Georgia serif stack (installed locally, so
   there is nothing to license and nothing is sent to Google).
   Body type: system UI sans stack.
   ============================================================ */

/* ------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------ */
:root {
    /* Ink / neutrals */
    --ink: #241e21;
    --ink-soft: #332b2f;
    --ink-800: #2c2428;
    --body: #4e4549;
    --muted: #7a7075;
    --line: #e9e2dd;
    --line-soft: #f2ece8;

    /* Surfaces */
    --white: #ffffff;
    --cream: #fbf8f6;
    --sand: #f6f1ed;
    --sand-deep: #efe7e1;

    /* Accent — warm rose-taupe */
    --accent: #b6806c;
    --accent-dark: #945f4c;
    --accent-soft: #e7cdc1;
    --accent-wash: #fbf1ec;

    /* Support colours (used sparingly) */
    --success: #2f6b4f;
    --success-bg: #eef6f1;
    --success-line: #cfe4d8;
    --danger: #a33a3a;
    --danger-bg: #fbf0ef;
    --danger-line: #f0d4d2;

    /* Type */
    --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Shape & depth */
    --radius: 6px;
    --radius-lg: 14px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 2px rgba(36, 30, 33, 0.04);
    --shadow-sm: 0 2px 10px rgba(36, 30, 33, 0.05);
    --shadow-md: 0 10px 30px rgba(36, 30, 33, 0.08);
    --shadow-lg: 0 24px 60px rgba(36, 30, 33, 0.12);

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition: all 0.35s var(--ease);
    --transition-fast: all 0.2s ease;

    /* Layout */
    --topbar-h: 34px;
    --header-h: 66px;
}

/* ------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar-h) + var(--header-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img { height: auto; }

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

ul,
ol { list-style: none; }

strong { color: var(--ink); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: 0; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ------------------------------------------------------------
   3. Accessibility helpers
   ------------------------------------------------------------ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    background: var(--ink);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.skip-link:focus {
    top: 0.75rem;
}

/* ------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 3rem; }
}

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section { padding: 5.5rem 0; }
}

.section-tight { padding: 3rem 0; }

.section-alt { background: var(--cream); }
.section-sand { background: var(--sand); }

.section-dark {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-dark p { color: rgba(255, 255, 255, 0.7); }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ------------------------------------------------------------
   5. Typography helpers
   ------------------------------------------------------------ */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.9rem;
}

.section-dark .eyebrow { color: var(--accent-soft); }

.lead {
    font-size: clamp(1.02rem, 1.6vw, 1.15rem);
    line-height: 1.85;
    color: var(--body);
}

.rule {
    width: 44px;
    height: 2px;
    background: var(--accent);
    margin: 1.25rem 0 0;
}

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

/* ------------------------------------------------------------
   6. Buttons
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-dark:hover {
    background: var(--ink-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-wash);
}

.btn-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-light:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------
   7. Top bar
   ------------------------------------------------------------ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    letter-spacing: 0.03em;
}

.top-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 1.25rem;
    min-height: var(--topbar-h);
    padding: 0.35rem 1.25rem;
    text-align: center;
}

.top-bar a { color: var(--accent-soft); }
.top-bar a:hover { color: var(--white); }

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-item svg { color: var(--accent); }

@media (min-width: 768px) {
    .top-bar-inner { justify-content: space-between; }
}

.top-bar-note { color: rgba(255, 255, 255, 0.5); }

@media (max-width: 767px) {
    .top-bar-note { display: none; }
}

/* ------------------------------------------------------------
   8. Header & navigation
   ------------------------------------------------------------ */
.header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

/* Tuck the header down slightly once you're reading, to give space back to the page */
.header.scrolled .nav {
    min-height: 54px;
    padding: 0.3rem 0;
}

.header.scrolled .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
    padding: 0.55rem 0;
    transition: min-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    transition: var(--transition);
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--accent-soft);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.logo:hover .logo-mark { background: var(--accent-dark); color: var(--white); }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.25rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.15rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    position: relative;
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--body);
    border-radius: var(--radius);
}

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

.nav-links a.active {
    color: var(--ink);
    font-weight: 600;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.15rem;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.6rem;
}

@media (min-width: 1024px) {
    .nav-cta { display: flex; }
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
}

.nav-phone svg { color: var(--accent); }
.nav-phone:hover { color: var(--accent-dark); }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
}

@media (min-width: 1024px) {
    .hamburger { display: none; }
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: var(--transition);
}

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -105%;
    width: 100%;
    max-width: 360px;
    height: 100%;
    z-index: 1003;
    background: var(--white);
    padding: 5.5rem 1.75rem 2rem;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transition: right 0.45s var(--ease);
}

.mobile-menu.active { right: 0; }

.mobile-menu a {
    display: block;
    padding: 0.95rem 0.5rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--accent-dark);
    background: var(--accent-wash);
    border-radius: var(--radius);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1002;
    background: rgba(36, 30, 33, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------------------
   9. Hero
   ------------------------------------------------------------ */
.hero {
    position: relative;
    padding: calc(var(--topbar-h) + var(--header-h) + 3rem) 0 3.5rem;
    background:
        radial-gradient(ellipse 60% 55% at 78% 12%, rgba(182, 128, 108, 0.32) 0%, transparent 62%),
        radial-gradient(ellipse 50% 50% at 8% 88%, rgba(231, 205, 193, 0.18) 0%, transparent 60%),
        linear-gradient(165deg, #241e21 0%, #2e262a 52%, #3a3034 100%);
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { padding: calc(var(--topbar-h) + var(--header-h) + 4.5rem) 0 5rem; }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.75rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 4rem;
    }
}

.hero-copy { max-width: 620px; }

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.1rem;
}

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

.hero-sub {
    font-size: clamp(1rem, 1.7vw, 1.14rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.hero-divider {
    width: 56px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.75rem;
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
}

.hero-fact svg { color: var(--accent); flex-shrink: 0; }

.hero-media {
    position: relative;
}

.hero-media .photo-frame { height: 100%; }

.hero-media::before {
    content: "";
    position: absolute;
    inset: -14px -14px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Hero entrance — the copy rises and sharpens, the artwork settles in after it */
.hero-copy > * {
    animation: heroRise 0.85s var(--ease) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.23s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.41s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.5s; }

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(22px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

.hero-media {
    animation: heroSettle 1.1s var(--ease) 0.3s both;
}

@keyframes heroSettle {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Page hero: the heading drifts up a little more slowly than the rest */
.page-hero .eyebrow,
.page-hero h1,
.page-hero p,
.page-hero .breadcrumbs {
    animation: heroRise 0.75s var(--ease) both;
}

.page-hero h1 { animation-delay: 0.08s; }
.page-hero p { animation-delay: 0.16s; }
.page-hero .breadcrumbs { animation-delay: 0.24s; }

/* Photo frames — built to hold the salon's own photographs */
.photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--sand-deep);
    box-shadow: var(--shadow-md);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--ease);
}

.photo-frame:hover img { transform: scale(1.035); }

/* Parallax elements are moved a few pixels by JavaScript as you scroll */
.parallax { will-change: transform; }

.photo-frame--portrait { aspect-ratio: 4 / 5; }
.photo-frame--landscape { aspect-ratio: 4 / 3; }
.photo-frame--square { aspect-ratio: 1 / 1; }

/* ------------------------------------------------------------
   10. Scroll progress bar & service marquee
   ------------------------------------------------------------ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
}

.marquee {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.05rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 38s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-group span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
    padding: 0 1.4rem;
}

.marquee-group .marquee-dot {
    width: 5px;
    height: 5px;
    padding: 0;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   10b. Micro-interactions
   ------------------------------------------------------------ */
.card-icon svg,
.pillar-icon svg {
    transition: transform 0.5s var(--ease);
}

.card:hover .card-icon svg { transform: rotate(-8deg) scale(1.06); }
.pillar:hover .pillar-icon svg { transform: translateY(-2px) scale(1.06); }

.pillar { transition: var(--transition); }
.pillar:hover { transform: translateY(-3px); }

.team-card .team-media img,
.offer-card,
.hours-card,
.info-card {
    transition: var(--transition);
}

.team-card:hover .team-media img { transform: scale(1.03); }
.team-media { overflow: hidden; }

.btn-primary:hover svg,
.btn-dark:hover svg { transform: translateX(3px); }

.btn svg { transition: transform 0.35s var(--ease); }

/* ------------------------------------------------------------
   11. Section headings
   ------------------------------------------------------------ */
.section-head {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-head h2 { margin-bottom: 1rem; }

.section-head p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.section-head--left {
    margin-left: 0;
    text-align: left;
}

@media (min-width: 768px) {
    .section-head { margin-bottom: 3.5rem; }
}

/* ------------------------------------------------------------
   12. Pillars / feature strip
   ------------------------------------------------------------ */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pillars { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1000px) {
    .pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-soft);
}

.pillar h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.pillar p {
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
}

/* Light variant (used on white backgrounds) */
.pillars--light .pillar-icon {
    background: var(--accent-wash);
    color: var(--accent-dark);
}

.pillars--light .pillar h3 { color: var(--ink); }
.pillars--light .pillar p { color: var(--muted); }

/* ------------------------------------------------------------
   13. Cards
   ------------------------------------------------------------ */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .cards-3 { grid-template-columns: repeat(3, 1fr); }
    .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-wash);
    color: var(--accent-dark);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--accent);
    color: var(--white);
}

.card h3 { margin-bottom: 0.6rem; }

.card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.card-link:hover { gap: 0.7rem; color: var(--ink); }

.card-price {
    display: block;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
}

/* ------------------------------------------------------------
   14. Split (text + media)
   ------------------------------------------------------------ */
.split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 860px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .split-reverse .split-media { order: -1; }
}

.split-copy h2 { margin-bottom: 1.25rem; }
.split-copy p { color: var(--muted); line-height: 1.85; }

/* ------------------------------------------------------------
   15. Check list
   ------------------------------------------------------------ */
.check-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.75rem 0;
}

.check-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--body);
}

.check-list li::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    border-radius: 50%;
    background: var(--accent-wash)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23945f4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
        center / 12px 12px no-repeat;
    border: 1px solid var(--accent-soft);
}

.section-dark .check-list li { color: rgba(255, 255, 255, 0.75); }

/* ------------------------------------------------------------
   16. Price list
   ------------------------------------------------------------ */
.price-block + .price-block { margin-top: 3rem; }

.price-cat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.price-cat h3 {
    font-size: 1.25rem;
    white-space: nowrap;
}

.price-cat::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table caption {
    caption-side: top;
    text-align: left;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 0.75rem;
}

.price-table th {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid var(--line);
}

.price-table th:last-child,
.price-table td:last-child { text-align: right; }

.price-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid var(--line-soft);
    vertical-align: top;
}

.price-table tbody tr { transition: var(--transition-fast); }

/* Rows fade in one after another, but never move — animating a table row's
   transform is unreliable across browsers. */
.price-table tbody tr.animate-in {
    transform: none;
}
.price-table tbody tr:hover { background: var(--accent-wash); }

.price-name {
    font-weight: 600;
    color: var(--ink);
    display: block;
}

.price-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 0.2rem;
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--accent-dark);
    white-space: nowrap;
}

.price-note {
    margin-top: 1.5rem;
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 639px) {
    .price-table th:nth-child(2),
    .price-table td:nth-child(2) { display: none; }

    .price-table td { padding: 0.9rem 0.5rem; }
}

/* ------------------------------------------------------------
   17. Gallery
   ------------------------------------------------------------ */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 560px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--sand-deep);
    cursor: zoom-in;
    border: 1px solid var(--line);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.1rem 0.9rem;
    background: linear-gradient(to top, rgba(36, 30, 33, 0.82), transparent);
    color: var(--white);
    font-size: 0.84rem;
    line-height: 1.5;
    transform: translateY(6px);
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item--wide { grid-column: span 1; }

@media (min-width: 1000px) {
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--wide img { aspect-ratio: 8 / 3.9; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(24, 20, 22, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: min(100%, 1000px);
    max-height: 82vh;
    width: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: scale(0.96);
    transition: transform 0.4s var(--ease);
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--ink);
}

.lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    text-align: center;
    width: calc(100% - 3rem);
}

/* ------------------------------------------------------------
   18. Team
   ------------------------------------------------------------ */
.team {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 720px) {
    .team { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.team-media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.team-body { padding: 1.75rem; }

.team-role {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.team-body h3 { margin-bottom: 0.75rem; }

.team-body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--body);
    background: var(--cream);
}

/* ------------------------------------------------------------
   19. Offers
   ------------------------------------------------------------ */
.offers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 720px) {
    .offers { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1040px) {
    .offers-3 { grid-template-columns: repeat(3, 1fr); }
}

.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 1.9rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.offer-card--feature {
    background: var(--ink);
    border-color: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.offer-card--feature h3 { color: var(--white); }
.offer-card--feature p { color: rgba(255, 255, 255, 0.68); }

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offer-flag {
    align-self: flex-start;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    background: var(--accent-wash);
    color: var(--accent-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.offer-card--feature .offer-flag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-soft);
}

.offer-card h3 { margin-bottom: 0.75rem; }

.offer-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
}

.offer-price {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.3;
}

.offer-card--feature .offer-price {
    border-top-color: rgba(255, 255, 255, 0.14);
    color: var(--accent-soft);
}

.offer-price small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 0.35rem;
}

.offer-card--feature .offer-price small { color: rgba(255, 255, 255, 0.55); }

/* ------------------------------------------------------------
   20. Contact
   ------------------------------------------------------------ */
.contact-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1.25fr 1fr; gap: 3.5rem; }
}

.form-card {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
    .form-card { padding: 2.5rem; }
}

.form-card h2 { margin-bottom: 0.6rem; }

.form-card > p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    gap: 1.1rem;
}

@media (min-width: 560px) {
    .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.form-group label .req { color: var(--accent-dark); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #a89e9f; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(182, 128, 108, 0.14);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin: 0.5rem 0 1.5rem;
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--body);
}

.consent input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    accent-color: var(--accent-dark);
}

.consent a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.alert svg { flex-shrink: 0; margin-top: 0.15rem; }
.alert p { margin: 0; font-weight: 400; }

.alert-success {
    background: var(--success-bg);
    border: 1px solid var(--success-line);
    color: var(--success);
}

.alert-error {
    background: var(--danger-bg);
    border: 1px solid var(--danger-line);
    color: var(--danger);
}

/* Contact aside */
.contact-aside {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

@media (min-width: 900px) {
    .contact-aside { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 24px); }
}

.info-card {
    padding: 1.75rem;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
}

.info-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
}

.info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    line-height: 1.65;
}

.info-item:first-of-type { border-top: none; padding-top: 0; }

.info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: var(--accent-soft);
}

.info-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
}

.info-value { color: var(--white); }
.info-value a { color: var(--white); }
.info-value a:hover { color: var(--accent-soft); }

.hours-card {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.hours-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hours-list { display: grid; }

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.88rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { color: var(--ink); font-weight: 600; }

.hours-time { color: var(--muted); }

.hours-time.is-closed { color: var(--muted); opacity: 0.7; }

/* Day names shouldn't wrap away from their times on a narrow phone */
@media (max-width: 420px) {
    .hours-row { font-size: 0.84rem; }
    .hours-day { flex: 0 0 auto; }
}

/* Location panel (no third-party map embed) */
.map-card {
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

@media (min-width: 760px) {
    .map-card { grid-template-columns: 1fr 1fr; }
}

/* Click-to-load map: the poster is shown until the visitor asks for the map */
.map-embed {
    position: relative;
    min-height: 300px;
    background:
        radial-gradient(circle at 30% 28%, rgba(182, 128, 108, 0.34) 0%, transparent 55%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 26px),
        linear-gradient(150deg, #2c2428, #3c3236);
}

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

.map-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 2rem 1.75rem;
    text-align: center;
    color: var(--accent-soft);
}

.map-poster-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin: 0.35rem 0 0;
}

.map-poster-note {
    max-width: 34ch;
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 0.85rem;
}

.map-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.map-body h3 { font-size: 1.15rem; }

.map-body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* ------------------------------------------------------------
   21. Quote / testimonial (only enable with real reviews)
   ------------------------------------------------------------ */
.quote-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

.quote-box blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.quote-box cite {
    font-style: normal;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

/* ------------------------------------------------------------
   22. CTA band
   ------------------------------------------------------------ */
.cta-section {
    background:
        radial-gradient(ellipse 55% 60% at 82% 20%, rgba(182, 128, 108, 0.28) 0%, transparent 65%),
        linear-gradient(160deg, #241e21, #342b2f);
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.cta-inner { max-width: 660px; margin: 0 auto; }

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.02rem;
    line-height: 1.85;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ------------------------------------------------------------
   23. Page hero (inner pages)
   ------------------------------------------------------------ */
.page-hero {
    padding: calc(var(--topbar-h) + var(--header-h) + 2.75rem) 0 3rem;
    background:
        radial-gradient(ellipse 60% 70% at 85% 0%, rgba(182, 128, 108, 0.26) 0%, transparent 60%),
        linear-gradient(160deg, #241e21, #332b2f);
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero { padding: calc(var(--topbar-h) + var(--header-h) + 3.75rem) 0 4rem; }
}

.page-hero h1 { color: var(--white); margin-bottom: 0.9rem; }

.page-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: var(--accent-soft); }

/* ------------------------------------------------------------
   24. Legal / prose pages
   ------------------------------------------------------------ */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    margin: 2.75rem 0 1rem;
}

.prose h2:first-of-type { margin-top: 0; }

.prose h3 {
    font-size: 1.1rem;
    margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
    color: var(--body);
    line-height: 1.85;
}

.prose ul {
    list-style: disc;
    padding-left: 1.35rem;
    margin: 1rem 0 1.5rem;
    color: var(--body);
}

.prose ul li { margin-bottom: 0.5rem; }

.prose a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose a:hover { color: var(--ink); }

.prose-meta {
    font-size: 0.84rem;
    color: var(--muted);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2rem;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.prose th,
.prose td {
    padding: 0.85rem 0.75rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.prose th {
    background: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ------------------------------------------------------------
   25. Footer
   ------------------------------------------------------------ */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 3.75rem;
}

.footer-grid {
    display: grid;
    gap: 2.25rem;
    padding-bottom: 2.75rem;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; }
}

.footer h4 {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--white);
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.footer-brand .logo-mark { margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.45); }

.footer-about {
    margin: 1.1rem 0 1.5rem;
    font-size: 0.87rem;
    line-height: 1.8;
}

.footer-links a {
    display: block;
    padding: 0.32rem 0;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
    color: var(--accent-soft);
    padding-left: 0.4rem;
}

.footer-contact {
    display: grid;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.87rem;
    line-height: 1.65;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--accent);
}

.footer-contact-item a { color: rgba(255, 255, 255, 0.7); }
.footer-contact-item a:hover { color: var(--accent-soft); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (min-width: 900px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: center;
}

.footer-legal a { color: rgba(255, 255, 255, 0.55); }
.footer-legal a:hover { color: var(--accent-soft); }

/* ------------------------------------------------------------
   26. Sticky mobile bar & scroll-to-top
   ------------------------------------------------------------ */
.mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    gap: 0.6rem;
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(36, 30, 33, 0.1);
    transform: translateY(115%);
    transition: transform 0.4s var(--ease);
}

@media (min-width: 1024px) {
    .mobile-sticky-bar { display: none; }
}

.mobile-sticky-bar.visible { transform: translateY(0); }

.mobile-sticky-bar .btn {
    flex: 1;
    padding: 0.7rem 0.5rem;
    font-size: 0.72rem;
}

.scroll-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    z-index: 998;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

@media (max-width: 1023px) {
    .scroll-top { bottom: 5.75rem; }
}

.scroll-top.visible { opacity: 1; visibility: visible; }

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ------------------------------------------------------------
   27. Scroll animations
   ------------------------------------------------------------ */
.animate-in,
.animate-left,
.animate-right,
.animate-scale {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}

.animate-in { transform: translateY(24px); }
.animate-left { transform: translateX(-24px); }
.animate-right { transform: translateX(24px); }
.animate-scale { transform: scale(0.97); }

.animate-in.visible,
.animate-left.visible,
.animate-right.visible,
.animate-scale.visible {
    opacity: 1;
    transform: none;
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
    .animate-in,
    .animate-left,
    .animate-right,
    .animate-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-scroll svg,
    .marquee-track { animation: none !important; }

    .hero-copy > *,
    .hero-media,
    .page-hero .eyebrow,
    .page-hero h1,
    .page-hero p,
    .page-hero .breadcrumbs {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .parallax { transform: none !important; }

    .photo-frame:hover img,
    .gallery-item:hover img,
    .card:hover .card-icon svg,
    .pillar:hover .pillar-icon svg { transform: none !important; }
}

/* ------------------------------------------------------------
   28. Misc
   ------------------------------------------------------------ */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll svg { animation: bob 2.6s ease-in-out infinite; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.eyebrow-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.eyebrow-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.section-dark .eyebrow-divider::after { background: rgba(255, 255, 255, 0.15); }

/* 404 */
.error-code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 1;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Print — keeps the price list and contact details usable */
@media print {
    .top-bar,
    .header,
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-sticky-bar,
    .scroll-top,
    .hero-scroll,
    .cta-section { display: none !important; }

    body { color: #000; }
    .hero,
    .page-hero,
    .section-dark,
    .info-card { background: none !important; color: #000 !important; }
    .hero h1, .hero-sub, .page-hero h1, .info-card h3 { color: #000 !important; }
}
