/* 
 * Roofing King Main Styles
 * Built with Vanilla CSS, Grid/Flexbox, and BEM Methodology
 */

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

:root {
    /* Colors - Main Brand */
    --color-primary: #685f12;
    --color-on-primary: #ffffff;
    --color-brass-gold: #cbbf69;
    --color-on-primary-container: #554d00;
    --color-inverse-primary: #d4c871;
    
    /* Colors - Secondary & Neutral */
    --color-secondary: #5e5e5e;
    --color-on-secondary: #ffffff;
    --color-deep-onyx: #000000;
    --color-stucco-white: #F9F9F9;
    --color-steel-gray: #4A4A4A;

    /* Colors - Surfaces */
    --color-background: #f9f9f9;
    --color-on-background: #1a1c1c;
    --color-surface: #f9f9f9;
    --color-on-surface: #1a1c1c;
    --color-surface-container-lowest: #ffffff;
    --color-surface-container-low: #f3f3f4;
    --color-surface-container: #eeeeee;
    --color-surface-container-high: #e8e8e8;
    --color-surface-container-highest: #e2e2e2;
    --color-outline: #7b7767;
    --color-outline-variant: #ccc6b4;

    /* Typography */
    --font-display: 'Hanken Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --space-unit: 0.5rem; /* 8px */
    --container-max: 1280px;
    --gutter: 1.5rem; /* 24px */
    --gutter-mobile: 1rem; /* 16px */
    --section-padding: 5rem; /* 80px */
    --border-radius: 0; /* Sharp corners based on DESIGN.md */
    --border-radius-pill: 9999px; /* Exception for specific buttons */
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-size: 16px; /* 1rem = 16px */
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-on-background);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2); /* Adjust based on your contrast needs */
}

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Typography Utility Classes (Optional for common cases, preferring BEM components) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-on-surface);
}

/* Layout Containers */
.container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

@media (max-width: 768px) {
    .container {
        padding-left: var(--gutter-mobile);
        padding-right: var(--gutter-mobile);
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-surface); }
::-webkit-scrollbar-thumb { background: var(--color-brass-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: var(--border-radius); /* Sharp by default */
}

.btn--primary {
    background-color: var(--color-deep-onyx);
    color: var(--color-on-primary);
}

.btn--primary:hover {
    background-color: var(--color-steel-gray);
}

.btn--gold {
    background-color: var(--color-brass-gold);
    color: var(--color-deep-onyx);
}

.btn--gold:hover {
    background-color: var(--color-primary);
    color: var(--color-on-primary);
}

.btn--pill {
    border-radius: var(--border-radius-pill);
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--color-deep-onyx);
    color: var(--color-deep-onyx);
}

.btn--outline-gold {
    background-color: transparent;
    border: 2px solid var(--color-brass-gold);
    color: var(--color-stucco-white);
}

/* -- BEM Components for Header/Footer -- */

/* Header / Navbar */
.header {
    background-color: var(--color-surface-container-lowest);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--color-outline-variant);
    transition: all 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header__logo-link {
    display: flex;
    align-items: center;
}

.header__logo-img {
    width: 180px;
    height: auto;
    max-width: 100%;
    display: block;
}

.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--color-deep-onyx);
    transition: color 0.2s ease;
    padding-bottom: 0.25rem;
}

.header__nav-link:hover, .header__nav-link--active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-brass-gold);
}

.header__nav-item--mobile-cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.header__actions {
    display: none;
    align-items: center;
}

.header__menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--color-deep-onyx);
    cursor: pointer;
    z-index: 60; /* Above menu */
    position: relative;
}

/* Mobile Menu Open State */
.header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-surface-container-lowest);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--color-outline-variant);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.header__nav--open .header__nav-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1.5rem;
}


@media (min-width: 768px) {
    .header__nav {
        display: flex;
    }
    .header__nav-item--mobile-cta {
        display: none;
    }
    .header__actions {
        display: flex;
    }
    .header__menu-btn {
        display: none;
    }
}

/* Multilevel Menu Base & Mobile Styles */
.header__nav-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header__nav-link {
    display: block;
    width: 100%;
}

.header__nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-deep-onyx);
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.header__nav-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

.header__sub-menu {
    display: none; /* Mobile accordion default */
    width: 100%;
    flex-direction: column;
    padding-top: 1rem;
    padding-left: 1rem;
    gap: 1rem;
    background-color: rgba(0,0,0,0.03);
}

.header__sub-menu.is-open {
    display: flex;
}

.header__sub-menu .header__nav-link {
    font-size: 0.8rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .header__nav-item {
        width: auto;
        justify-content: flex-start;
    }
    
    .header__nav-link {
        width: auto;
    }

    /* Hide toggle on desktop, rely on hover */
    .header__nav-toggle {
        display: none;
    }

    /* Desktop Dropdown L2 */
    .header__sub-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content;
        min-width: 220px;
        background-color: var(--color-surface-container-lowest);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
        border-radius: 4px;
        border: 1px solid var(--color-outline-variant);
    }

    /* Desktop Dropdown L3 */
    .header__sub-menu--nested {
        top: 0;
        left: 100%;
        margin-left: 5px;
    }

    /* Hover & Focus Triggers */
    .header__nav-item:hover > .header__sub-menu,
    .header__nav-item:focus-within > .header__sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Desktop Dropdown Indicators */
    .header__nav-item--has-children > .header__nav-link {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .header__nav-item--has-children > .header__nav-link::after {
        content: "expand_more";
        font-family: 'Material Symbols Outlined';
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1;
        transition: transform 0.2s ease;
    }
    
    .header__nav-item--has-children:hover > .header__nav-link::after,
    .header__nav-item--has-children:focus-within > .header__nav-link::after {
        transform: rotate(180deg);
    }
    
    /* Level 3 indicator (pointing right) */
    .header__sub-menu--nested .header__nav-item--has-children > .header__nav-link {
        justify-content: space-between;
    }

    .header__sub-menu--nested .header__nav-item--has-children > .header__nav-link::after {
        content: "chevron_right";
    }

    .header__sub-menu--nested .header__nav-item--has-children:hover > .header__nav-link::after,
    .header__sub-menu--nested .header__nav-item--has-children:focus-within > .header__nav-link::after {
        transform: translateX(3px);
    }

    /* L3 Submenu Link Adjustments */
    .header__sub-menu .header__nav-item {
        width: 100%;
    }
    .header__sub-menu .header__nav-link {
        padding: 0.5rem 1rem;
        border-bottom: none;
    }
    .header__sub-menu .header__nav-link:hover,
    .header__sub-menu .header__nav-link:focus {
        background-color: rgba(203, 191, 105, 0.1); /* Gold tint */
        color: var(--color-primary);
        border-bottom: none;
    }

    /* Prevent L3 Overflow (WP class submenu-left) */
    .submenu-left > .header__sub-menu--nested {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 5px;
    }
}

/* Footer */
.footer {
    background-color: var(--color-deep-onyx);
    color: var(--color-stucco-white);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

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

.footer__brand {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer__brand {
        grid-column: span 1;
    }
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-stucco-white);
}

.footer__text {
    color: rgba(249, 249, 249, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer__socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer__social-link {
    color: rgba(249, 249, 249, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link:hover {
    color: var(--color-brass-gold);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer__heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-brass-gold);
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    color: rgba(249, 249, 249, 0.8);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--color-brass-gold);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(249, 249, 249, 0.6);
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
    }
}

/* ==========================================================================
   10. Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--color-brass-gold);
    color: var(--color-on-background);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.scroll-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #d1b860;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
}/* ==========================================================================
   Shared Form Styles (Moved from front-page)
   ========================================================================== */

.hero-form-widget {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.hero-form-widget__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-deep-onyx);
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form__row { grid-template-columns: repeat(2, 1fr); }
    .form__row--3cols { grid-template-columns: repeat(3, 1fr); }
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.form__input, .form__select, .form__textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-outline-variant);
    padding: 0.5rem 0;
    color: var(--color-on-background);
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    border-bottom-color: var(--color-brass-gold);
}

.form__input::placeholder, .form__textarea::placeholder { color: var(--color-outline-variant); }

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Estimate Modal (Global Dark Theme)
   ========================================================================== */
.estimate-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.estimate-modal--active {
    opacity: 1;
    visibility: visible;
}

.estimate-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.estimate-modal__content {
    position: relative;
    z-index: 10001;
    background-color: #000000;
    width: 100%;
    max-width: 500px;
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid #222;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
    max-height: 90vh;
    overflow-y: auto;
}

.estimate-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #888;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.estimate-modal__close:hover {
    color: #fff;
}

.estimate-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.estimate-modal__title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.estimate-modal__subtitle {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
}

/* Form Fields */
.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.estimate-form__row {
    display: flex;
    gap: 1rem;
}

.estimate-form__row .estimate-form__input {
    flex: 1;
}

.estimate-form__input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.estimate-form__input::placeholder {
    color: #666;
}

.estimate-form__input:focus {
    outline: none;
    border-color: #064e3b; /* Dark Green */
}

select.estimate-form__input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
    color: #fff;
}

select.estimate-form__input option {
    background-color: #111;
    color: #fff;
}

.estimate-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.estimate-form__submit {
    background-color: var(--color-brass-gold);
    color: #000000;
    border: none;
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.estimate-form__submit:hover {
    background-color: #b19d53; /* Slightly darker gold */
}

.estimate-form__disclaimer {
    font-size: 0.75rem;
    color: #777;
    text-align: center;
    line-height: 1.4;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .estimate-form__row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================================
   11. Default Page Template (page.php)
   ========================================================================== */
.page-default__hero {
    background-color: var(--color-deep-onyx);
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--color-brass-gold);
}

.page-default__title {
    color: #ffffff;
    font-size: 3rem;
    margin: 0;
}

.page-default__content {
    padding: 60px 0;
    background-color: var(--color-light-gray);
}

.page-default__container {
    max-width: 800px; /* Keep reading width narrow for readability */
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Rich Text Formatting (for WP Editor content) */
.rich-text-content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-on-surface);
}

.rich-text-content h1,
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
    color: var(--color-deep-onyx);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.rich-text-content p {
    margin-bottom: 1.5rem;
}

.rich-text-content ul,
.rich-text-content ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.rich-text-content li {
    margin-bottom: 0.5rem;
}

.rich-text-content strong {
    font-weight: 700;
}

.rich-text-content a {
    color: var(--color-brass-gold);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-default__hero {
        padding: 40px 0;
    }
    .page-default__title {
        font-size: 2rem;
    }
    .page-default__container {
        padding: 20px;
    }
}

/* ==========================================================================
   12. About Us Page (page-about.php)
   ========================================================================== */
.hero--about {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero--about .hero__content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 6rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero--about .hero__content {
        grid-template-columns: 1fr 450px;
        gap: 4rem;
    }
}

.hero--about .hero__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-on-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero--about .hero__title { font-size: 4rem; }
}

.hero--about .hero__subtitle-wrap {
    border-left: 2px solid var(--color-brass-gold);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero--about .hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-stucco-white);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero--about .hero__subtitle { font-size: 1.25rem; }
}

.hero--about .hero__overlay--dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}

.about-hero__awards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-hero__award-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border-left: 2px solid var(--color-brass-gold);
}

.about-hero__award-item .material-symbols-outlined {
    color: var(--color-brass-gold);
}

.about-story {
    padding: 80px 0;
}

.about-story__container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.about-story__main-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-on-surface);
    margin-bottom: 1.5rem;
}

.about-story__highlight {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--color-deep-onyx);
    border-left: 4px solid var(--color-brass-gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.about-warranty {
    background-color: var(--color-deep-onyx);
    color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.about-warranty__icon-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-brass-gold);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.about-warranty__icon {
    font-size: 2rem;
    color: var(--color-deep-onyx);
}

.about-warranty__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.about-warranty__desc {
    color: #ccc;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-warranty__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.about-warranty__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.about-warranty__list .check-icon {
    color: var(--color-brass-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-warranty__list strong {
    color: var(--color-brass-gold);
}

.about-warranty__note {
    font-size: 0.875rem;
    color: #aaa;
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin: 0;
}

@media (max-width: 992px) {
    .about-story__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-warranty {
        position: static;
    }
}
