/* ======================================== */
/* ROOT VARIABLES & GLOBAL RESET           */
/* ======================================== */

:root {
    --color-primary:       #366A1B;
    --color-primary-dark:  #2a5315;
    --color-dark:          #0A1E0A;
    --color-deepest:       #090702;
    --color-white:         #ffffff;
    --color-cream:         #f6f6f1;
    --color-text:          #222222;
    --color-text-light:    #545454;
    --color-text-muted:    #888888;
    --color-border:        #e2e2de;
    --font-heading:        'Montserrat', sans-serif;
    --font-body:           'Open Sans', sans-serif;
    --container-max:       1300px;
    --header-h-desktop:    104px;
    --header-h-mobile:     74px;
    --topbar-h:            40px;
    --transition:          0.3s ease;
    --shadow-sm:           0 2px 10px rgba(0, 0, 0, 0.07);
    --shadow-md:           0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg:           0 12px 48px rgba(0, 0, 0, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ======================================== */
/* CONTAINER                               */
/* ======================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================== */
/* TYPOGRAPHY                              */
/* ======================================== */

h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--color-white);
}

h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--color-dark);
}

h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--color-dark);
}

h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: var(--color-white);
    text-transform: uppercase;
}

p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ======================================== */
/* UTILITIES – FADE-IN-UP ANIMATION        */
/* ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* REUSABLE SECTION COMPONENTS             */
/* ======================================== */

.section-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.section-subhead {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--color-text-light);
    max-width: 580px;
    margin: 14px auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    margin-top: 6px;
}

/* ======================================== */
/* BUTTONS                                 */
/* ======================================== */

.btn-hero {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 18px 44px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    margin-top: 32px;
    transition: background-color var(--transition),
                border-color var(--transition),
                transform 0.2s ease,
                box-shadow var(--transition);
}

.btn-hero:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(54, 106, 27, 0.40);
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 16px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    transition: background-color var(--transition),
                border-color var(--transition),
                transform 0.2s ease,
                box-shadow var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(54, 106, 27, 0.30);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1;
    color: var(--color-primary);
    background-color: transparent;
    padding: 14px 34px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    transition: background-color var(--transition),
                color var(--transition),
                transform 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ======================================== */
/* HEADER SECTION                          */
/* ======================================== */

/* --- Top Contact Bar --- */

#top-contact-bar {
    width: 100%;
    height: var(--topbar-h);
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-address {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.70);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-address svg {
    stroke: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-contact a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}

.top-bar-contact a:hover {
    color: var(--color-white);
}

.top-bar-contact a svg {
    stroke: rgba(255, 255, 255, 0.60);
    flex-shrink: 0;
}

/* --- Main Header (Sticky) --- */

#main-header {
    width: 100%;
    height: var(--header-h-desktop);
    background-color: var(--color-deepest);
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    transition: box-shadow var(--transition), background-color var(--transition);
}

#main-header.scrolled {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.40);
    background-color: rgba(9, 7, 2, 0.97);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 66px;
    max-height: 66px;
    width: auto;
    object-fit: contain;
}

/* --- Desktop Navigation --- */

#desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

#desktop-nav a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.80);
    text-transform: uppercase;
    padding: 10px 13px;
    border-radius: 3px;
    white-space: nowrap;
    transition: color var(--transition), background-color var(--transition);
}

#desktop-nav a:hover,
#desktop-nav a.active {
    color: var(--color-white);
    background-color: var(--color-primary);
}

/* --- Header Right (Phone + Email + Hamburger) --- */

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone-btn {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 11px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color var(--transition);
}

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

.header-phone-btn svg {
    stroke: var(--color-white);
    flex-shrink: 0;
}

.header-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: border-color var(--transition), background-color var(--transition);
}

.header-email-btn svg {
    stroke: rgba(255, 255, 255, 0.72);
    transition: stroke var(--transition);
}

.header-email-btn:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.header-email-btn:hover svg {
    stroke: var(--color-white);
}

/* --- Hamburger Button --- */

#hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

#hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Navigation Dropdown --- */

#mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h-mobile);
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    z-index: 998;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#mobile-nav.open {
    max-height: 520px;
}

#mobile-nav ul {
    padding: 8px 0 20px;
}

#mobile-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    display: block;
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background-color var(--transition), color var(--transition);
}

#mobile-nav a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ======================================== */
/* HERO SECTION                            */
/* ======================================== */

#hero {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(0, 0, 0, 0.22) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 30px;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    margin-bottom: 22px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85),
                 0 3px 16px rgba(0, 0, 0, 0.65);
}

.hero-content h1 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.90),
                 0 6px 30px rgba(0, 0, 0, 0.75),
                 0 0 80px rgba(0, 0, 0, 0.50);
    max-width: 860px;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    max-width: 620px;
    margin-top: 20px;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.90),
                 0 4px 20px rgba(0, 0, 0, 0.70);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.38);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition), transform var(--transition);
}

.hero-dot.active {
    background-color: var(--color-white);
    transform: scale(1.3);
}

/* ======================================== */
/* DIVIDER BAR                             */
/* ======================================== */

#divider-bar {
    width: 100%;
    background-color: var(--color-primary);
    padding: 22px 0;
}

.divider-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.divider-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1;
    color: var(--color-white);
    text-transform: uppercase;
    white-space: nowrap;
}

.divider-item svg {
    stroke: rgba(255, 255, 255, 0.88);
    flex-shrink: 0;
}

.divider-sep {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.30);
}

/* ======================================== */
/* SECTION 1: ABOUT INTRO                  */
/* ======================================== */

.section-about {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-label {
    margin-bottom: 12px;
}

.about-text h2 {
    margin-bottom: 28px;
}

.about-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--color-text-light);
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

/* ======================================== */
/* SECTION 2: TESTIMONIALS                 */
/* ======================================== */

.section-testimonials {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.fb-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 46px;
    margin-top: -20px;
}

.fb-badge span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #1877F2;
    text-transform: uppercase;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stars {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
    color: #f5a623;
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 22px;
    padding-left: 18px;
    border-left: 3px solid var(--color-primary);
}

.testimonial-card cite {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1;
    color: var(--color-primary);
    text-transform: uppercase;
    font-style: normal;
    display: block;
}

/* ======================================== */
/* SECTION 3: FEATURED VIDEO               */
/* ======================================== */

.section-video {
    padding: 52px 0 48px;
    background-color: var(--color-dark);
}

.section-video .section-label {
    color: rgba(255, 255, 255, 0.58);
}

.section-video h2 {
    color: var(--color-white);
}

.section-video .section-header {
    margin-bottom: 32px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.55);
    max-width: 860px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ======================================== */
/* FAT FOOTER SECTION                      */
/* ======================================== */

#fat-footer {
    width: 100%;
    background-color: var(--color-deepest);
    padding: 80px 0;
}

.fat-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.footer-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    margin-bottom: 28px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: var(--color-white);
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 24px;
}

.footer-contact address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.footer-contact address svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact address a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-contact address a:hover {
    color: var(--color-white);
}

.footer-nav {
    margin-top: 30px;
}

.footer-nav h4 {
    margin-bottom: 16px;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--color-white);
}

.map-subhead {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 18px;
}

.map-container {
    width: 100%;
    height: 310px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR                    */
/* ======================================== */

#copyright-bar {
    width: 100%;
    background-color: #000000;
    padding: 14px 0;
}

#copyright-bar p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.42);
    text-align: center;
    margin: 0;
}

#copyright-bar a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

#copyright-bar a:hover {
    color: var(--color-white);
}

/* ======================================== */
/* MOBILE STICKY PHONE BAR                 */
/* ======================================== */

#mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    background-color: var(--color-primary);
}

#mobile-phone-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--color-white);
    text-transform: uppercase;
    padding: 15px 20px;
    width: 100%;
    transition: background-color var(--transition);
}

#mobile-phone-bar a:hover {
    background-color: var(--color-primary-dark);
}

#mobile-phone-bar svg {
    stroke: var(--color-white);
    flex-shrink: 0;
}

/* ======================================== */
/* SUB-PAGE TITLE BAR                      */
/* ======================================== */

.page-title-bar {
    width: 100%;
    background: linear-gradient(125deg, var(--color-deepest) 0%, var(--color-dark) 50%, var(--color-primary-dark) 100%);
    padding: 52px 0 48px;
    border-bottom: 3px solid var(--color-primary);
    text-align: center;
}

.page-title-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.page-title-heading {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.15;
    color: var(--color-white);
    text-shadow: none;
    margin-bottom: 0;
}

.page-title-sub {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    max-width: 580px;
    margin: 18px auto 0;
}

/* ======================================== */
/* ABOUT PAGE – SECTION 1: MAIN CONTENT    */
/* ======================================== */

.section-about-main {
    padding: 96px 0 100px;
    background-color: var(--color-white);
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-main-text .section-label {
    margin-bottom: 12px;
}

.about-main-text h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.25;
    color: var(--color-dark);
    margin-bottom: 28px;
    margin-top: 6px;
}

.about-main-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.about-emphasis {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--color-primary) !important;
    font-style: italic;
    border-left: 3px solid var(--color-primary);
    padding-left: 18px;
    margin-top: 8px !important;
}

.about-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.about-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

/* ======================================== */
/* ABOUT PAGE – SECTION 2: CORE VALUES     */
/* ======================================== */

.section-values {
    padding: 96px 0 100px;
    background-color: var(--color-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 38px 28px 34px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(54, 106, 27, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.value-icon svg {
    stroke: var(--color-primary);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--color-text-light);
    margin: 0;
}

/* ======================================== */
/* CONTACT PAGE                            */
/* ======================================== */

.section-contact {
    padding: 96px 0 110px;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left .section-label {
    margin-bottom: 12px;
}

.contact-left h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 20px;
    margin-top: 6px;
}

.contact-intro {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Big phone CTA */

.contact-phone-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(125deg, var(--color-dark) 0%, var(--color-primary) 100%);
    border-radius: 8px;
    padding: 22px 28px;
    margin: 32px 0 36px;
    transition: box-shadow var(--transition), transform 0.2s ease;
    text-decoration: none;
}

.contact-phone-cta:hover {
    box-shadow: 0 10px 32px rgba(54, 106, 27, 0.40);
    transform: translateY(-2px);
}

.contact-phone-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-phone-icon svg {
    stroke: var(--color-white);
}

.contact-phone-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--color-white);
}

/* Contact cards */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 22px 24px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(54, 106, 27, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    stroke: var(--color-primary);
}

.contact-card-body h3 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card-body p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: var(--color-text);
    margin: 0;
}

.contact-card-body a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-text);
    transition: color var(--transition);
}

.contact-card-body a:hover {
    color: var(--color-primary);
}

/* Right photo */

.contact-right img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* ======================================== */
/* BEFORE & AFTER PAGE – GALLERY           */
/* ======================================== */

.section-ba-gallery {
    padding: 80px 0 100px;
    background-color: var(--color-white);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.ba-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ba-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.ba-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ba-thumb:hover img {
    transform: scale(1.06);
}

.ba-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 10, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    border-radius: 6px;
}

.ba-overlay svg {
    stroke: var(--color-white);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--transition), transform var(--transition);
}

.ba-thumb:hover .ba-overlay {
    background: rgba(10, 30, 10, 0.50);
}

.ba-thumb:hover .ba-overlay svg {
    opacity: 1;
    transform: scale(1);
}

.ba-cta {
    text-align: center;
    padding-top: 20px;
}

.ba-cta p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-dark);
    margin-bottom: 22px;
}

/* ======================================== */
/* LIGHTBOX                                */
/* ======================================== */

#lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    gap: 20px;
}

.lightbox-img-wrap {
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.70);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close svg {
    stroke: var(--color-white);
}

.lightbox-prev,
.lightbox-next {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.08);
}

.lightbox-prev svg,
.lightbox-next svg {
    stroke: var(--color-white);
}

.lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.60);
    text-transform: uppercase;
}

/* ======================================== */
/* SERVICES PAGE – ACCORDION               */
/* ======================================== */

.section-services {
    padding: 80px 0 100px;
    background-color: var(--color-white);
}

.accordion {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-white);
    transition: background-color var(--transition);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    border-left: 4px solid transparent;
    transition: background-color var(--transition),
                border-color var(--transition);
    gap: 16px;
}

.accordion-item.open .accordion-header,
.accordion-header:hover {
    background-color: #f9fdf6;
    border-left-color: var(--color-primary);
}

.accordion-title-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.accordion-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(54, 106, 27, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color var(--transition);
}

.accordion-icon svg {
    stroke: var(--color-primary);
}

.accordion-item.open .accordion-icon {
    background-color: var(--color-primary);
}

.accordion-item.open .accordion-icon svg {
    stroke: var(--color-white);
}

.accordion-title-group span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--color-dark);
}

.accordion-item.open .accordion-title-group span {
    color: var(--color-primary);
}

.accordion-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
}

.accordion-chevron svg {
    stroke: var(--color-text-muted);
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-item.open .accordion-chevron svg {
    stroke: var(--color-primary);
}

/* Accordion sliding body */

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.accordion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 32px 32px 40px 80px;
    border-top: 1px solid var(--color-border);
    background-color: #f9fdf6;
}

.accordion-desc {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.accordion-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}

/* ======================================== */
/* RESPONSIVE – TABLET (max-width: 1100px) */
/* ======================================== */

@media screen and (max-width: 1100px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .about-grid {
        gap: 50px;
    }

    .about-main-grid {
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title-heading {
        font-size: 38px;
    }

    .accordion-content {
        gap: 32px;
        padding: 28px 28px 36px 76px;
    }

    .ba-thumb img {
        height: 220px;
    }

    #desktop-nav a {
        font-size: 12px;
        padding: 10px 10px;
    }

    .header-phone-btn {
        font-size: 12px;
        padding: 10px 14px;
    }

    .fat-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-image {
        grid-column: 1 / -1;
    }

    .footer-image img {
        height: 260px;
    }
}

/* ======================================== */
/* RESPONSIVE – MOBILE (max-width: 768px)  */
/* ======================================== */

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
        padding-bottom: 60px;
    }

    /* Top contact bar */
    #top-contact-bar {
        height: auto;
        padding: 10px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    .top-bar-address {
        font-size: 12px;
        justify-content: center;
    }

    .top-bar-contact {
        gap: 16px;
    }

    .top-bar-contact a {
        font-size: 12px;
    }

    /* Main header */
    #main-header {
        height: var(--header-h-mobile);
    }

    .logo-img {
        height: 50px;
        max-height: 50px;
    }

    #desktop-nav {
        display: none;
    }

    .header-phone-btn {
        display: none;
    }

    .header-email-btn {
        display: none;
    }

    #hamburger {
        display: flex;
    }

    #mobile-nav {
        display: block;
    }

    /* Hero */
    #hero {
        height: 520px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .btn-hero {
        font-size: 13px;
        padding: 15px 30px;
        margin-top: 24px;
    }

    /* Divider bar */
    .divider-highlights {
        gap: 10px 16px;
        justify-content: center;
    }

    .divider-sep {
        display: none;
    }

    .divider-item {
        font-size: 11px;
    }

    /* Sub-page title bar */
    .page-title-bar {
        padding: 38px 0 34px;
    }

    .page-title-heading {
        font-size: 28px;
    }

    .page-title-sub {
        font-size: 15px;
    }

    /* About page sections */
    .section-about-main {
        padding: 70px 0;
    }

    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-image img {
        height: 280px;
    }

    .about-cta-row {
        flex-direction: column;
        gap: 12px;
    }

    .about-cta-row .btn-primary,
    .about-cta-row .btn-outline {
        text-align: center;
        width: 100%;
    }

    .section-values {
        padding: 70px 0;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Section 1: About (homepage) */
    .section-about {
        padding: 70px 0;
    }

    /* Contact page */
    .section-contact {
        padding: 70px 0 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-left h2 {
        font-size: 28px;
    }

    .contact-phone-number {
        font-size: 28px;
    }

    .contact-right img {
        height: 300px;
    }

    /* Before & After gallery */
    .section-ba-gallery {
        padding: 50px 0 70px;
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ba-thumb img {
        height: 200px;
    }

    .lightbox-inner {
        padding: 60px 20px;
        gap: 12px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    /* Services accordion */
    .section-services {
        padding: 50px 0 70px;
    }

    .accordion-header {
        padding: 18px 18px;
    }

    .accordion-title-group span {
        font-size: 15px;
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
    }

    .accordion-content {
        grid-template-columns: 1fr;
        padding: 24px 20px 32px;
        gap: 24px;
    }

    .accordion-img img {
        height: 220px;
    }

    .accordion-desc {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h2 {
        font-size: 28px;
    }

    .about-image img {
        height: 280px;
    }

    .about-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
        width: 100%;
        padding: 16px 20px;
    }

    /* Testimonials */
    .section-testimonials {
        padding: 70px 0;
    }

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

    /* Video */
    .section-video {
        padding: 70px 0;
    }

    /* Fat footer */
    #fat-footer {
        padding: 60px 0 80px;
    }

    .fat-footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-image {
        grid-column: auto;
    }

    .footer-image img {
        height: 240px;
    }

    .footer-nav ul {
        grid-template-columns: 1fr;
    }

    /* Mobile sticky phone bar */
    #mobile-phone-bar {
        display: block;
    }
}

/* ======================================== */
/* RESPONSIVE – SMALL MOBILE (max-width: 480px) */
/* ======================================== */

@media screen and (max-width: 480px) {
    #hero {
        height: 460px;
    }

    h1 {
        font-size: 28px;
    }

    .hero-content {
        padding: 20px 16px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-card blockquote {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

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

    .page-title-heading {
        font-size: 24px;
    }
}
