/*
Theme Name: Stonewater Child
Template: inspiro
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =========================
   BASE
========================= */

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    background: linear-gradient(
        to bottom,
        #156b2b 0%,
        #45874d 38%,
        #c5e797 100%
    );
    background-attachment: fixed;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #1d1d1d;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: 0.25s ease;
}

body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#page,
.site {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* =========================
   LAYOUT
========================= */

.site,
#page,
.site-content,
#content,
.site-main {
    min-height: auto;
    height: auto;
    overflow: visible;
}

.home .entry-content,
.entry-content,
.site-main,
.wp-site-blocks {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

article.hentry,
.hentry,
.page,
.singular {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

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

.site-header {
    background: linear-gradient(
        to bottom,
        #156b2b 0%,
        #45874d 38%,
        #c5e797 100%
    );
    height: 88px;
    border-bottom: 1px solid #7e9d67;
    position: relative;
    z-index: 1000;
}

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

.site-branding {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-branding img {
    width: 120px;
    height: auto;
    display: block;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 54px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    list-style: none;
}

.main-navigation a {
    color: #111111;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: .8px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: all 0.4s ease;
}

.main-navigation a:hover {
    background: transparent;
    letter-spacing: 1.5px;
}

/* =========================
   PAGE RESET
========================= */

.site-content,
.wp-site-blocks,
main {
    margin: 0 !important;
    padding: 0 !important;
}

.home .entry-content,
.home .site-content,
.home main,
.home .content-area,
.home article,
.home .wp-site-blocks {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home .wp-block-cover {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ========================= SCROLL ANIMATIONS ========================= */

/* ===== Home ===== */

/* Default — hidden state */
.will-animate {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Hero panel — from left */
.hero-panel.will-animate {
    transform: translateX(-60px);
}

/* Phase badge — from above */
.phase-badge.will-animate {
    transform: translateY(-30px) scale(0.92);
}

/* Phase container (heading) — from above */
.phase-container.will-animate {
    transform: translateY(-40px);
}

/* Phase stats — from below */
.phase-stats.will-animate {
    transform: translateY(-40px);
}

/* Gallery — from below */
.expect-gallery.will-animate {
    transform: translateY(50px);
}

/* Location — fade in only */
.location-section .wp-block-cover__inner-container.will-animate {
    transform: none;
}

/* Contact panel — fade in only */
.contact-section .wp-block-cover__inner-container.will-animate {
    transform: none;
}

/* Agent cards — from left */
.agent-card.will-animate {
    transform: translateX(-50px);
}

/* Contact form — from right */
.contact-form-col.will-animate {
    transform: translateX(60px);
}

/* Builder cards — first from left, second from right */
.builder-card:nth-child(odd).will-animate {
    transform: translateX(-50px);
}
.builder-card:nth-child(even).will-animate {
    transform: translateX(50px);
}

/* Triggered state — everything snaps into place */
.will-animate.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Stagger delays */
.agent-card:nth-child(1) { transition-delay: 0s; }
.agent-card:nth-child(2) { transition-delay: 0.15s; }

.builder-card:nth-child(1) { transition-delay: 0s; }
.builder-card:nth-child(2) { transition-delay: 0.15s; }

/* ===== Build Process Page ===== */

.build-process-steps.will-animate {
    transform: translateY(20px) scale(0.85);
    opacity: 0;
}

/* Each step — from above */
.build-step.will-animate {
    transform: translateY(20px) scale(0.85);
    opacity: 0;
}

/* Stagger delays for steps */
.build-step:nth-child(1) {
    transition-delay: 0s;
    opacity: 1 !important;
    transform: none !important;
}
.build-step:nth-child(2) { transition-delay: 0.1s; }
.build-step:nth-child(3) { transition-delay: 0.2s; }
.build-step:nth-child(4) { transition-delay: 0.3s; }
.build-step:nth-child(5) { transition-delay: 0.4s; }
.build-step:nth-child(6) { transition-delay: 0.5s; }
.build-step:nth-child(7) { transition-delay: 0.6s; }
.build-step:nth-child(8) { transition-delay: 0.7s; }
.build-step:nth-child(9) { transition-delay: 0.8s; }
.build-step:nth-child(10) { transition-delay: 0.9s; }

/* Triggered state — everything snaps into place */
.will-animate.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

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

.hero-cover {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-height: calc(100vh - 88px);
    padding: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    position: relative;
}

.hero-cover img.wp-block-cover__image-background {
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-cover .wp-block-cover__inner-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 80px !important;
    padding-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
}

.hero-panel {
    width: 100%;
    max-width: 100%;
    padding: 150px 120px 120px 120px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.70);
    margin-top: 0;
}

.hero-panel h1,
.hero-panel .wp-block-heading {
font-family: 'Playfair Display', serif;
font-size: 5.5rem;
line-height: 0.92;
letter-spacing: -3px;
color: #f5f5f5;
margin-bottom: 25px;
}

.hero-panel h1::after,
.hero-panel .wp-block-heading::after {
  content: '';
  display: block;
  width: 700px;
  height: 2.5px;
  background: linear-gradient(to right, #279227, transparent);
  margin-top: 18px;
}


.hero-panel p {
    font-size: 1.35rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-panel .wp-block-button__link {
    background: #1f6931;
    color: #ffffff;
    border-radius: 999px;
    padding: 18px 48px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.5);
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}
.hero-panel .wp-block-button__link:hover {
    background: #245c30;
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    letter-spacing: 4px;
}

/* ========================= END COVER BLOCK ========================= */

/* ========================= PHASE BLOCK ========================= */

.phase-section {
    width: 100% !important;
    max-width: 100% !important;
    min-height: calc(100vh - 60px) !important;
    box-sizing: border-box;
    overflow: hidden; /* prevent horizontal scroll */
}

.phase-section .wp-block-cover__inner-container {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Target every Gutenberg class combo that lands on PhaseBlock */
.phase-container,
.phase-container.has-global-padding,
.phase-container.wp-block-group-is-layout-constrained,
.phase-container.alignfull {
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(0, 0, 0, 0.55) !important;
    border-radius: 36px !important;
    padding: 28px 32px 24px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.40) !important;
}

.phase-container.wp-block-group-is-layout-constrained > *,
.phase-container.has-global-padding > * {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* ── Body row: headers left, map right ───────────────────────── */

.phase-container .wp-block-columns {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 60px !important;
    margin: 0 !important;
}


.phase-container .wp-block-column:first-child {
    flex: 0 0 600px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0px !important;
    padding: 0 !important;
}

.phase-container .wp-block-column:last-child {
    flex: 1 1 700px !important; /* fill all remaining space */
    min-width: 0 !important;
    padding: 0 !important;
}


/* ── Headers ──────────────────────────────────────────────────── */

.phase-section h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 3rem !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #c5e797 !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
    text-align: left !important;
    margin: 0 0 20px !important;
    width: 100% !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
}

.phase-section h1::after {
    content: '';
    display: block;
    width: 140px;
    height: 2px;
    background: linear-gradient(to right, #c5e797, transparent);
    margin: 8px 0 0;
}

.phase-section .wp-block-heading::after {
    display: none;
}

.phase-section h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(197, 231, 151, 0.5) !important;
    text-align: left !important;
    text-align: left !important;
    margin: 0 0 16px !important;
    padding: 0 0 0 12px !important;
    border-left: 2px solid rgba(197, 231, 151, 0.4); /* accent line */
}

.phase-section h2 a {
    color: rgba(97, 196, 99, 0.7) !important;
    text-decoration: none !important;
}

.phase-section h2 a:hover {
    color: rgb(117, 175, 112) !important;
}


/* ── NOW SELLING badge ────────────────────────────────────────── */

.phase-badge {
    display: inline-block;
    align-self: flex-start;
    background: #1f6931;
    color: #c5e797;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 20px;
    border-radius: 999px;
    border: 1px solid rgba(197, 231, 151, 0.4);
    margin-top: 14px;
}


/* ── Map — constrained so it fits in viewport ────────────────── */

.phase-container .wp-block-image,
.phase-container figure,
.phase-container .stonewater-map-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
    border-radius: 16px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.40) !important;
    position: relative !important;
}

.phase-container .stonewater-map-wrapper iframe,
.phase-container .stonewater-map-wrapper svg,
.phase-container .stonewater-map-wrapper img,
.phase-container .wp-block-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
}

.phase-container .wp-block-shortcode {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ── Stats bar ────────────────────────────────────────────────── */

.phase-stats {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-top: 1.5px solid rgba(197, 231, 151, 0.25);
    border-radius: 14px;
    padding: 10px 24px !important;
    box-sizing: border-box;
    gap: 1px;
    margin: 0 !important;
}

.phase-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    min-width: 100px;
}

.phase-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 20px;
}

.phase-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #c5e797;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.phase-stat-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

/* ========================= END PHASE BLOCK ========================= */

/* ========================= CONTENT AREA ========================= */

.container,
.entry-content {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.site-main {
    width: 100%;
    margin: 0;
}

/* ========================= LOTS ARCHIVE ========================= */

.lots-archive-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 80px 100px;
    box-sizing: border-box;
}

.lots-archive-header {
    padding: 40px 20px 40px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.lots-archive-header h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;  
    font-style: italic; 
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.lots-archive-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
}

.lots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lot-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.lot-card.status-sold {
    opacity: 0.65;
}

.lot-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.lot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lot-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(300deg, #344c3a 0%, #3a6444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lot-card-image-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(197, 231, 151, 0.6);
}

.lot-card-image-placeholder.large {
    height: 380px;
    border-radius: 20px;
}

.lot-status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lot-status-badge.status-spec-home {
    background: #e0a820;
    color: #4b3603;
}

.lot-status-badge.status-available {
    background: #246740;
    color: #ffffff;
}

.lot-status-badge.status-pending {
    background: #e07820;
    color: #ffffff;
}

.lot-status-badge.status-sold {
    background: #7a2a2a;
    color: #ffffff;
}

.lot-card-content { 
    padding: 24px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    background: linear-gradient(135deg, #1a3a22 0%, #2d5c38 100%);
}

.lot-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0;
    letter-spacing: -0.3px;
}

.lot-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lot-meta span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.lot-meta span strong {
    color: #c5e797;
    margin-right: 4px;
}

.lot-card-btn {
    margin-top: auto;
    padding-top: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    color: #c5e797;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* ========================= SINGLE LOT ========================= */

.single-lot-wrap,
.lots-archive-wrap {
    background: transparent !important;
}

body.single-lots,
body.post-type-archive-lots {
    background: linear-gradient(
        to bottom,
        #5c8465 0%,
        #45874d 38%,
        #156b2b 100%
    ) !important;
    background-attachment: fixed !important;
}

.single-lot-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 100px;
    box-sizing: border-box;
}

.single-lot {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

.single-lot-main {
    order: 2;
}

.single-lot-sidebar {
    order: 1;
}

.lot-back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.lot-back-link:hover {
    color: #c5e797;
}

.single-lot-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single-lot-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.40);
}

.lot-image-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.lot-strip-thumb {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lot-strip-thumb.active-thumb {
    border-color: #193c11;
}

.lot-strip-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.40);
}

.lot-strip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lot-extra-content {
    margin-top: 10px;
}

.lot-extra-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 12px;
}

/* WordPress gallery block inside lot content */
.lot-extra-content .wp-block-gallery,
.lot-extra-content .wp-block-gallery.has-nested-images,
.lot-extra-content .wp-block-gallery.is-layout-flex {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: unset !important;
}

.lot-extra-content .wp-block-gallery .wp-block-image,
.lot-extra-content .wp-block-gallery figure,
.lot-extra-content .wp-block-gallery li,
.lot-extra-content .wp-block-gallery .blocks-gallery-item {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.30) !important;
    width: 100% !important;
    background: transparent !important;
    line-height: 0 !important;
    height: 200px !important;
}

.lot-extra-content .wp-block-gallery .wp-block-image a,
.lot-extra-content .wp-block-gallery figure a {
    display: block !important;
    line-height: 0 !important;
    font-size: 0 !important;
    height: 200px !important;
    overflow: hidden !important;
}

.lot-extra-content .wp-block-gallery .wp-block-image img,
.lot-extra-content .wp-block-gallery figure img,
.lot-extra-content .wp-block-gallery li img,
.lot-extra-content .wp-block-gallery .blocks-gallery-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: transform 0.25s ease;
    max-width: none !important;
}

.lot-extra-content .wp-block-gallery figure img:hover,
.lot-extra-content .wp-block-gallery li img:hover {
    transform: scale(1.03);
}

/* Hide figcaption green bar WordPress adds */
.lot-extra-content figcaption,
.lot-extra-content .wp-block-image figcaption,
.lot-extra-content .blocks-gallery-item figcaption,
.lot-extra-content .wp-block-gallery figcaption,
.single-lots figcaption,
.single-lots .wp-block-gallery figcaption,
.single-lots .wp-block-image figcaption,
figcaption.blocks-gallery-item__caption,
.wp-block-gallery.has-nested-images figcaption,
.wp-block-gallery.has-nested-images .wp-block-image figcaption,
.wp-block-image.size-large figcaption {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Lightbox */
.lot-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.lot-lightbox.active {
    display: flex;
}

.lot-lightbox img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    user-select: none;
}

.lot-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    z-index: 10000;
}

.lot-lightbox-close:hover { opacity: 1; }

.lot-lightbox-prev,
.lot-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 2.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10000;
    padding: 0;
}

.lot-lightbox-prev { left: 20px; }
.lot-lightbox-next { right: 20px; }

.lot-lightbox-prev:hover,
.lot-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lot-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.lot-extra-content h2,
.lot-extra-content h3 {
    font-family: 'Playfair Display', serif;
    color: #f5f5f5;
    margin-bottom: 20px;
    margin-top: 40px;
}

.lot-extra-content p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 1rem;
    line-height: 1.75;
}

.lot-description ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 3;
    column-gap: 40px;
}

.lot-description ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding: 4px 0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.lot-description ul li::before {
    content: '•';
    color: #c5e797;
    margin-right: 8px;
}

.single-lot-sidebar {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 28px;
    padding: 40px 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 108px;
}

/* When WP admin bar is visible */
.admin-bar .single-lot-sidebar {
    top: 140px;
}

.single-lot-sidebar h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #f5f5f5;
    margin: 0;
    letter-spacing: -0.5px;
}

.lot-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lot-details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.lot-details-list li:last-child {
    border-bottom: none;
}

.lot-details-list li strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
}

.lot-details-list li span {
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1rem;
}

.lot-cta-btn {
    display: block;
    text-align: center;
    background: #1f6931;
    color: #f7f6f6 !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 16px 38px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.25s ease;
    margin-top: 8px;
}

.lot-cta-btn:hover {
    opacity: 0.85;
}

.single-lot-image {
    position: relative;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-arrow-prev { left: 12px; }
.gallery-arrow-next { right: 12px; }

@media (max-width: 900px) {
    .lots-archive-wrap,
    .single-lot-wrap {
        padding: 40px 24px 60px;
    }
    .lots-grid {
        grid-template-columns: 1fr;
    }
    .lots-archive-header {
        padding: 50px 20px 30px;   /* less top padding on mobile */
    }
    .lots-archive-header h1 {
        font-size: 2.4rem;
    }
    .single-lot {
        grid-template-columns: 1fr;
    }
    .single-lot-sidebar {
        position: static;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.lots-archive-wrap {
    flex: 1;
}

/* ========================= BUILD PROCESS ========================= */

.build-process-hero {
    position: relative;
    height: 300px;
}

.build-process-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}
 
.build-process-hero .wp-block-cover__inner-container {
    padding: 60px 80px !important;
    display: flex !important;
    align-items: flex-end !important;
    height: 100% !important;
    z-index: 1;
}
 
.build-process-hero h1,
.build-process-hero .wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: 60px !important;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
    margin: 0;
    line-height: 2;
    align-items: center;
}
 
.build-process-intro {
    border-radius: 36px;
    min-height: 0 !important;
    padding: 28px 80px !important;
    margin: 15px auto !important;
    width: 1800px !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.50);
}
 
.build-process-intro h2,
.build-process-intro .wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: 2.4rem;
    color: #509f58;
    margin: 0 0 20px 0;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
 
.build-process-intro p,
.build-process-intro li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 0 10px 0;
}
 
.build-process-intro ul {
    padding-left: 22px;
    margin: 0;
}
 
.build-process-intro li {
    margin-bottom: 10px;
}
 
.build-process-steps {
    counter-reset: build-step-counter;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px 48px 60px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}
 
.build-step {
    counter-increment: build-step-counter;
    background: rgba(0, 0, 0, 0.50);
    border-radius: 28px;
    min-height: 0 !important;
    padding: 20px 48px !important;
    transition: background 0.25s ease, transform 0.2s ease;
}
 
 
/* Heading row: number badge sits inline beside the title */
.build-step h2,
.build-step h3,
.build-step .wp-block-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.85rem;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
}
 
/* Auto-numbered green circle, inline with heading text */
.build-step h2::before,
.build-step h3::before,
.build-step .wp-block-heading::before {
    content: counter(build-step-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #156b2b 0%, #45874d 100%);
    border: 2px solid #c5e797;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.5rem;
    color: #c5e797;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
    line-height: 1;
}
 
/* Body text */
.build-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0 0 10px 0;
}
 
/* Lists (e.g. MechanicalPlumbingElectric uses a List block) */
.build-step ul,
.build-step ol {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.02rem;
    line-height: 1.8;
    padding-left: 22px;
    margin: 0;
}
 
.build-step li {
    margin-bottom: 8px;
}

.build-step:last-child {
    margin-bottom: 60px;
}

body.page-id-440{
    background: linear-gradient(
        to bottom,
        #111714 0%,
        #1e2820 50%,
        #1f241f 100%
    );
    background-attachment: fixed;
}
 
/* ------------------------------------------------ Mobile ------------------------------------------------ */

@media (max-width: 768px) {
 
    .build-process-hero .wp-block-cover__inner-container {
        padding: 40px 24px !important;
        min-height: 340px !important;
    }
 
    .build-process-hero h1,
    .build-process-hero .wp-block-heading {
        font-size: 2.6rem;
    }
 
    .build-process-intro {
        padding: 44px 32px;
        width: calc(100% - 40px);
        margin: 32px auto;
        border-radius: 24px;
    }
 
    .build-process-intro h2,
    .build-process-intro .wp-block-heading {
        font-size: 1.8rem;
    }
 
    .build-process-steps {
        padding: 0 20px 60px;
    }
 
    .build-step {
        padding: 28px 24px 30px;
        border-radius: 20px;
    }
 
    .build-step h2,
    .build-step h3,
    .build-step .wp-block-heading {
        font-size: 1.4rem;
        gap: 14px;
    }
 
    .build-step h2::before,
    .build-step h3::before,
    .build-step .wp-block-heading::before {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
}

/* ========================= END BUILD PROCESS ========================= */

/* ========================= BUILD OPTIONS ========================= */

.build-options {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 60px 120px !important;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: stretch;
    gap: 120px;
    background: linear-gradient(180deg, #54936a 0%, #2f7541 65%, #06250e 100%) !important;
}

.build-options h1 {
    text-align: center;              /* Center it over the cards */
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);

    /* Remove excessive internal spacing */
    padding: 20px !important;

    /* Center the heading block and align with card container */
    width: 100%;
    margin: 0 auto 60px;

    /* More subtle shadow */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);

    /* Slight letter spacing for elegance */
    letter-spacing: -0.02em;

    /* Decorative underline */
    position: relative;
}

/* Top decorative line */
.build-options h1::before {
    content: "";
    display: block;
    width: 320px;                    /* longer line */
    height: 2px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

.build-options h1::after {
    content: "";
    display: block;
    width: 250px;
    height: 2px;
    margin: 20px auto 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

.build-options > h2,
.build-options > .wp-block-heading {
    width: 100%;
    text-align: center;
    margin: 20px 20px 50px;
}

.builder-card {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(4, 0, 0, 0.332);
    border-radius: 24px;
    padding: 40px 60px 60px !important;
    background: linear-gradient(265deg, #1c522f 0%, #073613 100%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.builder-card h3 {
    margin-bottom: 4px !important;  /* lower = closer, try 4–12px */
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.builder-card p {
    margin-bottom: 2px !important;  /* lower = closer, try 4–12px */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.builder-card li {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.builder-card img {
    width: 100%;
    max-width: 320px;
    height: 220px;                /* fixed logo area */
    object-fit: contain;
    display: block;
}

/* Center all text */
.builder-card h1,
.builder-card h2,
.builder-card h3,
.builder-card h4,
.builder-card h5,
.builder-card h6,
.builder-card p {
    width: 100%;
    text-align: center;
}

.builder-button {
    display: inline-block;
    color: #f4f4f4;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Remove default Gutenberg margins that can make cards different heights */
.builder-card > * {
    margin-left: 0;
    margin-right: 0;
}

/* Push buttons or links to the bottom if present */
.builder-card .wp-block-buttons,
.builder-card .wp-block-button,
.builder-card .builder-button {
    margin-top: auto;
}

/* Fix column height alignment */
.build-options .wp-block-columns {
    display: flex !important;
    align-items: stretch !important;   /* make all columns equal height */
    width: 100%;
}

.build-options .wp-block-column {
    display: flex !important;
    flex-direction: column;            /* stack children vertically */
    align-self: stretch !important;    /* stretch to tallest sibling */
}

.build-options .wp-block-column > .builder-card {
    flex: 1 1 auto;                    /* fill the full column height */
    width: 100%;
}

.builder-card {
    transition: all 0.35s ease;
}

.builder-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 50px rgba(0, 0, 0, 0.22),
        0 10px 20px rgba(0, 0, 0, 0.12);
}

/* ========================= END BUILD OPTIONS ========================= */

/* ========================= EXPECT SECTION ========================= */

/* expect-section → Cover block
   expect-grid    → Columns block
   expect-card    → each Column block */

.expect-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.expect-section .wp-block-cover__inner-container {
    width: calc(100% - 48px) !important;
    max-width: 100% !important;
    margin: 0px auto !important;
    padding: 70px 70px 80px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 36px !important;
}

.expect-section h2,
.expect-section .wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    color: #f5f5f5;
    text-align: left;
    margin-bottom: 60px;
    letter-spacing: -1px;
    width: 100%;
}

.expect-grid,
.expect-grid.wp-block-columns {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.expect-grid .wp-block-column.expect-card,
.expect-grid.wp-block-columns .wp-block-column.expect-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.60) !important;
    border-radius: 36px !important;
    padding: 24px 30px !important;
    box-sizing: border-box !important;
    height: auto !important;
    transition: 0.25s ease;
}

.expect-grid .wp-block-column.expect-card:hover,
.expect-grid.wp-block-columns .wp-block-column.expect-card:hover {
    transform: translateY(-6px);
}

.expect-card h3,
.expect-card .wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.expect-card p {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    margin: 0;
}

/* =========================
   EXPECT GALLERY
   Auto-scrolling marquee
========================= */

.expect-gallery {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    padding: 4px 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.expect-gallery-track {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: max-content;
    animation: gallery-scroll 30s linear infinite;
}

.expect-gallery:hover .expect-gallery-track {
    animation-play-state: paused;
}

@keyframes gallery-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.expect-gallery-track img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expect-gallery-track img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.50);
}

/* ========================= LOCATION SECTION ========================= */
/* location-section → Cover block
   location-map   → div wrapping iframe in Custom HTML block */


.location-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: hidden; /* prevent horizontal scroll */
}

.location-section .wp-block-cover__inner-container {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Target every Gutenberg class combo that lands on locationBlock */
.location-container,
.location-container.has-global-padding,
.location-container.wp-block-group-is-layout-constrained,
.location-container.alignfull {
    width: 100% !important;
    max-width: 100% !important;
    background: #0d2616 !important;
    border-radius: 36px !important;
    padding: 40px 32px 40px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.40) !important;
}

.location-container.wp-block-group-is-layout-constrained > *,
.location-container.has-global-padding > * {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* ── Body row: headers left, map right ───────────────────────── */

.location-container .wp-block-columns {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 60px !important;
    margin: 0 !important;
}


.location-container .wp-block-column:first-child {
    flex: 0 0 600px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0px !important;
    padding: 0 !important;
}

.location-container .wp-block-column:last-child {
    flex: 1 1 700px !important; /* fill all remaining space */
    min-width: 0 !important;
    padding: 0 !important;
}


/* ── Headers ──────────────────────────────────────────────────── */

.location-section h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.8rem !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #f7f3e9 !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
    margin: 12px 0 8px !important;
    border-left: 3px solid #c8b07a !important;
    padding-left: 14px !important;
    padding-bottom: 12px;
}

.location-section h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: rgba(255, 255, 255, 0.861) !important;
    margin: 16px 0 16px !important;
    padding: 10px 0 0 8px !important;
}

.location-section h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.648) !important;
    margin: 0 0 8px !important;
    padding: 0 0 0 17px !important;
}

.location-section ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.location-section li {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    color: #cdddb6 !important;
    margin: 0 !important;
    padding: 9px 0 9px 10px !important;
    border-bottom: 1px solid rgba(205, 221, 182, 0.20) !important;
    list-style: none !important;
}

.location-section li:last-child {
    border-bottom: none !important;
}

/* ── Map — constrained so it fits in viewport ────────────────── */

.location-container .location-map {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.40);
    position: relative;
    aspect-ratio: 3 / 1;
}

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




/* =========================
   LOCATION GALLERY
   Auto-scrolling marquee
========================= */

.location-gallery {
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    padding: 4px 0 !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.location-gallery-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    width: max-content !important;
    animation: gallery-scroll 30s linear infinite !important;
}

.location-gallery:hover .location-gallery-track {
    animation-play-state: paused !important;
}

.location-gallery-track img {
    width: 400px !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

@keyframes gallery-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================= END LOCATION SECTION ========================= */


/* ========================= CONTACT SECTION ========================= */

/* contact-section  → Cover block
   contact-grid     → Columns block
   agent-card       → each agent Column block
   contact-form-col → form Column block */

.contact-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: hidden; /* prevent horizontal scroll */
}

/* Remove any gap between last block and footer */
.contact-section.wp-block-cover,
.wp-site-blocks > .wp-block-cover:last-child,
.wp-site-blocks > *:last-child,
.entry-content > *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.contact-section .wp-block-cover__inner-container {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    margin: 0px auto !important;
    padding: 16px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 24px !important;
    box-sizing: border-box !important;
    background: rgba(0, 0, 0, 0.60) !important;
    border-radius: 36px !important;
}

.contact-section h2,
.contact-section .wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    color: #f5f5f5;
    letter-spacing: -1px;
    margin: 0 !important;
    text-align: left !important;
    width: 100%;
}

.contact-grid,
.contact-grid.wp-block-columns {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.contact-grid.wp-block-columns .wp-block-column.agent-card {
    flex: 0 0 20% !important;
    min-width: 0 !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.65) !important;
    border-radius: 28px !important;
    padding: 36px 40px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.agent-card img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 3px solid #434343 !important;
    margin-bottom: 24px !important;
    display: block !important;
}

.agent-card h2,
.agent-card h3,
.agent-card .wp-block-heading {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: #f5f5f5 !important;
    text-align: center !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.3px !important;
}

.agent-card p {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.6 !important;
    margin: 0 0 6px 0 !important;
    text-align: center !important;
}

/* Agent card links */
.agent-card a {
    color: #c5e797 !important;           /* soft green to match your form focus color */
    text-decoration: none !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    transition: color 0.2s ease !important;
}

.agent-card a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.contact-grid.wp-block-columns .wp-block-column.contact-form-col {
    flex: 0 0 50% !important;
    min-width: 0 !important;
    margin: 0 !important;
    margin-left: 120px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.contact-form-col .wpforms-container {
    background: rgba(0, 0, 0, 0.65) !important;
    border-radius: 28px !important;
    padding: 32px 44px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.contact-form-col .wpforms-field label {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.contact-form-col .wpforms-field input,
.contact-form-col .wpforms-field textarea {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    color: #f5f5f5 !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.contact-form-col .wpforms-field input:focus,
.contact-form-col .wpforms-field textarea:focus {
    border-color: #c5e797 !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.contact-form-col .wpforms-submit {
    background: #1f6931 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 14px 38px !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: 0.25s ease !important;
    display: block !important;
    text-align: center !important;
}

.contact-form-col .wpforms-submit:hover {
    opacity: 0.85 !important;
}

.contact-form-col .wpforms-field-textarea {
    margin-bottom: 0 !important;
}

.contact-form-col .wpforms-submit-container {
    margin-top: 32px !important;
    padding-top: 0 !important;
}

.contact-form-col .wpforms-field-textarea textarea {
    min-height: 120px !important;
}

/* ========================= FOOTER ========================= */

/* Matches header gradient exactly */
footer,
.site-footer,
#colophon {
    background: linear-gradient(
        to bottom,
        #5c8465 0%,
        #45874d 38%,
        #156b2b 100%
    ) !important;
}

.site-footer {
    position: relative !important;
    z-index: 1000;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 88px !important;
    margin: 0 !important;
    padding: 0 120px !important;
    border-top: 1px solid #7e9d67 !important;
    border-bottom: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.site-footer::before,
.site-footer::after {
    display: none !important;
    height: 0 !important;
    content: none !important;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    height: 88px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 54px;
}

/* Footer logo — same size as header logo */
.footer-logo img {
    width: 120px !important;
    max-height: auto !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
}

/* Footer menu — matches header nav exactly */
.footer-menu {
    display: flex;
    align-items: center;
    gap: 54px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
}

.footer-menu a:hover {
    opacity: 0.7;
}

/* Social icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px #111111;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1d63ea;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 0.7;
}


/* ========================= MOBILE ========================= */

@media (max-width: 900px) {

    /* Turn off scroll animations */
    .will-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    }

    /* ── Header ── */
    .site-header {
        height: auto !important;
    }

    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 6px 24px !important;
        height: auto !important;
        min-height: unset !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .site-branding img {
        width: 40px !important;
    }

    /* Nav hidden by default on mobile */
    .main-navigation {
        display: none !important;
        width: 100% !important;
        order: 3 !important;
        padding: 12px 0 16px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.15) !important;
    }

    .main-navigation.nav-open {
        display: block !important;
    }

    .main-navigation ul {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-navigation a {
        font-size: 18px !important;
        display: block !important;
        padding: 10px 4px !important;
    }

    /* Hamburger button */
    .hamburger-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 40px !important;
        height: 40px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 4px !important;
    }

    .hamburger-btn span {
        display: block !important;
        width: 24px !important;
        height: 2.5px !important;
        background: #111111 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Animate into X when open */
    .hamburger-btn.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }
    .hamburger-btn.is-open span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }
    .hamburger-btn.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* ── Hero ── */
    .hero-cover {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 2px !important;
    }
    .hero-cover .wp-block-cover__inner-container {
        padding-left: 2px !important;
        padding-right: 2px !important;
        padding-top: 24px !important;
        margin-top: 24px !important;
        padding-bottom: 2px !important;
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .hero-panel {
        padding: 28px 20px !important;
    }

    .hero-panel h1,
    .hero-panel .wp-block-heading {
        font-size: 1.2rem !important;
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
    }

    .hero-panel h1::after,
    .hero-panel .wp-block-heading::after {
        width: 100% !important;
        height: 1px !important;
        padding-bottom: 0px !important;
    }

    .hero-panel p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        margin-top: 0px !important;
    }

    .hero-panel .wp-block-button__link {
        padding: 12px 28px !important;
        font-size: 13px !important;
        letter-spacing: 2px !important;
        margin-top: 8px !important;    /* was 30px on desktop */
    }

    /* ── Location ── */
    .location-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .location-section .wp-block-cover__inner-container {
        width: 100% !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
        padding-top: 2px !important;
        margin-top: 2px !important;
        padding-bottom: 8px !important;
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .location-container .wp-block-columns {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .location-container .wp-block-column:first-child,
    .location-container .wp-block-column:last-child {
        flex: unset !important;
        width: 100% !important;
    }

    .location-section h1 {
        font-size: 1.5rem !important;
        padding-left: 2px !important;
        text-align: left !important;
    }

    .location-section h2 {
        font-size: 1rem !important;
        text-align: left !important;
    }

    .location-section h3 {
        font-size: 0.6rem !important;
    }

    .location-section li {
        font-size: 0.8rem !important;
    }

    .location-container .location-map {
        aspect-ratio: 16 / 9;
    }

    .location-gallery-track img {
        width: 200px !important;
        height: 150px !important;
        min-height: 150px !important;
        max-height: 150px !important;
    }

    /* ── Expect ── */
    .expect-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .expect-section .wp-block-cover__inner-container {
        width: 100% !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
        padding-top: 2px !important;
        margin-top: 2px !important;
        padding-bottom: 8px !important;
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .expect-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    .expect-section h1,
    .expect-section .wp-block-heading {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
        margin-top: 12px !important;
    }

    .expect-section p {
        font-size: 0.8rem !important;
    }

    .expect-grid,
    .expect-grid.wp-block-columns {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .expect-grid .wp-block-column.expect-card,
    .expect-grid.wp-block-columns .wp-block-column.expect-card {
        flex: unset !important;
        width: 100% !important;
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }

    .expect-gallery-track img {
        width: 200px !important;
        height: 150px !important;
        min-height: 150px !important;
        max-height: 150px !important;
    }

    /* ── Phase ── */
    .phase-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .phase-section .wp-block-cover__inner-container {
        width: 100% !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
        padding-top: 2px !important;
        margin-top: 2px !important;
        padding-bottom: 8px !important;
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .phase-container,
    .phase-container.has-global-padding {
        padding: 16px !important;
        gap: 16px !important;
    }

    .phase-container .wp-block-columns {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .phase-container .wp-block-column:first-child,
    .phase-container .wp-block-column:last-child {
        flex: unset !important;
        width: 100% !important;
    }

    .phase-section h1 {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .phase-section h1::after {
        margin: 6px auto 0 !important;
        height: 1px !important;
        width: 100px !important;
    }

    .phase-section h2 {
        font-size: 1rem !important;
        text-align: center !important;
    }

    .phase-stats {
        flex-direction: column;
        gap: 0;
        padding: 16px 20px;
    }

    .phase-stat {
        padding: 12px 0;
    }

    .phase-stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 0;
        padding-bottom: 12px;
    }
    
    /* ── Map Tooltip ── */
    #tip {
        padding: 8px 10px !important;
        min-width: 110px !important;
    }

    #tip .tl {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }

    #tip .tc {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }

    #tip-image {
        max-width: 100px !important;
        margin-bottom: 6px !important;
        margin-top: 6px !important;
    }

    /* ── Build Options ── */
    .build-options {
        padding: 0 2px 32px !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .build-options h1 {
        font-size: 1.8rem !important;
        margin-bottom: 16px !important;
        padding: 8px !important;
        margin-top: 8px !important;
    }

    .build-options h1::before {
        width: 120px !important;
        margin-bottom: 10px !important;
    }

    .build-options h1::after {
        width: 90px !important;
        margin-top: 10px !important;
    }

    .build-options .wp-block-columns {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .build-options .wp-block-column {
        width: 100% !important;
        flex: unset !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .builder-card {
        padding: 20px 16px 24px !important;
        border-radius: 12px !important;
        margin: 4px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Space above the button */
    .builder-button,
    .wp-block-buttons.builder-button {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .builder-card img {
        max-width: 160px !important;
        height: 110px !important;
    }

    .builder-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 2px !important;
    }

    .builder-card p {
        font-size: 0.85rem !important;
        margin-bottom: 0.6px !important;
        line-height: 1.4 !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .builder-card li {
        font-size: 0.8rem !important;
        margin-bottom: 0.8px !important;
    }

    /* ── Contact ── */
    .contact-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .contact-section .wp-block-cover__inner-container {
        width: 100% !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
        padding-top: 2px !important;
        margin-top: 2px !important;
        padding-bottom: 8px !important;
        margin-left: 2px !important;
        margin-right: 2px !important;
        margin-bottom: 4px !important;
    }

    .contact-container h1,
    .contact-container .wp-block-heading {
        font-size: 2rem !important;
        padding-bottom: 12px !important;
        padding-top: 6px !important;
    }

    .agent-card h3,
    .agent-card .wp-block-heading {
        font-size: 1.6rem !important;
    }

    .agent-card p {
        font-size: 1rem !important;
    }

    .contact-grid,
    .contact-grid.wp-block-columns {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .contact-grid.wp-block-columns .wp-block-column.agent-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 12px 10px 4px 10px !important;
    }

    .agent-card img {
        width: 130px !important;
        height: 130px !important;
        margin-bottom: 12px !important;
    }

    .contact-grid.wp-block-columns .wp-block-column.contact-form-col {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .contact-form-col .wpforms-container {
        padding: 28px 20px !important;
    }

    .contact-form-col .wpforms-submit-container {
        margin-top: 20px !important;
    }

    /* ── Footer ── */
    .footer-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
        gap: 0 !important;
        height: auto !important;
        flex-wrap: wrap !important;
        text-align: left !important;
    }

    .footer-right {
        display: none !important;
        width: 100% !important;
        order: 3 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 0 16px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.15) !important;
    }

    .footer-right.nav-open {
        display: flex !important;
    }

    .footer-hamburger-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 40px !important;
        height: 40px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 4px !important;
    }

    .footer-hamburger-btn span {
        display: block !important;
        width: 24px !important;
        height: 2.5px !important;
        background: #111111 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    .footer-hamburger-btn.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .footer-hamburger-btn.is-open span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .footer-hamburger-btn.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* ── Archive Lots ── */
    .lots-archive-wrap {
        padding: 40px 16px 60px;
    }

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

    /* ── Single Lot ── */
    .single-lot-wrap {
        padding: 20px 16px 60px;
    }
 
    .lot-back-link {
        font-size: 0.82rem;
        margin-bottom: 18px;
        display: block;
    }
 
    .single-lot {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    /* On mobile, show images first, sidebar details below */
    .single-lot-main {
        order: 2;
        gap: 16px;
    }
 
    .single-lot-sidebar {
        order: 1;
        position: static;
        padding: 24px 20px;
        border-radius: 20px;
        gap: 10px;
    }
 
    .single-lot-sidebar h1 {
        font-size: 1.2rem;
        letter-spacing: -0.3px;
    }
 
    .lot-details-list li {
        padding: 10px 0;
        font-size: 0.8rem;
    }
 
    .lot-details-list li span {
        font-size: 0.8rem;
    }
 
    /* Main image */
    .single-lot-image img {
        border-radius: 16px;
    }
 
    /* Hide gallery arrows on mobile — swipe instead */
    .gallery-arrow {
        display: none !important;
    }
 
    /* Thumbnail strip  */
    .lot-image-strip {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }
 
    .lot-strip-thumb {
        border-radius: 10px;
    }
 
    /* Description bullet list — single column, tighter spacing on mobile */
    .lot-description ul {
        columns: 1;
        column-gap: 0;
    }
 
    .lot-description ul li {
        font-size: 0.88rem;
        line-height: 1.4;
        padding: 2px 0;
    }
 
    /* Extra content gallery — 2 columns on mobile */
    .lot-extra-content .wp-block-gallery,
    .lot-extra-content .wp-block-gallery.has-nested-images,
    .lot-extra-content .wp-block-gallery.is-layout-flex {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
 
    .lot-extra-content .wp-block-gallery .wp-block-image,
    .lot-extra-content .wp-block-gallery figure,
    .lot-extra-content .wp-block-gallery li,
    .lot-extra-content .wp-block-gallery .blocks-gallery-item {
        height: 130px !important;
    }
 
    .lot-extra-content .wp-block-gallery .wp-block-image a,
    .lot-extra-content .wp-block-gallery figure a {
        height: 130px !important;
    }
 
    .lot-extra-content .wp-block-gallery .wp-block-image img,
    .lot-extra-content .wp-block-gallery figure img,
    .lot-extra-content .wp-block-gallery li img,
    .lot-extra-content .wp-block-gallery .blocks-gallery-item img {
        height: 130px !important;
    }
 
    .lot-extra-content h2,
    .lot-extra-content h3 {
        font-size: 1.3rem;
        margin-top: 6px;
        margin-bottom: 12px;
    }
 
    /* Status badge inside sidebar (not image overlay) */
    .single-lot-sidebar .lot-status-badge {
        position: static;
        display: inline-block;
        align-self: flex-start;
    }
 
    /* CTA button full width on mobile */
    .lot-cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
 
    /* Lightbox mobile */
    .lot-lightbox {
        padding: 16px 8px;
    }
 
    .lot-lightbox img {
        max-width: 96vw;
        max-height: 72vh;
        border-radius: 8px;
    }
 
    .lot-lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 2rem;
    }
 
    .lot-lightbox-prev,
    .lot-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
 
    .lot-lightbox-prev { left: 6px; }
    .lot-lightbox-next { right: 6px; }
 
    .lot-lightbox-counter {
        font-size: 0.8rem;
        bottom: 14px;
    }
}

/* -- Hide Hamburger on Desktop in Header -- */
@media (min-width: 901px) {
    .hamburger-btn {
        display: none !important;
    }
}

/* -- Hide Hamburger on Desktop in Footer -- */
@media (min-width: 901px) {
    .footer-hamburger-btn {
        display: none !important;
    }
}