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

:root {
    --green-primary:  #3e7e34;
    --green-dark:     #2a5226;
    --green-darker:   #1b3818;
    --green-light:    #5aaa4d;
    --green-pale:     #eaf4e5;
    --brown-dark:     #3d2b1a;
    --brown-medium:   #7a5430;
    --cream:          #f7f4ee;
    --cream-dark:     #ede8df;
    --border:         #d5cec3;
    --text-dark:      #222222;
    --text-medium:    #555555;
    --white:          #ffffff;
    --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.10);
    --shadow-md:      0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg:      0 8px 40px rgba(0, 0, 0, 0.20);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #222222;
    background: #ffffff;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: var(--green-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

address {
    font-style: normal;
}


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

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


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 14px 30px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-phone {
    background: linear-gradient(135deg, #5aaa4d 0%, #3e7e34 45%, #2a6022 100%);
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 2px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    padding: 18px 44px;
    box-shadow:
        0 0 0 3px rgba(90, 170, 77, 0.30),
        0 6px 24px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-phone svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #6ac05b 0%, #4a9040 45%, #2d6626 100%);
    border-color: rgba(255, 255, 255, 0.40);
    color: #ffffff;
    box-shadow:
        0 0 0 5px rgba(90, 170, 77, 0.40),
        0 10px 32px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}

.btn-white-outline:hover {
    background: #ffffff;
    color: var(--green-dark);
}

.btn-green {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--green-primary);
    border: 2px solid var(--green-primary);
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
    margin-top: 8px;
}

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

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


/* ======================================== */
/* 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);
}

/* Stagger delays for list children */
.why-list li.fade-in-up:nth-child(1) { transition-delay: 0.00s; }
.why-list li.fade-in-up:nth-child(2) { transition-delay: 0.15s; }
.why-list li.fade-in-up:nth-child(3) { transition-delay: 0.30s; }
.why-list li.fade-in-up:nth-child(4) { transition-delay: 0.45s; }
.why-list li.fade-in-up:nth-child(5) { transition-delay: 0.60s; }


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

.site-header {
    width: 100%;
    height: 120px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-logo {
    flex-shrink: 0;
    line-height: 0;
}

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav ul li a {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: #222222;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: 3px;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav ul li a:hover {
    color: var(--green-primary);
    background: var(--green-pale);
}

.header-email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--green-pale);
    color: var(--green-primary);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-email-link:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: #ffffff;
}

.icon-envelope {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hamburger – hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

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


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

.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.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: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    gap: 0;
}

.hero-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.12;
    color: #ffffff;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.90),
        0 6px 24px rgba(0, 0, 0, 0.60),
        0 0 60px rgba(0, 0, 0, 0.40);
    max-width: 820px;
    margin-bottom: 18px;
    text-wrap: balance;

    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

.hero-sub {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 4px 16px rgba(0, 0, 0, 0.50);
    margin-bottom: 36px;

    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}

.btn-phone {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 1.0s forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ======================================== */
/* TAGLINE BAR                             */
/* ======================================== */

.tagline-bar {
    width: 100%;
    background: linear-gradient(135deg, #152e12 0%, #2a6022 30%, #3e8030 55%, #265622 80%, #152e12 100%);
    box-shadow:
        0 4px 28px rgba(30, 90, 20, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.20);
    padding: 32px 0;
}

.tagline-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.tagline-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tagline-text strong {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.40);
}

.tagline-text em {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    text-align: center;
}


/* ======================================== */
/* ANCHOR SCROLL OFFSET (clears sticky hdr)*/
/* ======================================== */

#about,
#faq,
#why,
#form,
#contact {
    scroll-margin-top: 120px;
}


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

.section-about {
    padding: 96px 0;
    background: #ffffff;
}

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

.about-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.18;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.about-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.35;
    color: var(--brown-medium);
    margin-top: 32px;
    margin-bottom: 14px;
}

.about-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #444444;
    margin-bottom: 14px;
}

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


/* ======================================== */
/* SECTION 2: FAQ                          */
/* ======================================== */

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

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.18;
    color: var(--green-dark);
    margin-bottom: 52px;
}

.section-title.center {
    text-align: center;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.1px;
    line-height: 1.45;
    color: #222222;
    transition: color 0.2s ease;
}

.faq-question::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    color: var(--green-primary);
    flex-shrink: 0;
    margin-left: 20px;
    line-height: 1;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.open .faq-question {
    color: var(--green-primary);
}

.faq-item.open .faq-question::after {
    content: '\2212';
}

.faq-question:hover {
    color: var(--green-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #444444;
}

.faq-answer p + p {
    margin-top: 12px;
}


/* ======================================== */
/* SECTION 3: WHY CHOOSE US               */
/* ======================================== */

.section-why {
    padding: 96px 0;
    background: #ffffff;
}

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

.why-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.18;
    color: var(--green-dark);
    margin-bottom: 18px;
}

.why-intro {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 28px;
}

.why-list {
    margin-bottom: 30px;
}

.why-list li {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #444444;
    padding: 14px 0 14px 40px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.why-list li:first-child {
    border-top: 1px solid #eeeeee;
}

.why-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1;
}

.why-list li strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--green-dark);
}

.why-cta-text {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #555555;
    font-style: italic;
    margin-bottom: 26px;
}

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


/* ======================================== */
/* SECTION 4: PRICING & FORM               */
/* ======================================== */

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

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Pricing Table ── */

.pricing-table h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.price-compost-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #4a9a3c 0%, #3e7e34 50%, #2a6022 100%);
    box-shadow: 0 3px 14px rgba(46, 96, 34, 0.40);
    color: #ffffff;
    padding: 18px 22px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.price-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
    color: #ffffff;
}

.price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.2;
    color: #ffffff;
}

.price-amount small {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.price-tier {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.tier-header {
    background: linear-gradient(135deg, #1e4a1a 0%, #2a6022 60%, #245220 100%);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tier-fee {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
    color: #ffffff;
}

.tier-header small {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
}

.price-tier ul {
    padding: 12px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 16px;
}

.price-tier ul li {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #444444;
    padding-left: 12px;
    position: relative;
}

.price-tier ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-size: 14px;
}

.price-tier--pickup .tier-header {
    background: linear-gradient(135deg, #5a3a18 0%, #7a5430 60%, #6a4828 100%);
}


/* ── Delivery Form ── */

.delivery-form-wrapper {
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}

.delivery-form-wrapper h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: var(--green-dark);
    margin-bottom: 30px;
}

/* Honeypot – invisible to real users */
.honeypot-field {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.required {
    color: #c0392b;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: #222222;
    background: #fafaf8;
    border: 1px solid #cccccc;
    border-radius: 4px;
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(62, 126, 52, 0.14);
    background: #ffffff;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.address-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

/* Yards slider */
.yards-group input[type="range"] {
    width: 100%;
    height: 6px;
    padding: 0;
    margin: 12px 0 8px;
    background: #d5d5d5;
    border: none;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.yards-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
    border: 3px solid #ffffff;
    transition: transform 0.15s ease;
}

.yards-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.12);
}

.yards-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
    border: 3px solid #ffffff;
}

.yards-display {
    display: flex;
    justify-content: space-between;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: #555555;
}

.yards-display strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--green-primary);
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: #333333;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green-primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* Form success message */
.form-success {
    text-align: center;
    padding: 52px 20px;
}

.form-success-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-success-inner svg {
    width: 60px;
    height: 60px;
    color: var(--green-primary);
}

.form-success-inner p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: var(--green-dark);
}


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

.fat-footer {
    width: 100%;
    background: linear-gradient(160deg, #0c2010 0%, #182e14 35%, #1e3a18 65%, #0e2410 100%);
    box-shadow: inset 0 4px 24px rgba(0, 0, 0, 0.30);
    padding: 72px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 28px;
}

.footer-contact h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-operated {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 16px;
}

.footer-contact address p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact address a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

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

.footer-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border-radius: 6px;
    border: 0;
}

.map-link {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    text-align: right;
}

.map-link a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.map-link a:hover {
    color: rgba(255, 255, 255, 0.90);
}


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

.copyright-bar {
    width: 100%;
    background: #080808;
    padding: 16px 0;
}

.copyright-bar p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.copyright-bar a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

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


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

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


/* ======================================== */
/* RESPONSIVE – TABLET (≤1100px)           */
/* ======================================== */

@media (max-width: 1100px) {
    .about-grid,
    .why-grid {
        gap: 40px;
    }

    .hero-h1 {
        font-size: 50px;
    }
}


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

@media (max-width: 768px) {

    body {
        padding-bottom: 54px;
    }

    /* Anchor scroll offset for mobile header height */
    #about,
    #faq,
    #why,
    #form,
    #contact {
        scroll-margin-top: 74px;
    }

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

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

    .main-nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        z-index: 999;
        flex-direction: column;
        padding: 12px 0 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 28px;
        font-size: 15px;
        letter-spacing: 1px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .main-nav ul li a:hover,
    .main-nav ul li a:focus {
        background: rgba(255, 255, 255, 0.10);
        color: #ffffff;
    }

    .header-email-link {
        width: 36px;
        height: 36px;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-h1 {
        font-size: 34px;
        letter-spacing: -0.2px;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 17px;
        letter-spacing: 0.5px;
        margin-bottom: 28px;
    }

    .btn-phone {
        font-size: 17px;
        padding: 15px 32px;
    }

    /* Tagline bar */
    .tagline-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    /* About */
    .section-about {
        padding: 64px 0;
    }

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

    .about-text h2 {
        font-size: 32px;
    }

    .about-text h3 {
        font-size: 22px;
    }

    /* FAQ */
    .section-faq {
        padding: 64px 0;
    }

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

    /* Why Choose */
    .section-why {
        padding: 64px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-content h2 {
        font-size: 30px;
    }

    /* Pricing & Form */
    .section-form {
        padding: 64px 0;
    }

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

    .delivery-form-wrapper {
        padding: 28px 20px;
    }

    .name-fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .address-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price-tier ul {
        grid-template-columns: 1fr;
    }

    /* Fat Footer */
    .fat-footer {
        padding: 52px 0;
    }

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

    .footer-map iframe {
        height: 280px;
    }

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

    .mobile-sticky-phone a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Lato', Arial, sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        line-height: 1;
        color: #ffffff;
        text-decoration: none;
    }

    .mobile-sticky-phone svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
}


/* ======================================== */
/* RESPONSIVE – SMALL MOBILE (≤480px)      */
/* ======================================== */

@media (max-width: 480px) {
    .hero-section {
        height: 460px;
    }

    .hero-h1 {
        font-size: 28px;
    }

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

    .btn-phone {
        font-size: 15px;
        padding: 14px 24px;
    }

    .tagline-text strong {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .delivery-form-wrapper h2,
    .pricing-table h2 {
        font-size: 28px;
    }
}
