/* =====================================================
   The Insulated Panel Store - Landing Page
   Colours: green #69B124 | navy #07121A | white #FFFFFF
   ===================================================== */

:root {
    --green: #69B124;
    --green-dark: #58941d;
    --navy: #07121A;
    --navy-soft: #101d28;
    --white: #FFFFFF;
    --ink: #16212b;
    --grey-text: #4b5560;
    --border-grey: #e3e6e8;
    --tint-bg: #f5f7f4;
    --radius: 6px;
    --font: 'Scoutie Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
}

/*::-webkit-scrollbar {
    width: 3px;
    height: 5px;
}*/

html, body {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    word-wrap: break-word;
    min-height: 100%;
    position: relative;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 860px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }

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

a { text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.03em;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-block { width: 100%; }

.btn-submit {
    font-size: 0.9rem;
    padding: 16px 40px;
}
.btn-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

.btn-request {
    width: 34px;
}
.btn-showroom-visit {
    width: 34px;
}

/* =====================================================
   HEADER + HERO
   ===================================================== */
.site-header { position: relative; padding: 0; }

.hero-section {
    background: linear-gradient(100deg, rgba(7,18,26,0.97) 0%, rgba(7,18,26,0.72) 42%, rgba(7,18,26,0.15) 68%, rgba(7,18,26,0) 100%),
                url('/images/pages/landing-page-holiday-lodges/hero-lodge-night.webp');
    background-size: cover;
    background-position: left;
    color: var(--white);
    /*padding-top: 28px;*/
    /*padding-bottom: 70px;*/
}

.header-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-top: 28px;
}
.logo-mark {
    width: 302px;
    height: 127px;
    flex-shrink: 0;
}
.logo-title {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.logo-sub {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #cfd8dc;
    margin-top: 3px;
}
.logo-sub strong { color: var(--green); }

.kingspan-badge-border {
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
    padding: 0 1px 1px 1px;
}
.kingspan-badge-container {
    background: var(--green);
    color: var(--white);
    padding: 14px 16px 36px;
    text-align: center;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.35;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
    min-width: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.kingspan-badge {
    position: absolute;
    right: 5%;
}

.hero-content {
    padding-top: 10px;
    padding-bottom: 70px;
}
.hero-text { max-width: 620px; }

.hero-text h1 {
    font-size: 3.45rem;
    line-height: 1.08;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}
.hero-text h1::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--green);
    width: 52px;
}

.hero-copy {
    font-size: 20px;
    color: #e5e9ec;
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn img { filter: brightness(0) invert(1); }
.hero-ctas .btn-primary img { filter: none; }

/* Feature strip under hero */
.feature-strip {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 26px 0;
    overflow: hidden;
}
.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
    border-right: 2px solid rgba(107, 133, 40, 0.8);
    padding-right: 14px;
}
.feature-item:last-child { border-right: none; }
.feature-item img {
    flex-shrink: 0;
    margin-top: 0;
    width: 68px;
}
.feature-item h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.25;
    font-weight: 700;
    min-height: 68px;
}
.feature-item p {
    font-size: 0.76rem;
    color: #b7c0c6;
    margin: 0;
    line-height: 1.4;
}

/* =====================================================
   SECTION GENERICS
   ===================================================== */
.section { padding: 42px 0; }
.section-tint { background: var(--tint-bg); }
.section-white { background: var(--white); }

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.01em;
}
.section-title span, .section-title .text-green {
    color: var(--green);
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
}
.section-title--left { text-align: left; }
.section-title--left::after { left: 0; transform: none; }

.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
    color: var(--grey-text);
    font-size: 1.04rem;
}
.section-intro--left { text-align: left; margin-left: 0; }

/* =====================================================
   LODGE CONFIGURATION
   ===================================================== */
#lodge-configuration .section-title {
    text-align: left;
}
#lodge-configuration .section-title::after {
    left: 0;
    transform: none;
    width: 70px;
}
#lodge-configuration .section-intro {
    text-align: left;
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--grey-text);
    font-size: 1.02rem;
}
.lodge-config-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.3fr 260px;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}
.lodge-config-col { text-align: center; }
.lodge-config-col h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    margin: 10px 0 12px;
}
.lodge-title {
    min-height: 50px;
}
.lodge-description {
    min-height: 100px;
}
.lodge-badge-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.9rem;
}
.lodge-photo {
    /*border-radius: var(--radius);*/
    overflow: hidden;
    /*box-shadow: 0 10px 24px rgba(0,0,0,0.14);*/
    min-height: 208px;
    align-items: self-start;
    vertical-align: top;
}
.lodge-photo img { width: 100%; height: 100%; object-fit: cover; }
.lodge-dim { color: var(--green); font-weight: 700; margin: 14px 0 2px; }
.lodge-name { font-weight: 700; margin: 0; text-transform: uppercase; font-size: 0.9rem; }
.lodge-note { /*color: var(--grey-text);*/ font-size: 0.85rem; margin: 2px 0 0; }
.lodge-config-operator {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    background: var(--green);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lodge-config-checklist {
    background: var(--tint-bg);
    border-radius: var(--radius);
    padding: 10px 20px;
    margin-top: -68px;
}
.lodge-config-checklist ul { list-style: none; margin: 0; padding: 0; }
.lodge-config-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-grey);
    font-size: 0.88rem;
}
.lodge-config-checklist li:last-child { border-bottom: none; }
.lodge-config-checklist img { flex-shrink: 0; margin-top: 1px; }

.window-frame-strip {
    display: grid;
    grid-template-columns: 1fr auto 0.8fr auto 1.5fr;
    align-items: center;
    gap: 22px;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 22px 28px;
}
.window-frame-intro {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.window-frame-icon {
    background: var(--green);
    border-radius: 50%;
    padding: 11px;
    flex-shrink: 0;
}
.window-frame-intro img { width: 64px; flex-shrink: 0; }
.window-frame-intro h4 { color: var(--green); font-size: 0.85rem; margin-bottom: 6px; }
.window-frame-intro p { margin: 0; /*color: var(--grey-text);*/ font-size: 0.85rem; }

.window-frame-divider { width: 1px; height: 60px; background: var(--border-grey); justify-self: center; }

.window-frame-item { display: flex; align-items: center; gap: 16px; }
.window-frame-item img { width: 104px; flex-shrink: 0; }
.window-frame-item h4 { font-size: 0.78rem; margin-bottom: 4px; }
.window-frame-item p { margin: 0; /*color: var(--grey-text);*/ font-size: 0.82rem; }

.window-frame-longform { display: flex; align-items: center; gap: 16px; }
.window-frame-longform img { width: 266px; flex-shrink: 0; }
.window-frame-longform h4 { font-size: 0.78rem; margin-bottom: 4px; }
.window-frame-longform p { margin: 0; /*color: var(--grey-text);*/ font-size: 0.82rem; }

/* =====================================================
   MODULAR SYSTEMS
   ===================================================== */
#modular-systems .section-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
}
#modular-systems .section-title span, #modular-systems .section-title div, #modular-systems .section-title .text-green {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
#modular-systems .section-title::after {
    left: 42%;
    transform: translateX(-50%);
    width: 55px
}
#modular-systems .section-intro {
    color: var(--ink);
    margin: 0 auto 24px;
}
.modular-panel {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    background: var(--tint-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 26px;
}
.modular-panel-text { padding: 44px 40px; }
.modular-panel-text h3 { font-size: 1.5rem; margin-bottom: 20px; line-height: 1.2; font-weight: 700; }
.modular-panel-text h3 span, .modular-panel-text h3 div, .modular-panel-text h3 .text-green { color: var(--green); }
.modular-feature-list { list-style: none; margin: 0; padding: 0; }
.modular-feature-list li {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    align-items: flex-start;
    position: relative;
}
.modular-feature-list li::after {
    content: "";
    position: absolute;
    left: 50px;
    width: 1px;
    height: 68%;
    background-color: var(--border-grey);
}
.modular-feature-list img {
    width: 46px;
}
.modular-feature-list img.icon-thermal {
    width: 34px;
    margin: 0 0 0 9px;
}
.modular-feature-list h4 { font-size: 0.85rem; text-transform: uppercase; margin-bottom: 3px; }
.modular-feature-list p { margin: 0; color: var(--ink); font-size: 0.84rem; }
.modular-panel-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.modular-panel-media img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    object-fit: inherit;
}

.cta-banner {
    background: var(--navy);
    border-radius: 10px;
    padding: 26px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
    flex-wrap: wrap;
}
.cta-banner-icon {
    background: transparent;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-banner-text {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.cta-banner-text h3 { font-size: 1.02rem; margin-bottom: 4px; }
.cta-banner-text p { margin: 0; color: #c3ccd1; font-size: 0.88rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner-actions .btn img { filter: brightness(0) invert(1); }
.cta-banner-actions .btn-primary img { filter: none; }

/* =====================================================
   EXPLORE OUR MODULAR LODGE RANGE
   ===================================================== */
.section-navy {
    background: var(--navy, #07121A);
}
.mlr-section {
    margin: 42px 0;
    padding: 0;
    overflow: hidden;
}
.mlr-grid {
    display: grid;
    grid-template-columns: minmax(320px, 50%) 1fr;
    align-items: stretch;
    min-height: 640px;
}
.mlr-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 115px;
    margin: 0 0 0 auto;
    color: #fff;
}
.mlr-info::before{
    content: " ";
    position: absolute;
    background-color: var(--green);
    width: 8px;
    height: 98px;
    transform: none;
    top: 14%;
    left: 12%;
}
.mlr-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px;
    color: var(--green, #69B124);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.mlr-kicker-bar {
    display: inline-block;
    width: 4px;
    height: 34px;
    background: var(--green, #69B124);
    border-radius: 2px;
    flex-shrink: 0;
}
.mlr-title {
    margin: 0 0 22px;
    font-size: 2.5rem;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}
.mlr-subtitle {
    margin: 0 0 14px;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    max-width: 480px;
}
.mlr-copy {
    margin: 0 0 34px;
    font-size: 1rem;
    /*line-height: 1.6;*/
    color: #c3ccd1;
    max-width: 460px;
}
.mlr-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mlr-cta-arrow { flex-shrink: 0; }
.mlr-media {
    position: relative;
    min-height: 320px;
}
.mlr-media picture,
.mlr-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   WHY CHOOSE OUR LODGE SYSTEM
   ===================================================== */
#lodge-system .section-title::after {
    height: 0;
}
.lodge-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    padding: 40px 30px;
}
.lodge-system-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 0 24px;
    border-right: 1px solid var(--border-grey);
}
.lodge-system-item:last-child { border-right: none; }
.lodge-system-item img { margin: 0 auto 16px; width: 46px; }
.lodge-system-item img.icon-thermal { width: 28px; }
.lodge-system-item h4 { font-size: 0.85rem; text-transform: uppercase; margin-bottom: 8px; }
.lodge-system-item p { margin: 0; color: var(--ink); font-size: 0.85rem; }

/* =====================================================
   SHOWROOM
   ===================================================== */
#showroom .section-title {
    font-weight: 700;
    font-size: 1.8rem;
}
#showroom .section-title::after {
    width: 80px;
}
.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.showroom-info, .showroom-book {
    border-radius: 10px;
}
.showroom-info, .showroom-book {
    border-radius: 10px;
    padding: 40px 40px 30px 30px;
}
.showroom-info {
    background: var(--navy);
    color: var(--white);
}
.showroom-info p {
    /*color: var(--white);*/
    font-size: 1.04rem;
}
.showroom-book {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    background: var(--tint-bg);
    border: 1px solid var(--border-grey);
}
.showroom-meta {
    list-style: none;
    margin: 30px 0 0 -1px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.showroom-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0 24px;
}
.showroom-meta li:nth-child(odd) {
    border-right: 1px solid #535d5b;
}
.showroom-book h2 {
    margin-bottom: 0;
}
.showroom-book img { width: 112px; }
.showroom-book img.showroom-book-people { margin-top: 11px; }
.showroom-book p {
    color: var(--ink);
    margin-top: 0;
    margin-bottom: 26px;
    font-weight: 500;
    font-size: 1.04rem;
}
.showroom-book .btn-block {
    max-width: 88%;
    padding: 12px 50px;
}
#showroom .showroom-book .section-title::after {
    height: 0;
}

/* =====================================================
   FAQ AND QUOTE FORM
   ===================================================== */
.faq-and-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.faq-and-quote-grid > *:not(:last-child) {
    border-right: 2px solid  var(--border-grey);
    padding-right: 20px; /* Adds space between text and the border */
}
.faq-and-quote-grid .section-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.01em;
}
.faq-and-quote-grid .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    left: 0;
    transform: none;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 22px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
}
.faq-chevron { transition: transform .2s ease; flex-shrink: 0; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    padding: 20px 22px 20px;
    color: var(--grey-text);
    font-size: 0.9rem;
    background: #f6f6f6;
}
.faq-answer p { margin: 0; }

/* =====================================================
   QUOTE FORM
   ===================================================== */
.quote-form { margin-top: 20px; }
.quote-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 34px;
    margin-bottom: 8px;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field--full p { font-size: 0.78rem; color: var(--grey-text); margin-top: 0; text-align: right; }
.form-field label {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--grey-text);
    margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
    border: 1px solid var(--border-grey);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--ink);
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(105,177,36,0.15);
}
.form-field input.has-error { border-color: #d64545; }
.field-error { color: #d64545; font-size: 0.78rem; margin-top: 6px; }
.form-field textarea { resize: vertical; }
.form-success {
    background: rgba(105,177,36,0.12);
    color: var(--green-dark);
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    margin: 10px 0 20px;
}
.btn-submit { margin-top: 12px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy); color: var(--white); }
.footer-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 34px 24px;
    flex-wrap: wrap;
}
.footer-text {
    border-right: 1px solid var(--border-grey);
    padding-right: 10%;
}
.footer-text h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 4px; }
.footer-text p { margin: 0; color: #c3ccd1; font-size: 0.88rem; }
.footer-actions { display: flex; gap: 14px; flex-wrap: wrap; padding-left: 8%; }
.footer-actions .btn img { filter: brightness(0) invert(1); }
.footer-actions .btn-primary img { filter: none; }

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (max-width: 1024px) {
    .site-header { position: relative; padding: 0 0 22px 0; }

    .logo-mark { width: 238px; height: auto; }
    .feature-strip-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-item:nth-child(3) { border-right: none; }

    .section { padding: 22px 0; }

    .lodge-config-grid { grid-template-columns: 1fr 1fr; align-items: flex-start; }
    .lodge-photo { min-height: auto; }
    .lodge-config-operator { display: none; }
    .lodge-config-col--wide,
    .lodge-config-checklist { grid-column: 1 / -1; }

    .window-frame-strip { grid-template-columns: 1fr; gap: 18px; }
    .window-frame-divider { display: none; }

    .modular-panel { grid-template-columns: 1fr; }
    .modular-panel-media { grid-template-columns: 1fr 1fr; min-height: 260px; }
    .modular-panel-media img { object-fit: cover; }

    .section#modular-lodge-range { margin: 22px 0; padding: 0; }
    .mlr-grid { grid-template-columns: 1fr; min-height: 0; }
    .mlr-content { padding: 56px 56px; margin: 0 auto; }
    .mlr-info::before { width: 7px; height: 98px; top: 9%; left: 5%; }
    .mlr-title { font-size: 2rem; }
    .mlr-media { min-height: 320px; }

    .lodge-system-grid { grid-template-columns: repeat(2, 1fr); }
    .lodge-system-item:nth-child(2n) { border-right: none; }
    .lodge-system-item { border-bottom: 1px solid var(--border-grey); padding-bottom: 24px; }

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

    .faq-and-quote-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: flex-start; }
    .faq-and-quote-grid > *:not(:last-child) { border-right: 0; padding-right: 0; }

    .footer-bar { flex-direction: column; text-align: center; }
    .footer-actions { width: 100%; flex-direction: column; }
    .footer-text { border-right: 0; padding-right: 0; }
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */
@media (max-width: 720px) {
    .btn-submit { width: 100%; }

    .site-header { position: relative; padding: 0 0 18px 0; }
    .logo-mark {width: 238px; height: auto; }
    .section { padding: 52px 0; }
    .section-title, section-title section-title--left, .faq-and-quote-grid .section-title, #showroom .section-title { font-size: 1.5rem; }

    .header-bar { flex-direction: row; align-items: flex-start; gap: 44px; margin-bottom: 40px; }
    .kingspan-badge { align-self: flex-end; position: relative; }
    .hero-text h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; }

    .section { padding: 18px 0; }

    .feature-strip-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(107,133,40,0.8); padding-bottom: 16px; }
    .feature-item:last-child { border-bottom: none; }
    .feature-item h3 { min-height: auto; }

    .lodge-config-grid { grid-template-columns: 1fr; align-items: flex-start; }
    .lodge-photo { min-height: auto; }
    .lodge-config-checklist { grid-column: auto; margin-top: 0; }

    .modular-panel-text { padding: 30px 22px; }
    /*.modular-panel-media { grid-template-columns: 1fr; }*/
    .modular-panel-media img { object-fit: cover; }

    .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
    .cta-banner-actions { width: 100%; }
    .cta-banner-actions .btn { flex: 1; }
    .cta-banner-text { flex: 1 1 112px; }

    .section#modular-lodge-range { margin: 18px 0; padding: 0; }
    .mlr-content { padding: 40px 12px; }
    .mlr-info { padding: 0 20px; }
    .mlr-info::before{ width: 4px; height: 75px; top: 8%; left: 4%; }
    .mlr-kicker { margin: 0 0 14px; font-size: 1.25rem; }
    .mlr-title { font-size: 1.5rem; }
    .mlr-subtitle { font-size: 1.05rem; }
    .mlr-cta { width: 100%; justify-content: center; text-align: center; }
    .mlr-media { min-height: 240px; }

    .lodge-system-grid { grid-template-columns: 1fr; padding: 30px 22px; }
    .lodge-system-item { border-right: none; border-bottom: 1px solid var(--border-grey); padding-bottom: 24px; }
    .lodge-system-item:last-child { border-bottom: none; }
    .window-frame-intro, .window-frame-item, .window-frame-longform { flex-direction: column; align-items: flex-start; }

    .showroom-info, .showroom-book { padding: 28px 24px; }
    .showroom-meta { grid-template-columns: 1fr; }
    .showroom-meta li:nth-child(odd) { border-right: 0; }
    .showroom-book { flex-direction: column; align-items: flex-start; }
    .showroom-book img { width: 80px; }
    .showroom-book .btn-block { max-width: 100%; }

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

    .faq-and-quote-grid {display: grid; grid-template-columns: 1fr; gap: 40px; align-items: flex-start; }
    .faq-and-quote-grid > *:not(:last-child) { border-right: 0; padding-right: 0; }
    .quote-form .form-grid { gap: 12px 12px; }

    .site-footer { margin-bottom: 100px; }
    .footer-bar { flex-direction: column; text-align: center; }
    .footer-actions { width: 100%; flex-direction: column; padding-left: 0; }
    .footer-text { border-right: 0; padding-right: 0; }
}
/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */
@media all and (max-width: 400px) {
    /*.container { max-width: 400px; margin: 0 auto; padding: 0 14px; }*/
    .logo-mark { width: 178px; height: auto; }
    .btn { font-size: 14px; }
    .cta-banner-text { display: grid; }
    .quote-form .form-grid { gap: 12px 12px; }
    .mlr-info { padding: 0 20px; }
    .mlr-info::before{ width: 4px; height: 75px; top: 8%; left: 5%; }
    .mlr-info .btn { font-size: 12px; }
    .mlr-info .btn img { width: 12px; height: 12px; }
    .mlr-kicker { margin: 0 0 12px; font-size: 1.15rem; }
}
