/* ══════════════════════════════════════════════════════
   WENDT WINDOWS & DOORS — Complete Stylesheet
   Designed by Brands by Bekah
══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Inter+Tight:wght@300;400;500;600&display=swap");

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

/* ─── TOKENS ─────────────────────────────────────── */
:root {
    --navy: #18293b;
    --navy-mid: #1d3045;
    --navy-deep: #0f1e2c;
    --rose: #c17b81;
    --rose-lt: #d9a8ac;
    --rose-dim: rgba(193, 123, 129, 0.15);
    --quartz: #eee2e5;
    --quartz-dk: #d4c4c8;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.55);
    --font-h: "Libre Caslon Text", Georgia, serif;
    --font-b: "Inter Tight", system-ui, sans-serif;
    --max-w: 1200px;
    --pad-x: 48px;
    --radius: 4px;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-b);
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
}

/* ─── UTILITIES ──────────────────────────────────── */
.section-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: var(--rose);
}

.section-h2 {
    font-family: var(--font-h);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 40px;
}
.section-h2.light {
    color: var(--white);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        background 0.18s,
        transform 0.15s;
}
.btn-primary:hover {
    background: #b36d73;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0f1e2c;
    border-bottom: 1px solid rgba(193, 123, 129, 0.15);
    transition: background 0.3s;
}
header.solid {
    background: #08131d;
}

nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}
.logo-words {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-name {
    font-family: var(--font-h);
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}
.logo-tag {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 10px;
    color: var(--rose-lt);
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}
.nav-links a {
    display: block;
    padding: 7px 13px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    border-radius: var(--radius);
    transition:
        color 0.18s,
        background 0.18s;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.nav-phone {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}
.nav-phone strong {
    color: var(--rose-lt);
    font-weight: 500;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--rose);
    color: #fff;
    font-family: var(--font-b);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.18s,
        transform 0.15s;
}
.btn-nav:hover {
    background: #b36d73;
    transform: translateY(-1px);
}
.btn-nav svg {
    width: 12px;
    height: 12px;
}

/* Hamburger — hidden desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition:
        transform 0.25s,
        opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — hidden desktop */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f1e2c;
    z-index: 999;
    padding-top: 60px;
    overflow-y: auto;
}
.mobile-nav.open {
    display: block;
}
.mobile-nav a {
    display: block;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        color 0.15s,
        background 0.15s;
}
.mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.mobile-nav-phone {
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    color: var(--rose-lt) !important;
}
.mobile-nav-cta {
    background: var(--rose) !important;
    color: #fff !important;
    text-align: center;
    font-weight: 600 !important;
    margin-top: 4px;
    border-bottom: none !important;
}
.mobile-nav-cta:hover {
    background: #b36d73 !important;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: 66px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    background: var(--navy-mid);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-lines {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 59px,
        rgba(193, 123, 129, 0.06) 59px,
        rgba(193, 123, 129, 0.06) 60px
    );
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--rose) 25%,
        var(--rose) 75%,
        transparent
    );
}

.hero-inner {
    flex: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 0 0 50%;
    padding: 40px 64px 40px 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose-lt);
    animation: fadeUp 0.5s ease both;
}
.hero-eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--rose);
}

.hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 700;
    color: #fff;
    line-height: 1.07;
    margin-bottom: 24px;
    animation: fadeUp 0.5s 0.1s ease both;
}
.hero-h1 em {
    font-style: italic;
    color: var(--rose-lt);
}

.hero-sub {
    font-size: 15.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s 0.18s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.5s 0.26s ease both;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    background: var(--rose);
    color: #fff;
    font-family: var(--font-b);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        background 0.18s,
        transform 0.15s;
}
.btn-primary-lg:hover {
    background: #b36d73;
    transform: translateY(-2px);
}
.btn-primary-lg svg {
    width: 13px;
    height: 13px;
}

.btn-ghost-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 26px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-b);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        color 0.18s,
        border-color 0.18s,
        transform 0.15s;
}
.btn-ghost-lg:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    animation: fadeUp 0.5s 0.35s ease both;
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.trust-num {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 700;
    color: var(--rose-lt);
    line-height: 1;
}
.trust-lbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
}
.trust-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 40px 40px;
    animation: fadeIn 0.8s 0.25s ease both;
}

.hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-photo-frame {
    width: 100%;
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(193, 123, 129, 0.22);
    position: relative;
}
.hero-photo-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        var(--rose) 40%,
        var(--rose-lt) 60%,
        transparent 95%
    );
    z-index: 2;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(24, 41, 59, 0.35) 0%,
        transparent 60%
    );
}

.hero-photo-badge {
    position: absolute;
    top: -14px;
    right: 0;
    display: flex;
    align-items: center;
    background: var(--rose);
    border-radius: var(--radius);
    padding: 9px 16px;
    z-index: 3;
}
.hero-badge-main {
    font-family: var(--font-h);
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.hero-photo-stat {
    position: absolute;
    bottom: -14px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-deep);
    border: 1px solid rgba(193, 123, 129, 0.35);
    border-radius: var(--radius);
    padding: 9px 16px;
    z-index: 3;
}
.hero-stat-num {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    color: var(--rose-lt);
    line-height: 1;
}
.hero-stat-label {
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(193, 123, 129, 0.08);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.svc-card {
    padding: 28px 24px;
    border: 1px solid var(--quartz-dk);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}
.svc-card:hover {
    border-color: var(--rose);
}
.svc-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}
.svc-card:hover::after {
    transform: scaleX(1);
}
.svc-icon {
    width: 40px;
    height: 40px;
    background: var(--quartz);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.svc-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.4;
}
.svc-card h3 {
    font-family: var(--font-h);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.svc-card p {
    font-size: 13.5px;
    color: #556070;
    line-height: 1.72;
}

/* ══════════════════════════════════════════════════════
   WHY WENDT
══════════════════════════════════════════════════════ */
.why-us {
    padding: 80px 0;
    background: var(--navy);
}
.why-us .eyebrow::before {
    background: var(--rose-lt);
}
.why-us .eyebrow {
    color: var(--rose-lt);
}
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.why-content p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
    margin: 16px 0;
}
.why-quote {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 16px;
    color: var(--rose-lt);
    border-left: 2px solid var(--rose);
    padding: 6px 0 6px 20px;
    margin: 24px 0 8px;
    line-height: 1.7;
}
.why-quote-attr {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.35);
    padding-left: 24px;
}
.why-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pillar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(193, 123, 129, 0.2);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: border-color 0.2s;
}
.pillar:hover {
    border-color: rgba(193, 123, 129, 0.5);
}
.pillar-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}
.pillar-icon svg {
    width: 36px;
    height: 36px;
}
.pillar h4 {
    font-family: var(--font-h);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.pillar p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}
.pillar:last-child {
    border-color: rgba(193, 123, 129, 0.4);
    background: rgba(193, 123, 129, 0.07);
}
.pillar:last-child h4 {
    color: var(--rose-lt);
}

/* ══════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════ */
.gallery {
    padding: 80px 0;
    background: var(--navy);
}
.gallery .eyebrow::before {
    background: var(--rose-lt);
}
.gallery .eyebrow {
    color: var(--rose-lt);
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 8px;
}
.gallery-grid .gal-cell:nth-child(1) {
    grid-row: 1 / 3;
}
.gal-cell {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(193, 123, 129, 0.12);
    position: relative;
}
.gal-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.gal-cell--portrait img {
    object-position: center 25%;
}
.gal-cell--child-smile img {
    object-position: center 70%;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials {
    padding: 80px 0;
    background: var(--navy-deep);
}
.testimonials .eyebrow::before {
    background: var(--rose-lt);
}
.testimonials .eyebrow {
    color: var(--rose-lt);
}
.testimonials .section-h2 {
    color: var(--white);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(193, 123, 129, 0.18);
    border-top: 2px solid var(--rose);
    padding: 28px 24px;
    border-radius: var(--radius);
}
.stars {
    color: var(--rose);
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.testi-quote {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.78;
    margin-bottom: 16px;
}
.testi-name {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-lt);
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about {
    padding: 80px 0;
    background: var(--quartz);
    border-top: 1px solid rgba(193, 123, 129, 0.15);
}
.about-inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}
.about-photo-wrap {
    flex: 0 0 360px;
    position: relative;
}
.about-photo {
    width: 360px;
    height: 460px;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-photo-border {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--rose);
    border-radius: var(--radius);
    opacity: 0.3;
    pointer-events: none;
}
.about-content .section-h2 {
    margin-bottom: 18px;
}
.about-content p {
    font-size: 14.5px;
    color: #4a5a6a;
    line-height: 1.85;
    margin-bottom: 15px;
}
.about-blockquote {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 18px;
    color: var(--navy);
    border-left: 3px solid var(--rose);
    background: rgba(193, 123, 129, 0.08);
    padding: 14px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
}
.about-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.tag {
    padding: 7px 16px;
    background: rgba(193, 123, 129, 0.12);
    border: 1px solid rgba(193, 123, 129, 0.25);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}

/* ══════════════════════════════════════════════════════
   FINANCING
══════════════════════════════════════════════════════ */
.financing {
    padding: 80px 0;
    background: var(--navy-deep);
}
.financing .eyebrow::before {
    background: var(--rose-lt);
}
.financing .eyebrow {
    color: var(--rose-lt);
}
.financing-inner {
    display: flex;
    gap: 64px;
    align-items: center;
}
.financing-left {
    flex: 1;
}
.financing-left .section-h2 {
    margin-bottom: 16px;
}
.financing-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 400px;
}
.financing-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.financing-btns .btn-primary {
    text-decoration: none;
}
.btn-financing-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 22px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        color 0.18s,
        border-color 0.18s;
}
.btn-financing-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}
.financing-disclaimer {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}
.fin-grid {
    flex: 0 0 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.fin-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(193, 123, 129, 0.2);
    border-radius: var(--radius);
    padding: 22px 20px;
}
.fin-num {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 700;
    color: var(--rose-lt);
    line-height: 1;
}
.fin-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 5px;
}

/* ══════════════════════════════════════════════════════
   SCHEDULE
══════════════════════════════════════════════════════ */
.schedule {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(193, 123, 129, 0.08);
}
.schedule-sub {
    font-size: 14.5px;
    color: #556070;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 40px;
}
.schedule-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}
.hours-card {
    background: var(--quartz);
    border-radius: var(--radius);
    padding: 24px 20px;
    margin-bottom: 20px;
}
.hours-card h4 {
    font-family: var(--font-h);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--quartz-dk);
    gap: 12px;
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-day {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
}
.hours-time {
    font-size: 13px;
    color: var(--rose);
    font-weight: 600;
}
.schedule-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(193, 123, 129, 0.08);
    border: 1px solid rgba(193, 123, 129, 0.25);
    border-radius: var(--radius);
    font-size: 13px;
    color: #556070;
    line-height: 1.6;
}
.schedule-note a {
    color: var(--rose);
    font-weight: 600;
    text-decoration: none;
}
.schedule-note a:hover {
    text-decoration: underline;
}
.calendly-wrap {
    min-height: 280px;
}
.cal-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    background: var(--quartz);
    border: 1px dashed var(--quartz-dk);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
}
.cal-placeholder-inner p {
    font-size: 15px;
    color: #556070;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(193, 123, 129, 0.1);
}
.contact-inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}
.contact-info {
    flex: 0 0 280px;
}
.info-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.info-icon {
    width: 34px;
    height: 34px;
    background: var(--rose);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}
.info-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 2px;
}
.info-val {
    font-size: 14px;
    color: var(--navy);
}
.contact-form {
    flex: 1;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}
.field label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a8a9a;
}
.field input,
.field textarea,
.field select {
    background: #fff;
    border: 1px solid var(--quartz-dk);
    padding: 10px 12px;
    border-radius: var(--radius);
    font-family: var(--font-b);
    font-size: 13.5px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--rose);
}
.field textarea {
    height: 96px;
    resize: none;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--rose);
    color: #fff;
    font-family: var(--font-b);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        background 0.18s,
        transform 0.15s;
}
.btn-submit:hover {
    background: #b36d73;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
    background: #0a1622;
    padding: 28px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(193, 123, 129, 0.15);
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.footer-logo-icon {
    width: 28px;
    height: 28px;
}
.footer-logo-icon svg {
    width: 28px;
    height: 28px;
}
.footer-name {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.footer-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
}
.footer-copy {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}
.footer-tag {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 13px;
    color: var(--rose-lt);
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --pad-x: 32px;
    }
    nav {
        padding: 0 32px;
    }
    .logo-tag {
        display: none;
    }
    .nav-links a {
        padding: 7px 10px;
        font-size: 11px;
    }
    .nav-phone {
        display: none;
    }
    .hero-left {
        flex: 0 0 52%;
        padding: 40px 40px 40px 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-inner {
        gap: 48px;
    }
    .about-inner {
        gap: 48px;
    }
    .about-photo-wrap {
        flex: 0 0 280px;
    }
    .about-photo {
        width: 280px;
        height: 360px;
    }
    .financing-inner {
        gap: 48px;
    }
    .fin-grid {
        flex: 0 0 360px;
    }
    .schedule-inner {
        grid-template-columns: 260px 1fr;
        gap: 32px;
    }
    .contact-inner {
        gap: 48px;
    }
    .contact-info {
        flex: 0 0 240px;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --pad-x: 20px;
    }

    /* Nav */
    header {
        z-index: 1000;
    }
    nav {
        height: 60px;
        padding: 0 20px;
    }
    .logo-tag {
        display: none;
    }
    .logo-name {
        font-size: 13px;
    }
    .logo-icon,
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    .nav-links,
    .nav-phone,
    .btn-nav {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .mobile-nav {
        padding-top: 60px;
    }

    /* Hero */
    .hero {
        padding-top: 60px;
        min-height: auto;
    }
    .hero-inner {
        flex-direction: column;
        padding: 0 var(--pad-x);
    }
    .hero-panel,
    .hero-lines {
        display: none;
    }
    .hero-stripe {
        width: 2px;
    }
    .hero-left {
        flex: none;
        width: 100%;
        padding: 36px 0 24px;
    }
    .hero-h1 {
        font-size: clamp(34px, 9vw, 48px);
        margin-bottom: 18px;
    }
    .hero-sub {
        font-size: 14.5px;
        max-width: 100%;
        margin-bottom: 28px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .btn-primary-lg,
    .btn-ghost-lg {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 32px;
        padding-top: 24px;
    }
    .trust-item {
        flex: 1 1 40%;
    }
    .trust-sep {
        display: none;
    }
    .trust-num {
        font-size: 20px;
    }
    .hero-right {
        flex: none;
        width: 100%;
        padding: 0 0 56px;
    }
    .hero-photo-wrap {
        max-width: 100%;
    }
    .hero-photo-frame {
        height: 260px;
    }
    .hero-photo-stat {
        display: none;
    }
    .hero-photo-badge {
        top: -10px;
        right: 0;
    }
    .hero-badge-main {
        font-size: 11.5px;
    }

    /* Sections */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .svc-card {
        padding: 24px 18px;
    }
    .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-pillars {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 200px 200px;
    }
    .gallery-grid .gal-cell:nth-child(1) {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .testi-card {
        padding: 24px 20px;
    }
    .about-inner {
        flex-direction: column;
        gap: 32px;
    }
    .about-photo-wrap {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .about-photo {
        width: 100%;
        max-width: 340px;
        height: 380px;
    }
    .about-photo-border {
        display: none;
    }
    .financing-inner {
        flex-direction: column;
        gap: 32px;
    }
    .fin-grid {
        flex: none;
        width: 100%;
    }
    .schedule-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-inner {
        flex-direction: column;
        gap: 32px;
    }
    .contact-info {
        flex: none;
        width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 24px var(--pad-x);
    }
    .footer-sep {
        display: none;
    }
    .footer-copy {
        font-size: 11px;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root {
        --pad-x: 16px;
    }
    .hero-h1 {
        font-size: clamp(30px, 8.5vw, 40px);
    }
    .section-h2 {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 28px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    .gallery-grid .gal-cell:nth-child(1) {
        grid-column: auto;
    }
    .fin-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .fin-num {
        font-size: 24px;
    }
}

/* ─── Gallery: wide cell spans 2 columns top-right ── */
.gal-cell--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gal-cell--wide {
        grid-column: 1 / 3;
    }
}
@media (max-width: 480px) {
    .gal-cell--wide {
        grid-column: auto;
    }
}

/* ══════════════════════════════════════════════════════
   MOBILE POLISH — tighter spacing, better gallery
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* ── General section padding ─────────────────────── */
    .services,
    .why-us,
    .gallery,
    .testimonials,
    .about,
    .financing,
    .schedule,
    .contact {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-h2 {
        margin-bottom: 24px;
    }

    /* ── Hero ────────────────────────────────────────── */
    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.08em;
        gap: 6px;
        margin-bottom: 18px;
    }
    .hero-eyebrow::before {
        width: 16px;
    }

    .hero-h1 {
        font-size: clamp(30px, 8vw, 42px);
        margin-bottom: 14px;
    }
    .hero-sub {
        font-size: 13.5px;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .hero-actions {
        gap: 8px;
    }
    .btn-primary-lg,
    .btn-ghost-lg {
        padding: 13px 16px;
        font-size: 12px;
    }

    .hero-trust {
        margin-top: 24px;
        padding-top: 20px;
        gap: 10px;
    }
    .trust-num {
        font-size: 18px;
    }
    .trust-lbl {
        font-size: 9px;
    }
    .trust-item {
        flex: 1 1 38%;
    }

    .hero-right {
        padding-bottom: 40px;
    }
    .hero-photo-frame {
        height: 240px;
    }

    /* ── Services ────────────────────────────────────── */
    .services-grid {
        gap: 10px;
    }
    .svc-card {
        padding: 20px 16px;
    }
    .svc-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }
    .svc-card h3 {
        font-size: 14.5px;
        margin-bottom: 6px;
    }
    .svc-card p {
        font-size: 13px;
        line-height: 1.65;
    }

    /* ── Why Wendt ───────────────────────────────────── */
    .why-us {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .why-inner {
        gap: 28px;
    }
    .why-content p {
        font-size: 13.5px;
        line-height: 1.75;
        margin-bottom: 12px;
    }
    .why-quote {
        font-size: 14px;
        margin: 18px 0 6px;
        padding: 4px 0 4px 16px;
    }
    .why-pillars {
        gap: 10px;
    }
    .pillar {
        padding: 16px 14px;
    }
    .pillar-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }
    .pillar-icon svg {
        width: 28px;
        height: 28px;
    }
    .pillar h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .pillar p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* ── Gallery ─────────────────────────────────────── */
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 200px 220px !important;
        gap: 6px !important;
    }
    /* Wide cell (house exterior) spans both columns */
    .gal-cell--wide {
        grid-column: 1 / 3 !important;
    }
    /* Featured dining — auto on mobile so it doesn't span */
    .gallery-grid .gal-cell:nth-child(1) {
        grid-row: auto !important;
        grid-column: 1 / 3 !important;
    }
    /* Portrait cells — show subjects properly */
    .gal-cell--portrait img {
        object-position: center 15% !important;
    }
    .gal-cell--child-smile img {
        object-position: center 60% !important;
    }

    /* ── Testimonials ────────────────────────────────── */
    .testi-grid {
        gap: 10px;
    }
    .testi-card {
        padding: 20px 16px;
    }
    .testi-quote {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    .testi-name {
        font-size: 10px;
    }
    .stars {
        font-size: 11px;
        margin-bottom: 10px;
    }

    /* ── About ───────────────────────────────────────── */
    .about-inner {
        gap: 24px;
    }
    .about-photo {
        height: 320px;
    }
    .about-content p {
        font-size: 13.5px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    .about-blockquote {
        font-size: 15px;
        padding: 10px 16px;
        margin: 18px 0;
    }
    .about-tags {
        gap: 6px;
        margin-top: 18px;
    }
    .tag {
        padding: 5px 12px;
        font-size: 9.5px;
    }

    /* ── Financing ───────────────────────────────────── */
    .financing-inner {
        gap: 24px;
    }
    .financing-left p {
        font-size: 13.5px;
    }
    .fin-grid {
        gap: 10px;
    }
    .fin-card {
        padding: 18px 14px;
    }
    .fin-num {
        font-size: 24px;
    }
    .fin-label {
        font-size: 10px;
    }
    .financing-btns {
        gap: 10px;
    }
    .btn-primary,
    .btn-financing-ghost {
        padding: 11px 18px;
        font-size: 11px;
    }

    /* ── Schedule ────────────────────────────────────── */
    .schedule-sub {
        font-size: 13.5px;
        margin-bottom: 28px;
    }
    .hours-card {
        padding: 18px 16px;
    }
    .hours-card h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .hours-day,
    .hours-time {
        font-size: 12.5px;
    }
    .hours-row {
        padding: 7px 0;
    }
    .schedule-note {
        font-size: 12px;
        padding: 10px 12px;
    }
    .cal-placeholder-inner {
        padding: 28px 20px;
        min-height: 200px;
    }
    .cal-placeholder-inner p {
        font-size: 13.5px;
    }

    /* ── Contact ─────────────────────────────────────── */
    .contact-inner {
        gap: 28px;
    }
    .info-item {
        margin-bottom: 14px;
    }
    .info-lbl {
        font-size: 9.5px;
    }
    .info-val {
        font-size: 13px;
    }
    .field {
        margin-bottom: 10px;
    }
    .field label {
        font-size: 9.5px;
    }
    .field input,
    .field textarea,
    .field select {
        padding: 9px 11px;
        font-size: 13px;
    }
    .btn-submit {
        padding: 13px;
        font-size: 12px;
    }

    /* ── Footer ──────────────────────────────────────── */
    .footer-name {
        font-size: 12px;
    }
    .footer-copy {
        font-size: 10.5px;
    }
    .footer-tag {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services,
    .why-us,
    .gallery,
    .testimonials,
    .about,
    .financing,
    .schedule,
    .contact {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(4, 200px) !important;
    }
    .gallery-grid .gal-cell:nth-child(1),
    .gal-cell--wide {
        grid-column: auto !important;
    }

    .hero-photo-frame {
        height: 200px;
    }
    .about-photo {
        height: 280px;
    }
}
