/* Select Sunrooms – 1:1 clone styles. No platform scripts. */
:root {
    --color-primary: #1f5a3b;
    --color-accent: #f0c04f;
    --color-light: #f4f0e5;
    --color-white: #fff;
    --color-dark: #163c2b;
    --font-heading: Georgia, "Times New Roman", serif;
    --font-body: Arial, Helvetica, sans-serif;
    --max-width: 1200px;
    --header-height: 120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: #1b1b1b;
    background: var(--color-light);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    z-index: 100;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    background: var(--color-primary);
    box-shadow: none;
}
.header-top {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0;
    border-bottom: 0;
}
.header-top-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    height: 74px;
    overflow: visible;
}
.header-top-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 4px;
    width: 218px;
    text-align: center;
}
.header-top-text .tagline {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    font-family: Arial, "MS PGothic", "ms pgothic", Dotum, Helvetica, sans-serif;
    color: #ff0;
    line-height: 13px;
}
.header-top-text .phone {
    margin: 4px 0 0;
    font-size: 10px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: var(--color-white);
    line-height: 11px;
}
.header-top-text .phone a {
    color: inherit;
    text-decoration: none;
}
.header-top-text .phone a:hover { text-decoration: underline; }
.header-top-email {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
    font-family: "Roboto", sans-serif;
    color: var(--color-white);
    text-decoration: none;
    line-height: 12px;
}
.header-top-email:hover { text-decoration: underline; }
.header-top-social {
    position: absolute;
    left: calc(50% + 136px);
    top: 43px;
    display: flex;
    gap: 4px;
}
.header-top-social img {
    display: block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
}
.header-top-logo-left,
.header-top-logo-right,
.header-top-badge {
    position: absolute;
}
.header-top-logo-left {
    left: 8px;
    top: 16px;
}
.header-top-logo-right {
    right: 8px;
    top: 16px;
    left: auto;
}
.header-top-badge {
    right: 132px;
    top: 13px;
    left: auto;
}
.header-top-logo-left img,
.header-top-logo-right img,
.header-top-badge img {
    display: block;
}
.header-top-logo-left img { width: 74px; height: 34px; }
.header-top-logo-right img { width: 74px; height: 34px; }
.header-top-badge img { width: 48px; height: 38px; }

.header-main {
    padding: 1px 0;
    background: #2f5c46;
    border-top: 1px solid rgba(255,255,255,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
.header-main-inner {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
}
.logo { display: block; }
.logo.badge { margin-right: 0.5rem; }
.logo img { display: block; height: 56px; width: auto; }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255,255,255,0.5);
    background: var(--color-primary);
    cursor: pointer;
    position: relative;
}
.nav-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--color-white);
    box-shadow: 0 -6px 0 var(--color-white), 0 6px 0 var(--color-white);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 4px 8px;
    color: #e8e8e8;
    text-decoration: none;
    font-family: "Questrial", Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.1;
}
.nav-link:hover { text-decoration: none; color: #d84d6b; }
.nav-link.active { font-weight: 400; color: #d84d6b; }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 200px;
    background: #1c4736;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav-item.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 0.4rem 0.7rem;
    color: #f0f0f0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 10px;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.1); }

/* Main */
.main { min-height: 50vh; }

/* Hero */
.hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 42px 1rem 36px;
    background: #0f3a27;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 1;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-kicker {
    margin: 0 0 0.8rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.5), -1px 1px 0 rgba(0,0,0,0.5),
        1px 1px 0 rgba(0,0,0,0.5), 1px -1px 0 rgba(0,0,0,0.5);
}
.hero-sale {
    font-size: 4.25rem;
    font-weight: 400;
    font-family: Impact, "Arial Black", "Franklin Gothic Medium", sans-serif;
    margin: 0 auto;
    line-height: 58px;
    color: #dceb05;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.5), -1px 1px 0 rgba(0,0,0,0.5),
        1px 1px 0 rgba(0,0,0,0.5), 1px -1px 0 rgba(0,0,0,0.5);
}
.hero-save {
    font-size: 4.25rem;
    font-weight: 400;
    font-family: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
    margin: 0.6rem auto 0;
    line-height: 58px;
    max-width: 600px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.5), -1px 1px 0 rgba(0,0,0,0.5),
        1px 1px 0 rgba(0,0,0,0.5), 1px -1px 0 rgba(0,0,0,0.5);
}
.hero-cta {
    margin: 0.1rem auto 0;
    font-size: 4.25rem;
    font-weight: 400;
    font-family: Impact, "Arial Black", "Franklin Gothic Medium", sans-serif;
    font-style: italic;
    line-height: 58px;
    max-width: 470px;
    color: var(--color-white);
    text-shadow: -1px -1px 0 rgba(0,0,0,0.5), -1px 1px 0 rgba(0,0,0,0.5),
        1px 1px 0 rgba(0,0,0,0.5), 1px -1px 0 rgba(0,0,0,0.5);
}
.btn-hero { margin-top: 0.5rem; }

.hero-sub {
    padding: 1rem 1rem 1.4rem;
    text-align: center;
    background: #1b4c3b;
    color: var(--color-white);
}
.hero-sub-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: center;
    gap: 0.25rem;
}
.hero-sub-center { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.hero-sub-title { font-family: "brandon-grot-w01-light", "Avenir Next", "Questrial", Arial, Helvetica, sans-serif; font-size: 24px; font-weight: 400; margin: 0; color: #ffffff; }
.hero-sub-img { max-width: 180px; height: auto; margin-top: 0.25rem; }
.hero-sub-tag { font-style: normal; margin: 0; color: #dceb05; font-family: "brandon-grot-w01-light", "Avenir Next", "Questrial", Arial, Helvetica, sans-serif; font-size: 24px; font-weight: 400; }
.hero-sub-line { margin: 0.2rem 0 0; font-family: "brandon-grot-w01-light", "Avenir Next", "Questrial", Arial, Helvetica, sans-serif; font-weight: 400; font-size: 20px; color: #ffffff; }
.hero-sub-badge { position: static; justify-self: end; }
.hero-sub .btn-hero-sub {
    margin: 0;
    align-self: center;
    justify-self: start;
    background: #1b4c3b;
    border: 1px solid #fff;
    color: #dceb05;
    text-transform: none;
    font-size: 21px;
    padding: 7px 22px;
    font-weight: 400;
    letter-spacing: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #0f3a27;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    font-size: 1.02rem;
    text-transform: uppercase;
}
.btn:hover { background: #144a33; }

/* Product grid (home) */
.product-grid { padding: 0.5rem 0 0.8rem; background: var(--color-primary); }
.product-grid-inner {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
}
.product-tile {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: 0;
}
.product-tile:hover { background: transparent; }
.product-tile img { width: 100%; height: 122px; object-fit: cover; display: block; margin: 0; }
.product-tile-label {
    font-size: 0.56rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    background: #1b4c3b;
    padding: 0.18rem 0.35rem;
}

/* Sections */
/* Feature grid sections */
.feature-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 0;
    position: relative;
}
.feature-grid::before { display: none; }
.feature {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    width: 100%;
}
.feature:nth-child(odd) { justify-self: stretch; }
.feature:nth-child(even) { justify-self: stretch; }
.feature-reverse { direction: rtl; }
.feature-reverse .feature-content { direction: ltr; }
.feature-media {
    min-height: 248px;
    background-size: cover;
    background-position: center;
    filter: none;
}
.feature-content { padding: 1.25rem; text-align: center; background: #f4efe4; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.feature-content h2 { font-family: var(--font-heading); margin: 0 0 0.5rem; text-transform: uppercase; font-size: 1.1rem; line-height: 1.3; }
.feature-content p { margin: 0 0 0.85rem; font-style: italic; font-size: 0.95rem; }

/* Contact */
.contact-section { padding: 1.2rem 1rem 1.4rem; background: #e9e1d0; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-title { font-size: 1.45rem; margin: 0 0 0.15rem; letter-spacing: 1px; text-align: center; }
.contact-subtitle { font-size: 0.8rem; margin: 0 0 0.7rem; text-align: center; letter-spacing: 1px; }
.contact-form { max-width: 430px; margin: 0 auto; }
.contact-form label { display: block; margin-bottom: 0.25rem; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid #ccc;
    font: inherit;
}
.form-row { display: flex; gap: 0.75rem; }
.form-row input { flex: 1; }
.form-success { color: green; font-weight: 600; margin-top: 0.5rem; }
.btn-send { margin-top: 0.5rem; }

/* Testimonials */
.testimonials {
    padding: 1.4rem 1rem 1.1rem;
    background: #121313;
    color: #f3ead2;
}
.testimonials-inner { max-width: 940px; margin: 0 auto; text-align: center; }
.testimonials-title {
    position: relative;
    display: inline-block;
    margin: 0 0 1rem;
    color: #dceb05;
    font-family: "Futura LT", "Futura", Arial, sans-serif;
    font-size: 1.62rem;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
}
.testimonials-title::before,
.testimonials-title::after {
    content: "❞";
    position: absolute;
    top: -2px;
    color: #dceb05;
    font-size: 1.2rem;
    opacity: 0.95;
}
.testimonials-title::before { left: -26px; transform: scaleX(-1); }
.testimonials-title::after { right: -26px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    text-align: left;
}
.testimonial {
    margin: 0;
    padding: 0.2rem 0;
    border: 0;
}
.testimonial-score {
    display: block;
    color: #dceb05;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 26.4px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial p {
    margin: 0 0 0.45rem;
    color: #efe6cb;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 11.5px;
    line-height: 1.35;
}
.testimonial footer {
    margin-top: 0.1rem;
    text-align: right;
    font-style: normal;
    color: #dceb05;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14.4px;
    font-weight: 700;
}
.testimonials-link {
    display: inline-block;
    margin: 0.85rem 0 0;
    background: #1b4c3b;
    color: #dceb05;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(220, 235, 5, 0.35);
    padding: 6px 14px;
}
.testimonials-link:hover { background: #123628; color: #dceb05; }

/* Page content (inner pages) */
.page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
}
.page-content h1 { font-size: 2.1rem; margin: 0 0 1rem; }
.page-product {
    background: #f3ecdf;
    max-width: none;
    padding: 2rem 1rem 3rem;
}
.page-product .product-layout {
    max-width: 940px;
    margin: 0 auto;
}
.page-model {
    background: #f3ecdf;
    max-width: none;
    padding: 2rem 1rem 3rem;
}
.model-header {
    max-width: 940px;
    margin: 0 auto 0.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 1.02rem;
}
.model-header-single { justify-content: center; }
.model-layout {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.model-text h1 { margin: 0 0 0.5rem; font-size: 1.32rem; }
.model-text p { font-size: 0.984rem; margin: 0 0 0.55rem; }
.model-logo { max-width: 200px; height: auto; display: block; margin-bottom: 0.5rem; }
.model-sections { margin-top: 0.75rem; }
.model-sections-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
}
.model-section { margin-top: 0.75rem; }
.model-sections-columns .model-section { margin-top: 0; }
.model-section h3 { font-size: 1.02rem; margin: 0 0 0.4rem; text-transform: uppercase; }
.model-section ul { margin: 0; padding-left: 1rem; font-size: 0.96rem; }
.model-section li { margin: 0 0 0.25rem; }
.model-media { display: flex; flex-direction: column; gap: 1rem; }
.model-gallery { display: grid; grid-template-columns: 90px 1fr; gap: 0.75rem; }
.model-thumbs { display: flex; flex-direction: column; gap: 0.25rem; }
.model-thumbs img { width: 80px; height: 60px; object-fit: cover; border: 1px solid #ddd; cursor: pointer; }
.model-thumbs img.is-active { border-color: var(--color-primary); }
.model-main img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.model-extra img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.model-logos {
    max-width: 940px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
.model-logos img { max-height: 70px; width: auto; }
.product-variants {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}
.product-variant img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    display: block;
}
.product-variant span {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0.35rem;
    color: #555;
}
.subpage-list { list-style: none; padding: 0; margin: 1rem 0; }
.subpage-list li { margin: 0.5rem 0; }
.subpage-list a { color: var(--color-primary); font-weight: 500; }
.page-404 { text-align: center; padding: 3rem 1rem; }
.page-previous-projects {
    background: #fcf8ed;
    max-width: none;
    padding: 0 0 3rem;
    text-align: center;
}
.previous-projects-header {
    background: #1b4c3b;
    color: var(--color-white);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38.4px;
    font-weight: 400;
    letter-spacing: 1px;
}
.previous-projects-sub {
    text-align: center;
    margin: 0.5rem 0 0.75rem;
    font-size: 15.6px;
    color: #1b4c3b;
    background: #1b4c3b;
    color: #dceb05;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
}
.map-embed {
    margin: 1.25rem auto 0;
    max-width: 940px;
    text-align: center;
    padding: 0 1rem;
}
.previous-projects-map {
    width: 100%;
    height: 560px;
    border: 2px solid #1b4c3b;
    background: #fff;
}
.map-status { display: none; }
.map-embed a { display: none; }
.map-placeholder { padding: 3rem 1rem; color: #333; font-weight: 600; }
.map-info { max-width: 260px; }
.map-info-title { font-weight: 700; margin-bottom: 0.25rem; }
.map-info-desc { margin-bottom: 0.25rem; }
.map-info-address { color: #333; }
.map-embed a {
    display: inline-block;
    margin-top: 0.75rem;
}

/* Promotions page */
.page-promotions {
    background: #f3ecdf;
    max-width: none;
    padding: 0 0 3rem;
}
.promotions-header {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 38.4px;
    font-weight: 400;
    margin: 0 0 1.25rem;
    color: var(--color-white);
    background: #1b4c3b;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promotions-banner {
    max-width: 940px;
    margin: 0 auto;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border: 4px solid #fff;
}
.promotions-text { text-align: center; text-shadow: 0 2px 6px rgba(0,0,0,0.45); }
.promo-line { font-weight: 800; margin: 0.35rem 0; font-size: 1.68rem; line-height: 1.1; }
.promo-red { color: #ff1e5a; font-size: 3.18rem; letter-spacing: 0.5px; }
.promo-yellow { color: #ffe600; font-size: 3.18rem; letter-spacing: 0.5px; }
.promo-white { color: #fff; font-size: 1.44rem; font-style: italic; }
.promo-red-large { font-size: 3.9rem; margin: 0 0.2rem; display: inline-block; }
.promo-various {
    color: #e7e7e7;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}
.promotions-callout {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 1.44rem;
    color: #e64b7a;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* About page */
.page-about {
    background: #1b4c3b;
    color: var(--color-white);
    max-width: none;
    padding: 1rem 1rem 2.4rem;
}
.about-hero {
    max-width: 940px;
    margin: 0 auto 1.2rem;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 0.7rem;
    align-items: stretch;
}
.about-text {
    background: #0e1213;
    padding: 0.95rem 1rem 0.8rem;
}
.about-text h1 {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    margin: 0 0 0.4rem;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}
.about-text h2 {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    color: #dceb05;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.about-text p {
    font-size: 0.73rem;
    margin: 0 0 0.45rem;
    line-height: 1.33;
}
.about-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    border: 0;
    box-shadow: none;
}
.about-columns {
    max-width: 940px;
    margin: 0 auto 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}
.about-column {
    padding: 1.2rem 0.8rem;
    text-align: center;
    min-height: 142px;
}
.about-column:nth-child(1) { background: #0c1f1b; }
.about-column:nth-child(2) { background: #477b7b; }
.about-column:nth-child(3) { background: #58bea8; }
.about-column:nth-child(3) p {
    color: #f2fff9;
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.about-column h3 {
    color: #c8f32e;
    font-size: 0.84rem;
    letter-spacing: 0.6px;
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    line-height: 1.2;
}
.about-column p {
    font-size: 0.72rem;
    margin: 0;
    line-height: 1.32;
}
.about-testimonials {
    max-width: 940px;
    margin: 0 auto;
    background: #ece8dc;
    color: #222;
    padding: 0.9rem 1.25rem 0.6rem;
}
.about-testimonials h2 {
    position: relative;
    text-align: center;
    margin: 0 0 0.7rem;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.4px;
    font-size: 1rem;
    font-weight: 700;
}
.about-testimonials h2::before,
.about-testimonials h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 34%;
    height: 1px;
    background: #cbc6b4;
}
.about-testimonials h2::before { left: 0; }
.about-testimonials h2::after { right: 0; }
.about-testimonials h2 span {
    display: inline-block;
    padding: 0 0.5rem;
    background: #ece8dc;
}
.about-testimonial {
    border-bottom: 1px solid #cbc6b4;
    padding: 0.46rem 0;
}
.about-testimonial p {
    margin: 0 0 0.22rem;
    font-size: 0.67rem;
    line-height: 1.33;
}
.about-testimonial span {
    display: block;
    text-align: right;
    font-weight: 700;
    font-size: 0.67rem;
    color: #2f5c46;
}

/* Sunrooms page grid */
.page-sunrooms {
    background: var(--color-primary);
    color: var(--color-white);
    max-width: none;
    padding: 2rem 1rem 3rem;
}
.sunrooms-title {
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 2.04rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}
.sunrooms-grid {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.sunrooms-card {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    background: transparent;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}
.sunrooms-card-image img { width: 100%; height: auto; display: block; }
.sunrooms-card-image img { height: 190px; object-fit: cover; }
.sunrooms-card-label {
    background: var(--color-primary);
    padding: 0.5rem 0.75rem;
    text-align: center;
    font-size: 1.02rem;
    text-transform: none;
}

.page-products {
    background: #f3ecdf;
    color: #222;
    max-width: none;
    padding: 0 0 3rem;
}
.products-title {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 38.4px;
    font-weight: 400;
    margin: 0 0 1.5rem;
    color: var(--color-white);
    background: #1b4c3b;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: none;
}
.products-grid {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.products-card {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    background: transparent;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}
.products-card-image img { width: 100%; height: 190px; object-fit: cover; display: block; }
.products-card-label {
    background: var(--color-primary);
    padding: 0.5rem 0.75rem;
    text-align: center;
    font-size: 1.02rem;
}
.products-card-empty {
    background: transparent;
    box-shadow: none;
}
.products-card-empty::after {
    content: "";
    display: block;
    height: 200px;
}
/* Subpage hero */
.subpage-hero {
    background: var(--color-primary);
    padding: 1.25rem 1rem 0.75rem;
}
.subpage-hero-inner {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
}
.subpage-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.subpage-hero-content h1 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-size: 1.92rem;
}

.subpage-intro {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1rem 1rem;
}
.subpage-intro-inner {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.subpage-intro h2 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.subpage-intro p {
    margin: 0;
    color: var(--color-accent);
    font-size: 1.14rem;
}

/* Product layout with gallery */
.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}
.product-text h1 { margin-top: 0; font-size: 1.32rem; }
.product-text h2 { margin-top: 0.85rem; font-size: 1.14rem; letter-spacing: 0.4px; }
.product-text ul { padding-left: 1.1rem; font-size: 0.984rem; }
.product-gallery {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.75rem;
    align-items: start;
}
.product-thumbs {
    display: grid;
    gap: 0.25rem;
}
.product-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    background: #fff;
}
.product-main img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Gallery */
.page-gallery {
    background: #030601;
    max-width: none;
    padding: 0 0 2.5rem;
}
.page-gallery h1 {
    margin: 0 0 1.25rem;
    text-align: center;
    background: #1b4c3b;
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 38.4px;
    font-weight: 400;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-wrapper { max-width: 1040px; margin: 0 auto; padding: 12px 12px 0; background: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 18px;
    background: #fff;
}
.gallery-category { padding-bottom: 2.5rem; text-align: center; }
.gallery-more-wrap { margin-top: 40px; }
.btn-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto 0;
    background: #1b4c3b;
    color: #fff;
    border: 0;
    padding: 0.6rem 2rem;
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}
.btn-show-more:hover { background: #14362a; }
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-bottom: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; vertical-align: middle; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; width: auto; height: auto; object-fit: contain; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 1100px) {
    .gallery-wrapper { max-width: 980px; }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Video page */
.page-video {
    background: var(--color-primary);
    color: var(--color-white);
    max-width: none;
    padding: 1.15rem 1rem 7rem;
}
.video-header {
    max-width: 560px;
    margin: 0 auto 0.55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    gap: 0.75rem;
}
.video-header h1 {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}
.video-header h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #dceb05;
}
.video-stack {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    gap: 0.6rem;
}
.video-stack-item {
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    background: #050505;
    overflow: hidden;
}
.video-stack-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
}
.video-stack-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
}
.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 40px;
    border-radius: 10px;
    background: rgba(220, 18, 18, 0.93);
    box-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.video-play::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 11px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid #fff;
}
.video-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 0.68rem;
    line-height: 1.2;
    color: #fff;
    padding: 0.27rem 0.45rem;
    background: rgba(0,0,0,0.5);
}
.video-follow {
    max-width: 560px;
    margin: 0.55rem auto 0;
    text-align: right;
    font-size: 0.72rem;
    color: #dceb05;
    font-weight: 700;
}

/* Careers */
.page-careers {
    background: #fcf8ed;
    max-width: none;
    padding: 0 0 3rem;
}
.careers-header {
    background: #1b4c3b;
    color: var(--color-white);
    height: 54px;
    padding: 0 1rem;
}
.careers-header-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.careers-title {
    grid-column: 2;
    font-size: 38.4px;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}
.careers-sub {
    grid-column: 3;
    justify-self: end;
    font-size: 16.8px;
    font-weight: 400;
    font-family: "Futura LT", "Futura", Arial, sans-serif;
    letter-spacing: 1.6px;
}
.careers-body {
    max-width: 940px;
    margin: 0 auto;
    padding: 18px 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
}
.careers-text h1 {
    margin: 0 0 0.5rem;
    font-size: 33.6px;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}
.careers-text p {
    margin: 0;
    max-width: 340px;
    font-size: 16.8px;
    font-weight: 400;
    font-family: "Brandon Grot", Arial, sans-serif;
    color: #181818;
    line-height: 1.4;
}
.careers-media {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.75rem;
    align-items: start;
}
.careers-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.careers-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    display: block;
    border: 1px solid #ddd;
}
.careers-main img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Footer */
.site-footer {
    background: #1b4c3b;
    color: var(--color-white);
    padding: 10px 0 14px;
    margin-top: 0;
}
.footer-inner { max-width: 940px; margin: 0 auto; text-align: center; }
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    align-items: start;
    margin-bottom: 0.7rem;
}
.footer-col h3 {
    color: #dceb05;
    margin: 0;
    font-size: 12px;
    font-family: Tahoma, Arial, sans-serif;
    text-transform: none;
    letter-spacing: 0;
    line-height: 14px;
}
.footer-block { margin-top: 8px; }
.footer-line {
    margin: 0 0 5px;
    font-size: 10px;
    font-family: Tahoma, Arial, sans-serif;
    line-height: 14px;
    color: var(--color-white);
}
.footer-line:last-child { margin-bottom: 0; }
.footer-phone { font-size: 11px; line-height: 14px; margin-bottom: 6px; }
.footer-phone a { color: inherit; text-decoration: none; }
.footer-phone a:hover { text-decoration: underline; }
.footer-email a { color: #dceb05; text-decoration: none; font-size: 10px; font-weight: 700; font-family: "Roboto", Arial, sans-serif; }
.footer-email a:hover { text-decoration: underline; }
.footer-social { display: flex; justify-content: center; gap: 0.25rem; margin-top: 0.2rem; }
.footer-social img { display: block; width: 14px; height: 14px; }
.footer-financing {
    width: 52px;
    height: 52px;
    margin: 0.2rem auto 0.3rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f2f1a1, #c2c86a 55%, #7a8b3e 100%);
    border: 2px solid rgba(0,0,0,0.2);
    color: #1b4c3b;
    font-size: 7px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.05;
    letter-spacing: 0.3px;
}
.footer-financing strong { font-size: 8px; }
.footer-logo-small { display: block; margin: 0.25rem auto 0; width: 82px; height: auto; }
.footer-copy {
    margin: 0.1rem 0 0;
    font-size: 8px;
    font-family: "Open Sans", Arial, sans-serif;
    opacity: 1;
    background: transparent;
    padding: 0;
    display: block;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top-inner {
        position: static;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.2rem;
        padding: 0.3rem 0.75rem 0.45rem;
    }
    .header-top-logo-left,
    .header-top-logo-right,
    .header-top-badge,
    .header-top-text,
    .header-top-email,
    .header-top-social {
        position: static;
        left: auto;
        top: auto;
        transform: none;
    }
    .header-top-logo-left,
    .header-top-badge { display: none; }
    .header-top-logo-right { order: 1; }
    .header-top-text { order: 2; width: auto; text-align: center; }
    .header-top-email { order: 3; font-style: normal; }
    .header-top-social { order: 4; margin-top: 0.1rem; }
    .header-top-text .tagline { font-size: 18px; line-height: 20px; }
    .header-top-text .phone { font-size: 17px; margin-top: 2px; line-height: 18px; }
    .header-top-email { font-size: 14px; line-height: 16px; }
    .header-top-logo-right img {
        width: auto;
        height: 42px;
    }
    .header-main {
        padding: 2px 0;
    }
    .header-main-inner {
        justify-content: flex-end;
        padding: 0 0.5rem;
    }
    .nav-toggle { display: block; }
    .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--color-dark); box-shadow: 0 4px 12px rgba(0,0,0,0.1); max-height: 0; overflow: hidden; transition: max-height 0.3s; }
    .nav.open { max-height: 80vh; overflow-y: auto; }
    .nav-list { flex-direction: column; align-items: stretch; padding: 0.5rem; }
    .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.08); max-height: 0; overflow: hidden; transition: max-height 0.3s; }
    .nav-item.has-dropdown.open .nav-dropdown { max-height: 500px; }
    .nav-item:hover .nav-dropdown { max-height: 0; }
    .hero { min-height: 320px; padding: 2rem 0.6rem 1.4rem; }
    .hero-kicker { font-size: 1rem; line-height: 1.2; margin-bottom: 0.45rem; }
    .hero-sale, .hero-save, .hero-cta { font-size: 2.35rem; line-height: 1.05; }
    .hero-sub-inner { grid-template-columns: 1fr; text-align: center; }
    .btn-hero-sub { justify-self: center; margin-bottom: 0.75rem; }
    .hero-sub-badge { justify-self: center; margin-top: 0.75rem; }
    .hero-sub-title, .hero-sub-tag { font-size: 1.44rem; }
    .hero-sub-line { font-size: 1.2rem; }
    .btn-hero-sub { font-size: 1.14rem; }
    .product-grid-inner { grid-template-columns: repeat(2, 1fr); }
    .feature { grid-template-columns: 1fr; width: 100%; }
    .feature-grid::before { inset: 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .sunrooms-grid { grid-template-columns: repeat(2, 1fr); }
    .subpage-hero-inner { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr; }
    .product-layout { grid-template-columns: 1fr; }
    .product-gallery { grid-template-columns: 1fr; }
    .product-thumbs { grid-template-columns: repeat(3, 1fr); }
    .product-thumbs img { width: 100%; height: auto; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero { grid-template-columns: 1fr; }
    .about-image img { min-height: 0; }
    .about-columns { grid-template-columns: 1fr; }
    .model-layout { grid-template-columns: 1fr; }
    .model-header { flex-direction: column; align-items: center; gap: 0.35rem; text-align: center; }
    .model-gallery { grid-template-columns: 1fr; }
    .model-thumbs { flex-direction: row; flex-wrap: wrap; }
    .model-thumbs img { width: 72px; height: 54px; }
    .product-variants { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .video-header,
    .video-stack { max-width: 520px; }
    .careers-header { height: auto; padding: 0.75rem 1rem; }
    .careers-header-inner { grid-template-columns: 1fr; text-align: center; gap: 0.35rem; }
    .careers-title { grid-column: 1; }
    .careers-sub { grid-column: 1; justify-self: center; font-size: 16.8px; }
    .page-careers { padding-top: 0; }
    .careers-body { grid-template-columns: 1fr; padding: 0.9rem 1rem 0; gap: 1.1rem; }
    .careers-media { grid-template-columns: 1fr; }
    .careers-thumbs { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .careers-thumbs img { width: 72px; height: 54px; }
    .previous-projects-header { font-size: 33.6px; height: auto; padding: 0.75rem 1rem; text-align: center; }
    .previous-projects-map { height: 420px; }
    .map-embed { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .hero { min-height: 260px; padding: 1.4rem 0.5rem 1rem; }
    .hero-kicker { font-size: 0.88rem; line-height: 1.15; }
    .hero-sale, .hero-save, .hero-cta { font-size: 1.78rem; line-height: 1.02; }
    .hero-sub-title, .hero-sub-tag { font-size: 1.2rem; }
    .hero-sub-line { font-size: 1.14rem; }
    .hero-sub-badge { position: static; margin-top: 0.75rem; }
    .header-top-text .tagline { font-size: 18px; }
    .header-top-text .phone { font-size: 16px; }
    .header-top-email { font-size: 14px; }
    .product-grid-inner { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .testimonials { padding: 1.5rem 1rem 1.4rem; }
    .testimonials-title { font-size: 1.38rem; }
    .testimonials-title::before { left: -18px; }
    .testimonials-title::after { right: -18px; }
    .sunrooms-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-variants { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .page-video { padding-bottom: 5rem; }
    .video-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }
    .video-header h1 { font-size: 1.68rem; }
    .video-header h2 { font-size: 0.85rem; }
    .video-play {
        width: 50px;
        height: 35px;
    }
    .video-play::before {
        left: 20px;
        top: 10px;
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 12px;
    }
    .careers-title { font-size: 34px; }
    .careers-body p { max-width: 100%; }
    .page-careers { padding-top: 0; }
    .previous-projects-header { font-size: 26.4px; }
    .previous-projects-map { height: 320px; }
}
