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

:root {
    --green:        #1E5C22;
    --green-dark:   #164018;
    --green-hover:  #267A2B;
    --green-bright: #4AB830;
    --off-black:    #1C1C1C;
    --body-text:    #3A3A3A;
    --grey-brown:   #7A7060;
    --warm-bg:      #F4F1ED;
    --dark-footer:  #191919;
    --border:       #DDD8D0;
    --white:        #FFFFFF;
    --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
    --shadow-md:    0 6px 28px rgba(0,0,0,0.12);
    --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* Top Contact Bar */
.top-bar {
    background-color: var(--off-black);
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #BDB5A8;
    transition: color 0.2s ease;
}

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

.top-bar-divider {
    color: #444;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.top-bar-cred {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #BDB5A8;
}

.top-bar-icon {
    display: flex;
    align-items: center;
    color: #BDB5A8;
    transition: color 0.2s ease;
}

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

/* Main Sticky Header */
.main-header {
    background-color: var(--white);
    height: 120px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.14);
}

.header-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-fb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #1877F2;
    color: var(--white);
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-left: 8px;
}

.header-fb-btn:hover {
    background-color: #0D5FD8;
    transform: scale(1.1);
}

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

.logo-img {
    height: 72px;
    width: auto;
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--off-black);
    text-transform: uppercase;
    padding: 10px 18px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--green);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--off-black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

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

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

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

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

.hero-section {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-color: #111;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 40px;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--white);
    text-shadow:
        0 2px 4px rgba(0,0,0,0.90),
        0 4px 16px rgba(0,0,0,0.75),
        0 8px 40px rgba(0,0,0,0.60);
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
        0 1px 3px rgba(0,0,0,0.90),
        0 3px 12px rgba(0,0,0,0.70);
    text-transform: uppercase;
}

/* ======================================== */
/* ACTION BAR SECTION                       */
/* ======================================== */

.action-bar {
    background-color: var(--green);
    padding: 18px 48px;
}

.action-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.action-bar-cred {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #ffffff;
    text-transform: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #4DA63D;
    border: 2px solid #ffffff;
    padding: 18px 44px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
}

/* ======================================== */
/* SECTION 1: ICON HIGHLIGHTS               */
/* ======================================== */

.icons-section {
    background-color: var(--warm-bg);
    padding: 80px 32px;
    border-bottom: 1px solid var(--border);
}

.icons-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 32px 40px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.icon-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(30, 92, 34, 0.16);
    border-color: rgba(30, 92, 34, 0.4);
}

.icon-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 20px;
}

.icon-wrap svg {
    width: 80px;
    height: 80px;
}

.icon-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--off-black);
    margin-bottom: 12px;
}

.icon-text {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.75;
    color: #666058;
}

/* ======================================== */
/* SECTION 2: ABOUT / BODY CONTENT          */
/* ======================================== */

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

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--off-black);
    margin-bottom: 24px;
}

.body-text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.80;
    color: var(--body-text);
    margin-bottom: 18px;
}


.inline-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--green);
    text-transform: uppercase;
    border-bottom: 2px solid var(--green);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-cta:hover {
    color: var(--green-dark);
    border-color: var(--green-dark);
}

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


/* ======================================== */
/* SECTION 4: 5-STAR REVIEW                 */
/* ======================================== */

.review-section {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 72px 32px;
    text-align: center;
}

.review-inner {
    max-width: 80%;
    margin: 0 auto;
}

.review-stars-img {
    display: block;
    margin: 0 auto 28px;
    max-width: 260px;
    height: auto;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    color: var(--off-black);
    font-style: normal;
    margin-bottom: 28px;
}

.review-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.review-avatar-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--grey-brown);
    text-transform: uppercase;
    font-style: normal;
}

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

.fat-footer {
    background: var(--green);
    padding: 96px 32px 80px;
}

.fat-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 88px;
    align-items: start;
}


.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
}

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

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--white);
    background-color: #1877F2;
    padding: 12px 20px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.footer-social-btn:hover {
    background-color: #145DBE;
}

.footer-form-col .footer-heading {
    font-size: 38px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.30);
}

/* Footer Form Column */
.footer-form-sub {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.65;
    color: #ffffff;
    margin-bottom: 28px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 3px solid #ffffff;
    border-radius: 20px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
}

/* Honeypot: visually hidden */
#b_website {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
}

.req {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea {
    background-color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--off-black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9A9490;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 112px;
}

.form-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    color: var(--white);
    background-color: #3E9A1E;
    border: none;
    border-radius: 10px;
    padding: 18px 44px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45), 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background-color: #48B424;
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.60), 0 8px 28px rgba(0, 0, 0, 0.30);
}

.form-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.form-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 32px;
    gap: 16px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--white);
}

.form-success p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.70);
}

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

.copyright-bar {
    background-color: #0F0F0F;
    padding: 14px 32px;
    text-align: center;
}

.copyright-bar p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #494540;
}

.copyright-bar a {
    color: #6A6058;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.copyright-bar a:hover {
    color: #999090;
}

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

.mobile-phone-bar {
    display: none;
}

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

.page-title-bar {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-color: var(--green);
    padding: 64px 32px;
    text-align: center;
    border-bottom: 4px solid var(--green);
}

.page-title-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    pointer-events: none;
}

.page-title-bar-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 14px;
}

.page-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}


/* ======================================== */
/* SERVICES PAGE                            */
/* ======================================== */

.services-question {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--green-dark);
    font-style: italic;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

/* ======================================== */
/* ABOUT PAGE: STORY SECTION                */
/* ======================================== */

.about-story-section {
    padding: 96px 32px;
    background-color: var(--white);
}

.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 72px;
    align-items: start;
}

.story-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--green);
    font-style: italic;
    margin-bottom: 36px;
}

.story-signature {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    color: var(--green);
    font-style: italic;
    margin-top: 8px;
    margin-bottom: 32px;
}

.story-image-col {
    position: sticky;
    top: 140px;
}

.story-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: left center;
    border-radius: 4px 4px 0 0;
    box-shadow: var(--shadow-lg);
    display: block;
}

.story-image-caption {
    background-color: var(--green);
    padding: 20px 24px;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.story-image-caption strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--white);
}

.story-image-caption span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.70);
}

/* ======================================== */
/* RESPONSIVE — TABLET (≤ 1024px)           */
/* ======================================== */

@media (max-width: 1024px) {
    .about-inner {
        gap: 48px;
    }

    .fat-footer-inner {
        gap: 56px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* ======================================== */
/* RESPONSIVE — MOBILE (≤ 768px)            */
/* ======================================== */

@media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Main Header */
    .main-header {
        height: 74px;
    }

    .header-inner {
        padding: 0 16px;
    }

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

    /* Hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile Nav Dropdown */
    .main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 2px solid var(--green);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
        display: none;
        z-index: 999;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 8px 0 12px;
    }

    .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero-section {
        height: 360px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: 0;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.08em;
    }

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

    /* Header FB button — hide on mobile (top bar has it) */
    .header-fb-btn {
        display: none;
    }

    /* Action Bar */
    .action-bar {
        padding: 20px 16px;
    }

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

    .action-bar-cred {
        font-size: 14px;
    }

    .cta-button {
        font-size: 13px;
        letter-spacing: 0.1em;
        padding: 14px 28px;
        gap: 10px;
    }

    /* Icons Section */
    .icons-section {
        padding: 52px 16px;
    }

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

    .icon-card {
        padding: 36px 28px 32px;
    }

    /* Sub-page Title Bar */
    .page-title-bar {
        padding: 44px 16px;
    }

    .page-title {
        font-size: 30px;
    }

    .page-subtitle {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    /* About Story Section */
    .about-story-section {
        padding: 56px 16px;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .story-image-col {
        position: static;
        order: -1;
    }

    .story-image {
        height: 280px;
    }

    .story-tagline {
        font-size: 34px;
        margin-bottom: 24px;
    }

    /* About Section */
    .about-section {
        padding: 60px 16px;
    }

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

    .section-title {
        font-size: 26px;
    }

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

    /* Review Section */
    .review-section {
        padding: 52px 16px;
    }

    .review-stars-img {
        max-width: 140px;
    }

    /* Fat Footer */
    .fat-footer {
        padding: 60px 16px 108px;
    }

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

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

    /* Copyright bar */
    .copyright-bar {
        padding: 14px 16px;
    }

    /* Mobile Sticky Phone Bar */
    .mobile-phone-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 54px;
        background-color: var(--green);
        align-items: center;
        justify-content: center;
        z-index: 2000;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.25);
    }

    .mobile-phone-link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1;
        color: var(--white);
        text-transform: uppercase;
    }
}

@media (max-width: 480px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 26px;
    }

}
