/* ===== Design Tokens ===== */
:root {
    --copper: #d19886;
    --copper-light: #e3b3a3;
    --copper-dark: #b87a66;
    --copper-glow: rgba(209, 152, 134, 0.14);
    --copper-tint: #fbf1ec;
    --charcoal: #2a2a2a;
    --charcoal-light: #3d3d3d;
    --charcoal-muted: #5a5a5a;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --warm-white: #fdfcfa;
    --warm-gray: #e8e4de;
    --warm-gray-dark: #c4bfb6;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6560;
    --text-muted: #9b9590;
    --white: #ffffff;
    --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-variation-settings: "opsz" 14;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}
.btn-primary:hover {
    background: var(--copper-dark);
    border-color: var(--copper-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3);
}
.btn-primary:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
.btn-quiet {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    font-weight: 500;
}
.btn-quiet:hover {
    background: var(--text-primary);
    color: var(--cream);
    border-color: var(--text-primary);
}
.btn-link-quiet {
    display: inline-block;
    padding: 0;
    background: transparent;
    color: var(--text-primary);
    border: none;
    border-bottom: 1px solid var(--text-primary);
    border-radius: 0;
    padding-bottom: 2px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s var(--ease);
}
.btn-link-quiet:hover { opacity: 0.6; }
.btn-outline-copper {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--copper-light);
    border-radius: var(--radius);
    background: transparent;
    color: var(--copper);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}
.btn-outline-copper:hover {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-nav {
    background: var(--copper);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: var(--radius);
}
.btn-nav:hover { background: var(--copper-dark); }
.btn-nav-alt {
    background: transparent;
    color: var(--copper) !important;
    border: 1.5px solid var(--copper);
}
.btn-nav-alt:hover {
    background: var(--copper);
    color: var(--white) !important;
}
.btn-full { width: 100%; }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s var(--ease);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.logo-mark.light {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.btn-nav { color: var(--white) !important; }
.nav-links a.btn-nav:hover { color: var(--white) !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: stretch;
    background: var(--cream-dark);
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--cream-dark);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}
.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(26,26,26,0.62) 0%, rgba(26,26,26,0.38) 45%, rgba(26,26,26,0.12) 75%),
        linear-gradient(180deg, rgba(26,26,26,0.18) 0%, rgba(26,26,26,0.4) 70%, rgba(26,26,26,0.6) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 140px;
    padding-bottom: 80px;
    max-width: 760px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.hero h1 {
    font-family: var(--font-display);
    font-variation-settings: "opsz" 96, "wght" 400;
    font-size: clamp(2.4rem, 6.4vw, 4.8rem);
    font-weight: 400;
    line-height: 1.02;
    color: var(--cream);
    margin-bottom: 22px;
    letter-spacing: -0.025em;
}
.hero h1 em {
    font-style: italic;
    color: var(--cream);
    font-variation-settings: "opsz" 96, "wght" 400;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.55;
    font-weight: 400;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-cta .btn-quiet {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255,255,255,0.55);
}
.hero-cta .btn-quiet:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.85);
}
/* ===== Page marker ===== */
.page-marker {
    text-align: center;
    margin-top: 48px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.page-marker--light {
    color: rgba(255,255,255,0.75);
}
.hero .page-marker--light {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 2;
    margin-top: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

/* ===== Section Shared ===== */
.section { padding: clamp(80px, 12vw, 132px) 0; }
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header-left {
    text-align: left;
    margin: 0 0 56px;
    max-width: 720px;
}
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.section-tag-lg {
    font-family: var(--font-heading);
    font-variation-settings: "opsz" 72, "wght" 400;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.08;
    text-transform: none;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-variation-settings: "opsz" 72, "wght" 400;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    line-height: 1.08;
}
.section-title em {
    font-style: italic;
    font-variation-settings: "opsz" 72, "wght" 400;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}
.section-header-left .section-subtitle { margin: 0; }

/* ===== Why Section ===== */
.why-section { background: var(--warm-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-gray);
    transition: all 0.4s var(--ease);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-number {
    font-family: var(--font-heading);
    font-variation-settings: "opsz" 32;
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--text-primary);
    opacity: 0.18;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== Products ===== */
.products-section { background: var(--white); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--warm-gray);
    transition: all 0.4s var(--ease);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-image {
    aspect-ratio: 4 / 5;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.03); }
.product-info { padding: 28px; }
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.product-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.65;
}
.product-price {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.product-price strong {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.product-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== How It Works ===== */
.how-section { background: var(--cream); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.step-card {
    text-align: center;
    padding: 0 8px;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0 auto 18px;
    letter-spacing: 0.06em;
    display: block;
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    text-align: center;
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Design Assistance ===== */
.assistance-section { background: var(--cream-dark); }
.assistance-row { max-width: 720px; }
.assistance-text .section-title { margin-bottom: 18px; }
.assistance-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 580px;
}
.assistance-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.55;
}
.assistance-list li {
    padding-left: 18px;
    position: relative;
}
.assistance-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 1px;
    background: var(--text-muted);
}
.assistance-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Design Session Page ===== */
.ds-hero {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    text-align: center;
}
.ds-hero .hero-grain {
    position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
}
.ds-hero-content { position: relative; max-width: 780px; }
.ds-hero .hero-eyebrow { color: var(--copper); text-shadow: none; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.ds-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 14px 0 18px;
    color: var(--text-primary);
}
.ds-hero h1 em {
    font-style: italic;
    color: var(--copper);
}
.ds-hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 28px;
}

.ds-book-section {
    background: var(--cream);
}
.ds-book-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1040px;
}
@media (min-width: 860px) {
    .ds-book-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}
.ds-book-intro .section-title { margin-bottom: 14px; }
.ds-book-intro .section-subtitle { margin-bottom: 28px; }
.ds-expect-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 14px;
}
.ds-expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ds-expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.ds-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--copper-glow);
    color: var(--copper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}

.ds-form {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.ds-form-row { margin-bottom: 16px; }
.ds-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 520px) {
    .ds-form-row-2 { grid-template-columns: 1fr; }
}
.ds-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ds-form label > span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.ds-form label em {
    color: var(--copper);
    font-style: normal;
    margin-left: 2px;
}
.ds-form label small {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8rem;
}
.ds-form input[type="text"],
.ds-form input[type="tel"],
.ds-form input[type="email"],
.ds-form select,
.ds-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.ds-form textarea { resize: vertical; min-height: 96px; }
.ds-form input:focus,
.ds-form select:focus,
.ds-form textarea:focus {
    outline: none;
    border-color: var(--copper);
    background: #fff;
    box-shadow: 0 0 0 3px var(--copper-glow);
}
.ds-form-consent label {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.ds-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--copper);
}
.ds-form button[type="submit"] {
    width: 100%;
    margin-top: 8px;
}
.ds-form-msg {
    margin: 14px 0 0;
    font-size: 0.9rem;
    min-height: 1.2em;
}
.ds-form-msg.success {
    color: var(--text-primary);
    padding: 10px 14px;
    border: 1px solid rgba(184,115,51,0.25);
    background: var(--copper-tint);
    border-radius: 8px;
}
.ds-form-msg.error {
    color: var(--text-primary);
    padding: 10px 14px;
    border: 1px solid var(--charcoal-light);
    background: var(--cream-dark);
    border-radius: 8px;
}

.ds-alt-section {
    background: var(--white);
    padding: 60px 0;
}
.ds-alt-inner {
    text-align: center;
    max-width: 620px;
}
.ds-alt-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.ds-alt-inner p {
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    background: var(--charcoal);
    text-align: center;
    overflow: hidden;
}
.cta-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-section h2 em {
    font-style: italic;
    color: var(--copper-light);
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    font-weight: 300;
}

/* ===== Corner & Bay Windows Section ===== */
.corner-bay-section {
    background: var(--cream);
    padding-top: clamp(60px, 9vw, 100px);
    padding-bottom: clamp(60px, 9vw, 100px);
}
.corner-bay-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}
.corner-bay-visual {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream-dark);
}
.corner-bay-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.corner-bay-content h2 {
    font-family: var(--font-heading);
    font-variation-settings: "opsz" 64, "wght" 400;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--text-primary);
    margin: 14px 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.corner-bay-content h2 em {
    font-style: italic;
    color: var(--text-primary);
    font-variation-settings: "opsz" 64, "wght" 400;
}
.corner-bay-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 28px;
    font-size: 1rem;
    max-width: 460px;
}
.corner-bay-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.corner-bay-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}
@media (max-width: 820px) {
    .corner-bay-card { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Testimonial ===== */
.testimonial-section { background: var(--warm-white); }
.testimonial-feature {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}
.testimonial-feature blockquote {
    margin: 0 0 28px;
    padding: 0;
}
.testimonial-feature blockquote p {
    font-family: var(--font-heading);
    font-variation-settings: "opsz" 32, "wght" 400;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    margin: 0;
}
.testimonial-feature figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--warm-gray);
}
.testimonial-feature .testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}
.testimonial-feature .testimonial-location {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.55);
    padding: 72px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.15rem;
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 320px;
}
.footer-col h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}
.footer-col ul li {
    font-size: 0.92rem;
    margin-bottom: 10px;
}
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    text-align: left;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Quote Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26,26,26,0.62);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
}
.quote-modal {
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
}
.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.modal-close:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.04);
}
.modal-close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(184,115,51,0.25);
}
.modal-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.quote-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.quote-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.quote-total {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.quote-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.how-to-measure-link {
    color: var(--copper);
    font-weight: 600;
}
.how-to-measure-link:hover { color: var(--copper-dark); text-decoration: underline; }
.btn.how-to-measure-link, .btn.how-to-measure-link:hover { color: var(--white); text-decoration: none; }

/* Design Centre Wizard */
.design-overlay { padding: 0; }
.design-centre {
    background: var(--white);
    width: 100%;
    height: 100vh;
    max-width: 1240px;
    max-height: 92vh;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}
.design-close {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 5;
}
.design-sidebar {
    background: var(--copper-tint);
    border-right: 1px solid rgba(184,115,51,0.14);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.design-sidebar-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 6px;
    margin-bottom: 24px;
}
.design-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.design-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    position: relative;
}
.design-steps li .step-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    width: 26px;
}
.design-steps li.active {
    background: rgba(184,115,51,0.1);
    color: var(--copper-dark);
}
.design-steps li.active .step-num { color: var(--copper); }
.design-steps li.done .step-num { color: var(--copper); }
.design-steps li.done::after {
    content: '\2713';
    position: absolute;
    right: 12px;
    color: var(--copper);
    font-weight: 700;
}
.design-progress-wrap { padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.06); }
.design-progress {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}
.design-progress-fill {
    height: 100%;
    width: 14%;
    background: var(--copper);
    opacity: 0.85;
    transition: width 0.3s var(--ease);
}
.design-progress-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.design-main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.design-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 36px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.design-crumb {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}
.design-price-panel { text-align: right; }
.design-price-main {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1;
}
.design-price-retail { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.design-price-save {
    display: inline-block;
    background: var(--copper-tint);
    color: var(--copper-dark);
    border: 1px solid rgba(184,115,51,0.2);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 500;
}

.design-panel {
    flex: 1;
    padding: 32px 36px;
    overflow-y: auto;
}
.design-panel[hidden] { display: none; }
.design-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.design-hint {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.55;
}

.design-size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 520px;
    margin-bottom: 24px;
}
.design-field { display: flex; flex-direction: column; gap: 6px; }
.design-field-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.design-field-input {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
    transition: border-color 0.15s;
}
.design-field-input:focus-within { border-color: var(--copper); }
.design-field-input input {
    border: none;
    outline: none;
    background: none;
    flex: 1;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text-primary);
}
.design-field-input .unit { color: var(--text-muted); font-size: 0.9rem; }
.design-field small { color: var(--text-muted); font-size: 0.78rem; }
.design-window-viz { max-width: 320px; margin-top: 8px; }
.window-viz-svg { width: 100%; height: auto; }
.measure-diagrams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 560px;
    margin-top: 8px;
}
.measure-diagram-card { margin: 0; text-align: center; }
.measure-diagram-card figcaption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .measure-diagrams { grid-template-columns: 1fr; max-width: 320px; }
}
.design-reassurance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 6px 0 22px;
    padding: 14px 18px;
    background: var(--copper-tint);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 10px;
    max-width: 680px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}
.design-reassurance-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 1px;
}

.design-pane-count {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
    max-width: 720px;
}
.pane-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px 12px;
    border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,0.14);
    background: #fff;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s;
}
.pane-btn:hover { border-color: var(--copper); }
.pane-btn svg {
    width: 100%;
    max-width: 96px;
    height: 56px;
    display: block;
}
.pane-btn.active {
    border-color: var(--copper);
    background: #fdf8f1;
    box-shadow: 0 0 0 3px rgba(184,115,51,0.14);
    color: var(--text-primary);
}
.pane-btn.active svg rect { fill: #ffffff; stroke: var(--copper); }
.design-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    max-width: 720px;
}
.design-proportions-wrap { margin-top: 28px; }
.design-subhead {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 4px;
}
.design-pane-sizes-wrap { margin-top: 22px; }
.pane-sizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-top: 10px;
}
.pane-size-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pane-size-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.pane-size-input {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0 10px;
    background: #fff;
}
.pane-size-input input {
    flex: 1;
    border: none;
    padding: 8px 0;
    font-size: 0.95rem;
    width: 100%;
    background: transparent;
}
.pane-size-input input:read-only { color: var(--text-secondary); cursor: default; }
.pane-size-input input:focus { outline: none; }
.pane-size-input .unit { color: var(--text-secondary); font-size: 0.85rem; }
.pane-sizes-total {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.pane-sizes-total.warning { color: #b87333; font-weight: 500; }
.layout-card {
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    background: #fff;
    text-align: center;
    transition: all 0.15s;
}
.layout-card:hover { border-color: var(--copper); }
.layout-card.active {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.layout-card svg { width: 100%; height: 80px; margin-bottom: 6px; }
.layout-card span { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

.design-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 680px;
}
.design-choice-3col { grid-template-columns: repeat(3, 1fr); max-width: 780px; }
.choice-card {
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.15s;
}
.choice-card:hover { border-color: var(--copper); }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card:has(input:checked) {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
    background: #fdf8f1;
}
.choice-svg { width: 100%; max-width: 160px; height: auto; margin-bottom: 6px; }
.choice-card strong {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}
.choice-card small { color: var(--text-muted); font-size: 0.82rem; }

.recess-depth-wrap {
    margin-top: 24px;
    padding: 18px 20px;
    background: #faf6ef;
    border-radius: 12px;
    max-width: 680px;
}
.recess-depth-wrap[hidden] { display: none; }
.recess-depth-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.depth-option {
    flex: 1 1 120px;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    font-weight: 500;
    transition: all 0.15s;
    position: relative;
}
.depth-option:hover { border-color: var(--copper); }
.depth-option:has(input:checked) {
    border-color: var(--copper);
    background: #fdf8f1;
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.depth-option input { position: absolute; opacity: 0; pointer-events: none; }

.recess-callout {
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--copper-tint);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 10px;
    max-width: 680px;
}
.recess-callout[hidden] { display: none; }
.recess-callout strong { display: block; margin-bottom: 4px; color: var(--text-primary); }
.recess-callout p { margin: 0; font-size: 0.92rem; color: var(--text-secondary); }

.recess-details {
    margin-top: 22px;
    padding: 12px 16px;
    background: #faf6ef;
    border-radius: 10px;
    max-width: 680px;
}
.recess-details summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
}
.recess-details summary::before {
    content: '+ ';
    color: var(--copper);
    font-weight: 600;
}
.recess-details[open] summary::before { content: '\2212  '; }
.recess-details p {
    margin: 10px 0 2px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.frame-sides {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 720px;
    margin-top: 8px;
}
.frame-side {
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
}
.frame-side-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.frame-side-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.98rem;
}
.frame-side-default {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.frame-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.frame-option {
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    background: #fff;
    transition: all 0.15s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.frame-option:hover { border-color: var(--copper); }
.frame-option:has(input:checked) {
    border-color: var(--copper);
    background: #fdf8f1;
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.frame-option input { position: absolute; opacity: 0; pointer-events: none; }
.frame-option-media {
    position: relative;
    width: 100%;
    max-width: 110px;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    background: #f4efe7;
}
.frame-option-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.frame-option-fallback {
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}
.frame-option-fallback svg { width: 100%; max-width: 60px; height: 40px; }
.frame-option span { font-size: 0.82rem; font-weight: 500; color: var(--text-primary); }

.shutter-preview-modal {
    max-width: 720px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 30px;
}
.shutter-preview-wrap { text-align: center; }
.shutter-preview-canvas {
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 360px;
    max-height: 60vh;
    background: #f3ecdb;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    user-select: none;
    touch-action: none;
    cursor: grab;
}
.shutter-preview-canvas:active { cursor: grabbing; }
.shutter-preview-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
.shutter-preview-svg {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: inline-block;
    background: #ede4d6;
    padding: 14px;
    border-radius: 6px;
}
.shutter-specs {
    margin: 22px auto 0;
    max-width: 460px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 8px 14px;
    text-align: left;
    font-size: 0.92rem;
}
.shutter-specs dt { color: var(--text-muted); font-weight: 500; }
.shutter-specs dd { color: var(--text-primary); margin: 0; font-weight: 500; }
.shutter-specs-note {
    margin: 14px auto 0;
    max-width: 460px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}
@media (min-width: 720px) {
    .frame-sides { grid-template-columns: 1fr 1fr; }
}

.frame-primary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 720px;
    margin-top: 14px;
}
@media (min-width: 640px) {
    .frame-primary { grid-template-columns: 1fr 1fr; }
}
.frame-primary-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.frame-primary-tile:hover {
    border-color: var(--copper);
    transform: translateY(-1px);
}
.frame-primary-tile.active,
.frame-primary-tile:has(input:checked) {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.15);
}
.frame-primary-tile input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.frame-primary-media {
    position: relative;
    width: 100%;
    aspect-ratio: 220 / 170;
    background: #f4efe7;
    overflow: hidden;
}
.frame-primary-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.frame-primary-fallback {
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}
.frame-primary-fallback svg {
    width: 100%;
    height: 100%;
    display: block;
}
.frame-primary-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.frame-primary-body strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
}
.frame-primary-body span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
}
.frame-primary-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--copper);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.05);
    z-index: 2;
}

.frame-custom-toggle {
    margin-top: 18px;
}
.frame-custom-toggle button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--copper);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}
.frame-custom-toggle button:hover {
    text-decoration: underline;
}
.frame-custom-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(184,115,51,0.12);
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 0.18s;
}
.frame-custom-toggle button.open .frame-custom-toggle-icon {
    transform: rotate(45deg);
}
.frame-custom-panel {
    margin-top: 10px;
}

.design-colour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    max-width: 780px;
}
.colour-card {
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 16px 12px;
    cursor: pointer;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all 0.15s;
}
.colour-card input { position: absolute; opacity: 0; pointer-events: none; }
.colour-card:hover { border-color: var(--copper); }
.colour-card:has(input:checked) {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.colour-swatch {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.08);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
}
.colour-card strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}
.colour-card small { color: var(--text-muted); font-size: 0.8rem; }

.pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 4px;
}
.pill-copper { background: var(--copper); color: #fff; }

.design-review {
    background: var(--copper-tint);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.design-review-row { display: flex; justify-content: space-between; font-size: 0.92rem; }
.design-review-row span:first-child { color: var(--text-secondary); }
.design-review-row span:last-child { color: var(--text-primary); font-weight: 600; }
.design-review-summary {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.design-review-summary h4 {
    margin: 0 0 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

.design-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 36px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    gap: 12px;
}
.design-footer .btn-link {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-left: auto;
    margin-right: 12px;
}
.design-footer .btn-link:hover { color: var(--text-primary); }

@media (max-width: 900px) {
    .design-centre {
        grid-template-columns: 1fr;
        max-height: 100vh;
        border-radius: 0;
    }
    .design-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(184,115,51,0.14);
        padding: 20px;
    }
    .design-steps {
        display: flex;
        overflow-x: auto;
        gap: 6px;
        margin-bottom: 14px;
    }
    .design-steps li { flex: 0 0 auto; padding: 8px 12px; }
    .design-steps li.done::after { display: none; }
    .design-main-header { padding: 16px 20px; }
    .design-panel { padding: 22px 20px; }
    .design-footer { padding: 14px 20px; flex-wrap: wrap; }
    .design-size-grid { grid-template-columns: 1fr; }
    .design-choice-grid, .design-choice-3col { grid-template-columns: 1fr 1fr; }
    .design-review { grid-template-columns: 1fr; }
}

/* How to Measure Modal */
.measure-modal {
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
}
.measure-header { text-align: center; margin-bottom: 24px; }
.measure-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.measure-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 520px;
    margin: 0 auto;
}
.measure-section { margin-bottom: 24px; }
.measure-section h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.measure-list {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}
.measure-list li { margin-bottom: 4px; }
.measure-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.measure-card {
    background: #faf7f2;
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: var(--radius-lg, 12px);
    padding: 18px;
}
.measure-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 10px 0 6px;
}
.measure-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}
.measure-diagram {
    width: 100%;
    height: auto;
    max-width: 200px;
    display: block;
    margin: 0 auto 8px;
}
.measure-callout {
    background: var(--copper-tint);
    border: 1px solid rgba(184,115,51,0.18);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
}
.measure-callout strong { color: var(--text-primary); }
@media (max-width: 560px) {
    .measure-modal { padding: 28px 20px; }
    .measure-header h2 { font-size: 1.5rem; }
}

/* Price row with savings */
.quote-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}
.quote-price-row .quote-total { margin-bottom: 0; }
.quote-savings {
    background: var(--copper-tint);
    border: 1px solid rgba(184,115,51,0.22);
    border-radius: var(--radius);
    padding: 6px 14px;
    text-align: center;
}
.savings-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--copper-dark);
    font-weight: 600;
}
.savings-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--copper-dark);
}

/* Window entries */
.quote-window {
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
}
.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.window-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.window-remove-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
.window-remove-btn:hover { color: var(--text-primary); }
.window-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.window-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.window-field input {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s;
}
.window-field input:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}
.window-field input.invalid {
    border-color: #c0392b;
}
.window-field input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(192,57,43,0.18);
}
.input-with-unit { position: relative; }
.input-with-unit input { padding-right: 36px; }
.input-with-unit .unit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Quote actions */
.quote-actions {
    text-align: center;
    margin: 16px 0 24px;
}

/* Quote steps */
.quote-reassurance {
    list-style: none;
    margin: 0 0 24px;
    padding: 18px 0;
    border-top: 1px solid var(--warm-gray);
    border-bottom: 1px solid var(--warm-gray);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quote-reassurance li {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
}
.quote-reassurance li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--copper);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Photo upload */
.window-photo-upload {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.photo-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px dashed var(--warm-gray-dark);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}
.photo-upload-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
    background: var(--copper-glow);
}
.photo-icon { font-size: 1rem; }
.photo-preview { position: relative; display: inline-block; }
.photo-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--warm-gray);
}
.photo-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== Design Centre (View 2) ===== */
.design-centre-header { margin-bottom: 24px; }
.back-link {
    background: none;
    border: none;
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 8px;
    display: inline-block;
}
.back-link:hover { color: var(--copper-dark); text-decoration: underline; }
.design-centre-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.design-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.design-summary {
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.design-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}
.design-summary-item + .design-summary-item {
    border-top: 1px solid var(--warm-gray);
    margin-top: 4px;
    padding-top: 8px;
}
.design-summary-item .win-name { font-weight: 600; color: var(--text-primary); }
.design-summary-item .win-dims { color: var(--text-muted); font-size: 0.8rem; }

/* Style cards */
.design-options { margin-bottom: 20px; }
.design-option-group { margin-bottom: 16px; }
.design-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.design-style-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.style-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border: 2px solid var(--warm-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.style-card input { display: none; }
.style-card.active { border-color: var(--copper); background: var(--copper-glow); }
.style-card:hover { border-color: var(--copper-light); }
.style-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--warm-gray);
}
.style-card span { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.style-card small { font-size: 0.7rem; color: var(--text-secondary); }

/* Louvre options */
.louvre-options { display: flex; gap: 8px; }
.louvre-option {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--warm-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}
.louvre-option input { display: none; }
.louvre-option.active { border-color: var(--copper); background: var(--copper-glow); }
.louvre-option:hover { border-color: var(--copper-light); }
.louvre-option span { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }

/* Total bar */
.design-total-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--copper-glow);
    border: 1px solid var(--copper-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
}
.design-total-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    font-weight: 600;
}
.design-total-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--copper);
}
.design-total-saving {
    font-size: 0.85rem;
    color: var(--copper-dark);
    font-weight: 500;
}

/* Contact form */
.design-contact { margin-bottom: 20px; }
.design-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.design-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.design-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s;
}
.design-input:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}
.design-textarea { margin-bottom: 0; resize: vertical; }

/* Form messages */
.form-msg {
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
}
.form-msg.success { color: var(--copper-dark); }
.form-msg.error {
    color: var(--text-primary);
    padding: 8px 12px;
    border: 1px solid var(--charcoal-light);
    background: var(--cream-dark);
    border-radius: 6px;
    display: inline-block;
}

/* ===== Design Centre — Configuration step (panel-3) ===== */
.design-config-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 14px;
}
@media (min-width: 720px) {
    .design-config-grid { grid-template-columns: 1fr 1fr; }
}
.design-config-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    padding: 22px 18px 18px;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.design-config-tile:hover {
    border-color: var(--copper);
    transform: translateY(-1px);
}
.design-config-tile:has(input:checked) {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.15);
}
.design-config-tile input { position: absolute; opacity: 0; pointer-events: none; }
.design-config-tile-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.design-config-tile-media img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}
.design-config-tile-body { text-align: center; }
.design-config-tile-body span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b5563;
    text-transform: uppercase;
    line-height: 1.5;
}

/* ===== Configuration Modal ===== */
.config-modal {
    max-width: 920px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 36px 40px 28px;
}
.config-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 4px solid #1f2937;
    border-bottom-width: 0;
    position: relative;
}
.config-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 48px;
    height: 4px;
    background: #1f2937;
}
.config-step-num {
    font-size: 3.4rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    letter-spacing: -0.02em;
}
.config-header-text { flex: 1; }
.config-header-text h2 {
    margin: 4px 0 8px;
    font-size: 1.6rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.25;
}
.config-sub {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.config-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
}
@media (min-width: 720px) {
    .config-grid { grid-template-columns: 1fr 1fr; }
}
.config-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    padding: 26px 20px 22px;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.config-tile:hover {
    border-color: var(--copper);
    transform: translateY(-1px);
}
.config-tile:has(input:checked) {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.15);
}
.config-tile input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.config-tile-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.config-tile-media svg,
.config-tile-media img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}
.config-tile-body { text-align: center; }
.config-tile-body span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4b5563;
    text-transform: uppercase;
    line-height: 1.5;
}
.config-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.2rem; }
    .hero-content { max-width: 100%; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-scroll-hint { display: none; }
    .cta-section h2 { font-size: 2.4rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .hero { min-height: 85vh; }
    .hero h1 { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; }
    .section { padding: 72px 0; }
    .section-title { font-size: 2rem; }
    .section-tag::before, .section-tag::after { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-items { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-section h2 { font-size: 2rem; }
    .quote-modal { padding: 24px; }
    .window-fields { grid-template-columns: 1fr; }
    .quote-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .design-style-cards { grid-template-columns: 1fr; }
    .louvre-options { flex-direction: column; }
    .design-form-row { grid-template-columns: 1fr; }
    .design-total-bar { flex-direction: column; gap: 8px; text-align: center; }
    .quote-price-row { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-eyebrow { font-size: 0.7rem; }
    .container { padding: 0 16px; }
    .product-info { padding: 20px; }
    .quote-modal { padding: 18px; }
}

/* ===================================================================
   SHUTTERS-DEPT-INSPIRED HOMEPAGE COMPONENTS
   Appended for new sections (sale banner, comparison, FAQ, etc.)
   =================================================================== */

/* Promo / Sale Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #a7c7d7;
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.promo-badge {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.promo-headline { letter-spacing: 0.01em; }
.promo-headline strong { color: #ffffff; font-weight: 700; }
.promo-countdown {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.promo-countdown li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 6px 10px;
    min-width: 50px;
}
.cd-num {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
    color: #ffffff;
}
.cd-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
.promo-cta {
    color: var(--cream);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
.promo-cta:hover { color: var(--copper-light); }

/* Nudge navbar down to make room for promo banner */
.navbar.has-promo { top: 56px; }
body.has-promo { padding-top: 128px; }
body { padding-top: 72px; }

/* Nav extensions */
.nav-phone a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--copper) !important;
    font-weight: 600;
}
.nav-phone-icon {
    font-size: 1.05rem;
    transform: rotate(15deg);
}

/* Hero additions */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 32px;
    padding: 0;
    list-style: none;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(250, 248, 245, 0.92);
    font-size: 0.92rem;
    font-weight: 500;
}
.trust-tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Value-prop two-column rows */
.value-prop-section { background: var(--cream); }
.confidence-section { background: var(--warm-white); }
.mount-method-section { background: var(--cream-dark); }
.mount-option-card {
    display: block;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mount-option-card:hover { border-color: var(--copper); }
.mount-option-card.active {
    border-color: var(--copper);
    box-shadow: 0 0 0 2px var(--copper-glow);
    background: var(--copper-tint);
}
.mount-detail { margin-top: 32px; }
.mount-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
    background: var(--white);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: var(--radius-lg, 12px);
    padding: 28px;
}
.mount-detail-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.mount-detail-copy p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.mount-detail-figure {
    margin: 0;
    text-align: center;
}
.mount-detail-figure figcaption {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}
.mount-detail-callout {
    margin-top: 20px;
    background: var(--copper-tint);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 10px;
    padding: 18px 20px;
}
.mount-detail-callout h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.mount-detail-callout p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 720px) {
    .mount-detail-grid { grid-template-columns: 1fr; padding: 20px; }
}
.value-prop-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.value-prop-row.reverse .value-prop-media { order: 2; }
.value-prop-media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.value-prop-content .section-title { margin-bottom: 20px; }
.value-prop-content .lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.value-prop-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 14px;
}
.value-prop-list li {
    position: relative;
    padding-left: 34px;
    color: var(--text-primary);
    line-height: 1.6;
}
.vp-tick {
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--copper-tint);
    color: var(--copper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
}

/* Confidence cards */
.confidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 8px 0 24px;
}
.confidence-card {
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
}
.confidence-card.highlight {
    background: var(--copper-tint);
    border-color: var(--copper-light);
}
.confidence-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.confidence-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.55;
}
.card-pill {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--copper);
    color: var(--white);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

/* How CTA wrapper */
.how-cta { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px; text-align: center; margin-top: 36px; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.how-chat-panel {
    max-width: 560px;
    margin: 28px auto 0;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-align: left;
}
.how-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--charcoal);
    color: var(--white);
}
.how-chat-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
}
.how-chat-close {
    background: none;
    border: 0;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    min-width: 44px;
    min-height: 44px;
}
.how-chat-messages {
    padding: 20px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--cream);
}
.how-chat-msg {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
}
.how-chat-msg-bot {
    align-self: flex-start;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}
.how-chat-msg-user {
    align-self: flex-end;
    background: var(--copper);
    color: var(--white);
    border-bottom-right-radius: 4px;
}
.how-chat-form {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid var(--warm-gray);
    background: var(--white);
}
.how-chat-form input {
    flex: 1;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
}
.how-chat-form input:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}
.how-chat-form .btn {
    min-height: 44px;
    padding: 0 22px;
}
.how-chat-note {
    padding: 0 20px 18px;
    background: var(--white);
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.how-chat-note a { color: var(--copper-dark); font-weight: 600; }
@media (max-width: 600px) {
    .how-chat-form { flex-direction: column; }
}

/* Features-3 column override */
.features-grid-3 { grid-template-columns: repeat(3, 1fr); }
.features-section .feature-card {
    text-align: left;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-lg);
}
.feature-icon {
    color: var(--copper);
    margin-bottom: 18px;
    display: inline-flex;
}

/* Compare table */
.compare-section { background: var(--cream-dark); }
.section-lede {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 1.02rem;
    text-align: center;
}
.compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 44px;
}
.compare-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.compare-us {
    border: 2px solid var(--copper);
    box-shadow: var(--shadow-md);
}
.compare-them {
    border: 1px solid var(--warm-gray);
    opacity: 0.92;
}
.compare-tag {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.compare-them .compare-tag {
    background: var(--warm-gray-dark);
    color: var(--charcoal);
}
.compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 12px;
}
.compare-col li {
    position: relative;
    padding-left: 30px;
    color: var(--text-primary);
    line-height: 1.55;
    font-size: 0.96rem;
}
.compare-col li .ct-tick,
.compare-col li .ct-cross {
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    display: inline-block;
}
.ct-tick {
    color: var(--copper);
    font-weight: 800;
    font-size: 1rem;
}
.ct-cross {
    color: var(--warm-gray-dark);
    font-weight: 800;
    font-size: 1.1rem;
}
.compare-them li { color: var(--text-secondary); }
.compare-footer {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--warm-gray);
    font-size: 0.95rem;
}
.compare-us .compare-footer strong { color: var(--copper); }
.compare-them .compare-footer strong { color: var(--text-muted); }

/* 3-step design help */
.design-help-section { background: var(--cream); }
.help-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}
.help-step {
    text-align: center;
    padding: 0 8px;
}
.help-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 24px rgba(184,115,51,0.25);
}
.help-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.help-step p {
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Gallery grid */
.gallery-section { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}
.gallery-tile {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    background: var(--cream-dark);
    transition: transform 0.4s var(--ease);
}
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-tile:hover img { transform: scale(1.04); }

/* Sample request card */
.sample-section { background: var(--copper-tint); }
.sample-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: var(--shadow-md);
}
.sample-text h2 {
    font-family: var(--font-display);
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
}
.sample-text p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 22px;
}
.sample-text .sample-cta-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    color: var(--copper-dark);
}
.sample-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Aussie made strip */
.aussie-made {
    background: var(--charcoal);
    color: var(--cream);
    padding: 60px 0;
}
.aussie-made-inner {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.aussie-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.05;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.06em;
    flex: none;
    box-shadow: 0 10px 30px rgba(184,115,51,0.35);
}
.aussie-text { flex: 1; min-width: 280px; }
.aussie-text h2 {
    font-family: var(--font-display);
    font-variation-settings: "opsz" 56, "wght" 400;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--white);
}
.aussie-text p {
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 12px;
    max-width: 620px;
}
.aussie-text .btn-link-quiet {
    color: var(--cream);
    border-bottom-color: var(--copper-light);
}

/* Corner & Bay additions */
.bay-links {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    display: grid;
    gap: 8px;
}
.bay-links a {
    color: var(--copper);
    font-weight: 500;
    font-size: 0.95rem;
}
.bay-links a:hover { color: var(--copper-dark); }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-container { max-width: 880px; }
.faq-list {
    margin-top: 36px;
    border-top: 1px solid var(--warm-gray);
}
.faq-item {
    border-bottom: 1px solid var(--warm-gray);
    padding: 4px 0;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 36px 22px 0;
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--copper);
    transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item summary:hover { color: var(--copper-dark); }
.faq-item > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    padding: 0 0 24px;
    max-width: 760px;
}
.faq-help {
    margin-top: 40px;
    text-align: center;
}
.faq-help p {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

/* Footer additions */
.footer-contact {
    margin-top: 14px;
    display: grid;
    gap: 4px;
}
.footer-phone {
    color: var(--copper-light) !important;
    font-weight: 600;
    font-size: 1.05rem;
}
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-payments {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(250,248,245,0.6);
    font-size: 0.85rem;
}
.pay-chip {
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.06);
}
.footer-payments-note {
    margin-top: 10px;
    color: rgba(250,248,245,0.45);
    font-size: 0.78rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: rgba(250,248,245,0.5); font-size: 0.85rem; }

/* ===== Tablet ===== */
@media (max-width: 960px) {
    .value-prop-row, .sample-card { grid-template-columns: 1fr; gap: 36px; }
    .value-prop-row.reverse .value-prop-media { order: 0; }
    .confidence-grid { grid-template-columns: 1fr; }
    .features-grid-3 { grid-template-columns: 1fr; }
    .compare-table { grid-template-columns: 1fr; }
    .help-steps { grid-template-columns: 1fr; gap: 36px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sample-card { padding: 36px; }
}

/* ===== Mobile ===== */
@media (max-width: 720px) {
    body.dc-as-page { padding-top: 72px; }
    .promo-banner {
        padding: 8px 0;
        font-size: 0.78rem;
    }
    .promo-banner-inner { gap: 8px; }
    .promo-headline { width: 100%; text-align: center; }
    .promo-cta { width: 100%; text-align: center; }
    .promo-countdown li { min-width: 32px; padding: 2px 6px; }
    .cd-num { font-size: 0.78rem; }
    .cd-label { font-size: 0.55rem; }

    .nav-phone { display: none; }
    .hero-trust { gap: 10px 16px; margin-top: 24px; }
    .hero-trust li { font-size: 0.82rem; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .aussie-made-inner { flex-direction: column; text-align: center; }
    .aussie-badge { margin: 0 auto; }
}

/* ===================================================================
   DESIGN-CENTRE PAGE (full-page wizard, not modal)
   Activated via `body.dc-as-page`
   =================================================================== */

body.dc-as-page {
    background: var(--cream);
    padding-top: 72px;  /* navbar */
}

/* Back-to-home link in the slim nav */
.dc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary) !important;
    font-weight: 500;
}
.dc-back-link:hover { color: var(--text-primary) !important; }

/* Page header */
.dc-page-header {
    padding: 124px 0 32px;
    background: var(--cream);
    border-bottom: 1px solid var(--warm-gray);
}
.dc-breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.dc-breadcrumbs a {
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.dc-breadcrumbs a:hover { border-color: var(--copper); color: var(--copper); }
.dc-page-header h1 {
    font-family: var(--font-display);
    font-variation-settings: "opsz" 80, "wght" 400;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.dc-page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
}

/* Main wizard area, now flowed page content */
.dc-page-main {
    padding: 0 0 80px;
    background: var(--cream);
}

/* Convert #designCentreModal from fixed modal overlay to page flow */
body.dc-as-page #designCentreModal {
    display: block !important;
    position: static;
    inset: auto;
    background: transparent;
    padding: 0;
    z-index: auto;
    opacity: 1;
}
body.dc-as-page #designCentreModal .design-centre {
    height: auto;
    min-height: 560px;
    max-height: none;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: visible;
    grid-template-columns: 260px 1fr;
}
body.dc-as-page #designCloseBtn { display: none; }

/* Sidebar sticks to top as user scrolls through the wizard */
body.dc-as-page .design-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Main column should not clip its scrollable content */
body.dc-as-page .design-main {
    overflow: visible;
    min-height: 560px;
}

/* Slim footer on the design-centre page */
.dc-footer {
    margin-top: 0;
    background: var(--charcoal);
    color: var(--cream);
    padding: 24px 0;
}
.dc-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-top: none;
    padding-top: 0;
}
.dc-footer p { color: rgba(250,248,245,0.7); font-size: 0.85rem; margin: 0; }
.dc-footer a {
    color: var(--copper-light);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}
.dc-footer a:hover { border-bottom-color: var(--copper-light); }

/* Tablet & mobile */
@media (max-width: 960px) {
    body.dc-as-page #designCentreModal .design-centre {
        grid-template-columns: 1fr;
    }
    body.dc-as-page .design-sidebar {
        position: static;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(184,115,51,0.14);
    }
    body.dc-as-page .design-steps {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 14px;
    }
    body.dc-as-page .design-steps li {
        flex: 0 0 auto;
        padding: 6px 10px;
        font-size: 0.82rem;
    }
}

@media (max-width: 720px) {
    .dc-page-header { padding: 156px 0 24px; }
    .dc-page-header h1 { font-size: 1.8rem; }
    body.dc-as-page .design-sidebar { padding: 18px 16px; }
}

/* ===================================================================
   DESIGN-CENTRE: 10-step layout, Shutters Dept inspired
   =================================================================== */

/* ---- Sidebar grouping ---- */
.design-steps-wrap {
    flex: 1;
    overflow-y: auto;
    margin: 0 -8px 16px;
    padding: 0 8px;
}
.dc-step-group {
    margin-bottom: 18px;
}
.dc-step-group:last-child { margin-bottom: 0; }
.dc-step-group-title {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 8px 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(184,115,51,0.14);
}
.dc-step-group .design-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---- Top action bar (Back / progress / Save) ---- */
.dc-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 36px;
    background: var(--copper-tint);
    border-bottom: 1px solid rgba(184,115,51,0.14);
    flex-wrap: wrap;
}
.dc-back-to-windows {
    color: var(--copper-dark);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.dc-back-to-windows:hover { color: var(--copper); }
.dc-action-progress {
    font-size: 0.92rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.dc-action-progress strong {
    color: var(--copper);
    font-weight: 700;
    font-size: 1.02rem;
}
.dc-save-progress {
    background: var(--white);
    border: 1px solid var(--copper-light);
    color: var(--copper-dark);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s var(--ease);
}
.dc-save-progress:hover {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}

/* ---- Plain numbered pane buttons (Step 2) ---- */
.dc-pane-buttons {
    display: flex;
    gap: 12px;
    margin: 8px 0 24px;
    flex-wrap: wrap;
}
.pane-num-btn {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--white);
    border: 2px solid var(--warm-gray);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pane-num-btn:hover {
    border-color: var(--copper-light);
    background: var(--copper-tint);
}
.pane-num-btn.active {
    border-color: var(--copper);
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(184,115,51,0.25);
}

/* ---- Step 2: "What is the layout?" question ---- */
.dc-layout-question {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--warm-gray);
}
.dc-layout-question h3 { margin-bottom: 6px; }
.dc-upload-link {
    color: var(--copper);
    font-weight: 600;
    border-bottom: 1px solid var(--copper-light);
}
.dc-upload-link:hover { color: var(--copper-dark); border-bottom-color: var(--copper-dark); }

.dc-layout-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.dc-layout-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--white);
    border: 2px solid var(--warm-gray);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-family: var(--font-body);
}
.dc-layout-card:hover {
    border-color: var(--copper-light);
    background: var(--copper-tint);
}
.dc-layout-card.is-selected {
    border-color: var(--copper);
    background: var(--copper-tint);
    box-shadow: 0 4px 16px rgba(184,115,51,0.18);
}
.dc-layout-preview {
    width: 100%;
    max-width: 140px;
}
.dc-layout-preview svg {
    width: 100%;
    height: auto;
}
.dc-layout-name {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ---- Step 5: Recommendations sections ---- */
.dc-rec-section {
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
}
.dc-rec-section:first-of-type { margin-top: 0; }
.dc-rec-section .design-subhead {
    margin-top: 0;
    margin-bottom: 8px;
}

/* ---- Step 8 / 9: small visual tweaks ---- */
.design-subhead {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 8px;
}

/* ---- Design crumb (header) Shutters Dept style ---- */
.design-crumb {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* ---- Page-mode tweaks for top action bar ---- */
body.dc-as-page .dc-action-bar {
    border-top-right-radius: var(--radius-xl);
}

/* ---- Mobile ---- */
@media (max-width: 720px) {
    .dc-action-bar { padding: 10px 16px; gap: 10px; }
    .dc-back-to-windows, .dc-save-progress, .dc-action-progress { font-size: 0.82rem; }
    .pane-num-btn { width: 52px; height: 52px; font-size: 1.15rem; }
    .dc-layout-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .dc-layout-card { padding: 12px; }
    body.dc-as-page .design-steps-wrap {
        display: flex;
        gap: 12px;
        overflow-x: auto;
    }
    body.dc-as-page .dc-step-group { min-width: 220px; margin-bottom: 0; }
}


/* ===================================================================
   DESIGN-CENTRE: Shutters Dept visual match overrides
   Applied when body has .dc-as-page (the dedicated wizard page).
   Overrides earlier copper-heavy styles for the design centre only.
   =================================================================== */

body.dc-as-page {
    --coral: #d19886;
    --coral-dark: #b87a66;
    --coral-soft: #f3e6df;
    --slate: #a7c7d7;
    --slate-dark: #7ea8bd;
    --cream-band: #ede4d6;
    --ink: #1a1a1a;
}

/* Promo banner: slate-blue, full width, white text */
body.dc-as-page .promo-banner {
    background: var(--slate);
    color: #fff;
    border-bottom: 0;
    padding: 12px 0;
}
body.dc-as-page .promo-banner .promo-badge { background: rgba(255,255,255,0.2); color: #fff; }
body.dc-as-page .promo-banner .promo-headline strong { color: #fff; font-weight: 700; }
body.dc-as-page .promo-banner-inner { gap: 32px; }
body.dc-as-page .promo-countdown li {
    background: transparent;
    padding: 0;
    min-width: 38px;
    color: #fff;
}
body.dc-as-page .cd-num { color: #fff; font-size: 1.1rem; font-weight: 700; }
body.dc-as-page .cd-label { color: rgba(255,255,255,0.85); }

/* Top action bar: cream beige band with centered progress + black Save button */
body.dc-as-page .dc-action-bar {
    background: var(--cream-band);
    color: var(--ink);
    padding: 14px 36px;
    border-bottom: 0;
    border-radius: 0;
    justify-content: center;
    gap: 28px;
}
body.dc-as-page .dc-back-to-windows {
    color: var(--coral);
    font-weight: 600;
    margin-right: auto;
}
body.dc-as-page .dc-back-to-windows:hover { color: var(--coral-dark); }
body.dc-as-page .dc-action-progress {
    color: var(--ink);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}
body.dc-as-page .dc-action-progress strong { color: var(--ink); font-weight: 600; }
body.dc-as-page .dc-save-progress {
    background: var(--ink);
    color: #fff;
    border: 0;
    padding: 12px 28px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
body.dc-as-page .dc-save-progress:hover { background: #000; }

/* Sidebar: more airy, sectioned with collapse chevrons */
body.dc-as-page .design-sidebar {
    background: #fff;
    border-right: 1px solid #e8e4de;
    padding: 32px 28px;
}
body.dc-as-page .design-sidebar-header { display: none; }

/* Window info block (above steps): name, price, savings */
.dc-window-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}
.dc-window-info .dc-win-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eeeeee;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b9590;
    font-size: 1.4rem;
}
.dc-window-info .dc-win-meta { flex: 1; }
.dc-window-info .dc-win-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.05;
}
.dc-window-info .dc-win-price {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}
.dc-window-info .dc-win-price .dc-retail {
    color: #9b9590;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.9rem;
}
.dc-window-info .dc-win-savings {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 700;
    margin-top: 4px;
}

/* Live 3D preview, sidebar-persistent (updates as the wizard state changes) */
.dc-mini-preview-wrap { margin-bottom: 28px; }
.dc-mini-preview {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    overflow: hidden;
}
.dc-mini-preview canvas { display: block; }
.dc-mini-preview-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: #9b9590;
}
.dc-mini-preview-caption {
    margin-top: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #9b9590;
}

/* Sidebar step groups: collapsible feel, only one expanded at a time */
body.dc-as-page .design-steps-wrap { margin: 0; padding: 0; overflow: visible; }
body.dc-as-page .dc-step-group { margin-bottom: 8px; }
body.dc-as-page .dc-step-group-title {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
    padding: 14px 0 10px;
    border-top: 1px solid #e8e4de;
    border-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.dc-as-page .dc-step-group:first-of-type .dc-step-group-title { border-top: 0; padding-top: 0; }
body.dc-as-page .dc-step-group-title::after {
    content: '\25BC';
    font-size: 0.55rem;
    color: var(--coral);
    transform: translateY(-1px);
}
body.dc-as-page .dc-step-group.is-collapsed .dc-step-group-title::after {
    content: '\25B2';
}
body.dc-as-page .dc-step-group.is-collapsed .design-steps { display: none; }

body.dc-as-page .design-steps li {
    padding: 8px 0;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 0;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 8px;
    align-items: center;
}
body.dc-as-page .design-steps li:hover { background: transparent; color: var(--coral); }
body.dc-as-page .design-steps li .step-num {
    font-weight: 400;
    color: var(--ink);
    font-size: 0.95rem;
    width: auto;
}
body.dc-as-page .design-steps li.active {
    background: transparent;
    color: var(--ink);
    font-weight: 700;
}
body.dc-as-page .design-steps li.active::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    justify-self: end;
}
body.dc-as-page .design-steps li.done::after {
    content: '\2713';
    color: #639922;
    font-weight: 700;
    font-size: 1rem;
    justify-self: end;
}
body.dc-as-page .design-steps li.done .step-num { color: var(--ink); }
body.dc-as-page .design-steps li.active .step-num { color: var(--ink); }

/* Hide progress wrap in sidebar — progress shows in the cream band now */
body.dc-as-page .design-progress-wrap { display: none; }

/* Main header: huge step number + question, with a black rule under */
body.dc-as-page .design-main-header {
    padding: 56px 56px 28px;
    border-bottom: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}
body.dc-as-page .design-crumb {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 0;
}
/* Hide price panel on the right of step header — it lives in sidebar now */
body.dc-as-page .design-main-header .design-price-panel { display: none; }

/* The panel content itself */
body.dc-as-page .design-panel {
    padding: 8px 56px 32px;
}
body.dc-as-page .design-panel h3 {
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    max-width: 540px;
    margin-bottom: 18px;
}
body.dc-as-page .design-panel > h3:first-child {
    margin-top: 0;
}
/* Black underline rule between question and inputs */
body.dc-as-page .design-panel h3:first-child::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: var(--ink);
    margin-top: 28px;
}
body.dc-as-page .design-hint {
    color: #6b6560;
    font-size: 0.95rem;
    max-width: 540px;
}

/* Pane buttons: large outlined squares, no fill, simple numbers */
body.dc-as-page .dc-pane-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0 36px;
    flex-wrap: wrap;
}
body.dc-as-page .pane-num-btn {
    width: 96px;
    height: 96px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #d8d4cc;
    color: var(--ink);
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
body.dc-as-page .pane-num-btn:hover {
    border-color: var(--coral);
    background: #fff;
    color: var(--coral);
}
body.dc-as-page .pane-num-btn.active {
    border-color: var(--coral);
    background: #fff;
    color: var(--coral);
    box-shadow: 0 0 0 1px var(--coral);
}

/* "Window pane examples" info link below buttons */
.dc-pane-examples-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
}
.dc-pane-examples-link::before {
    content: 'i';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: 0.72rem;
    font-weight: 700;
}
.dc-pane-examples-link:hover { color: var(--coral-dark); }

/* Footer actions: right-aligned, Next = coral filled, I don't know = outline */
body.dc-as-page .design-footer {
    padding: 24px 56px 56px;
    background: transparent;
    border-top: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
body.dc-as-page #dcBackBtn {
    color: var(--ink);
    background: transparent;
    border: 1px solid #d8d4cc;
    padding: 12px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
body.dc-as-page #dcBackBtn:hover { border-color: var(--ink); color: var(--ink); background: #f6f3ed; }
body.dc-as-page #dcDontKnowBtn {
    margin-left: auto;
    background: transparent;
    color: var(--ink);
    border: 1px solid #d8d4cc;
    padding: 12px 28px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}
body.dc-as-page #dcDontKnowBtn:hover { background: #f6f3ed; border-color: var(--ink); }
body.dc-as-page #dcNextBtn {
    background: var(--coral);
    color: #fff;
    border: 0;
    padding: 14px 56px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: none;
}
body.dc-as-page #dcNextBtn:hover { background: var(--coral-dark); }

/* Legal content (Terms & Conditions, Privacy) */
.legal-section { background: var(--cream); }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-updated { color: var(--charcoal-muted); font-size: 0.85rem; margin-bottom: 48px; }
.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 48px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 28px 0 10px;
}
.legal-content p {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.legal-content ul {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin: 0 0 16px;
    padding-left: 22px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--copper-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--copper); }
.legal-content strong { color: var(--charcoal); }

/* Hide page header (h1 "Design your shutters") and breadcrumbs — they duplicate the step layout */
body.dc-as-page .dc-page-header { display: none; }

/* Layout question — hide by default; revealed after pane selection */
body.dc-as-page .dc-layout-question {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e8e4de;
}

/* Mobile */
@media (max-width: 720px) {
    body.dc-as-page .design-crumb { font-size: 3.5rem; }
    body.dc-as-page .design-main-header { padding: 32px 20px 0; }
    body.dc-as-page .design-panel { padding: 0 20px 24px; }
    body.dc-as-page .pane-num-btn { width: 72px; height: 72px; font-size: 1.5rem; }
    body.dc-as-page .design-footer { padding: 20px; flex-wrap: wrap; }
    body.dc-as-page .dc-action-bar { padding: 10px 16px; gap: 12px; }
    body.dc-as-page .dc-save-progress { padding: 10px 16px; font-size: 0.75rem; }
}


/* ===================================================================
   SHUTTERS DEPT SITE-WIDE LOOK (homepage + design centre)
   =================================================================== */

/* All-caps section titles */
.section-title {
    text-transform: uppercase;
    letter-spacing: 0.01em !important;
    font-weight: 700 !important;
    font-variation-settings: "opsz" 60, "wght" 700 !important;
}

/* Resume Order black sub-banner (before navbar) */
.resume-order-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1099;
    background: #1a1a1a;
    color: #ffffff;
    padding: 11px 0;
    font-size: 0.88rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.resume-order-bar a {
    color: var(--copper);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-left: 14px;
}
.resume-order-bar a:hover { color: var(--copper-light); }

/* If resume bar is showing, push body content down further
   (44px resume bar + 72px navbar) */
body.has-resume-bar { padding-top: 116px; }
body.has-resume-bar .navbar { top: 44px; }

/* Bigger CTA buttons with uppercase tracked text (matches their style) */
.btn-primary {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    border-radius: 4px;
}
.btn-quiet, .btn-nav-alt, .btn-outline-copper {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    border-radius: 4px;
}
.btn-nav {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 4px;
}
