/* ============================================================
   BLANCA BEACH HOUSE — SHARED SITE STYLES
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #222;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ========== TOP BAR ========== */
.top-bar {
    background: #d4a574;
    color: #111;
    padding: 12px 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10000;
}
.top-bar a {
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 40px; /* set by JS to actual top-bar height */
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    padding: 16px 40px;
}

.nav-logo img {
    max-height: 54px;
    width: auto;
    transition: filter 0.3s, max-height 0.3s;
}

.nav.scrolled .nav-logo img {
    max-height: 44px;
    filter: brightness(0);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.7; }

.nav.scrolled .nav-links a { color: #111; }

.nav-links .book-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    color: #111 !important;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: background 0.2s, color 0.2s;
}

.nav.scrolled .nav-links .book-btn {
    background: #111;
    color: #fff !important;
}

/* Sticky CTA bar */
.sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9997;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sticky-cta a {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.96);
    color: #111;
    backdrop-filter: blur(8px);
}
.sticky-cta a.sticky-primary {
    background: #111;
    color: #fff;
    border-color: #111;
}
.sticky-cta a:hover { opacity: 0.92; }

/* Weather widget */
.nav-weather {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    margin-right: 4px;
    white-space: nowrap;
}
.nav-weather svg { color: rgba(255,255,255,0.6); }
.nav-weather-loc { opacity: 0.6; }
#wTemp { font-weight: 500; }
.nav.scrolled .nav-weather { color: #666; }
.nav.scrolled .nav-weather svg { color: #999; }

/* Free Guide nav link */
.nav-links .guide-link {
    background: rgba(212,165,116,0.2);
    color: #fff !important;
    border: 1px solid rgba(212,165,116,0.7);
    padding: 6px 14px;
}
.nav-links .guide-link:hover { background: rgba(212,165,116,0.35); opacity: 1; }
.nav.scrolled .nav-links .guide-link {
    background: #d4a574;
    color: #111 !important;
    border-color: #d4a574;
}
.nav.scrolled .nav-links .guide-link:hover { background: #c4966a; }

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    line-height: 1;
}
.nav.scrolled .menu-toggle { color: #111; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    z-index: 9998;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    overflow-y: auto;
    padding: 110px 20px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}
.mobile-nav-group-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 10px 0 2px;
}
.mobile-nav .mobile-close {
    position: absolute;
    top: 24px;
    right: 40px;
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav .mobile-book {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 36px;
    background: #fff;
    color: #111 !important;
    font-weight: 500;
}

/* Pages with dark hero — nav offset for top-bar */
.has-top-bar .nav { top: 0; }

/* ========== FOOTER ========== */
footer {
    background: #111;
    color: #fff;
    padding: 70px 40px 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.15fr 1.15fr;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto 48px;
}

.footer-brand img {
    max-height: 48px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 6px;
}

.footer-col-heading {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-col .footer-address {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-top: 4px;
}

.footer-book-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 11px 22px;
    background: #fff;
    color: #111 !important;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.footer-book-btn:hover { background: #e8e8e8; color: #111 !important; }

/* Direct booking callout */
.direct-book-box {
    max-width: 980px;
    margin: 40px auto 0;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f7f4ef;
}
.direct-book-box h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #111;
}
.direct-book-box ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 8px;
}
.direct-book-box li {
    font-size: 13px;
    color: #333;
}
.direct-book-box li::before {
    content: "✓";
    margin-right: 10px;
    color: #111;
    opacity: 0.7;
}

/* Tick list utility */
.tick-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.tick-list li::before {
    content: "✓";
    margin-right: 10px;
    color: #d4a574;
    font-weight: 700;
}

/* Mini FAQ accordion */
.mini-faq {
    padding: 70px 40px;
    background: #fff;
}
.mini-faq-inner {
    max-width: 900px;
    margin: 0 auto;
}
.mini-faq h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: #111;
    text-align: center;
}
.mini-faq details {
    border-top: 1px solid rgba(0,0,0,0.10);
    padding: 14px 0;
}
.mini-faq details:last-child { border-bottom: 1px solid rgba(0,0,0,0.10); }
.mini-faq summary {
    cursor: pointer;
    font-size: 14px;
    color: #111;
    list-style: none;
    font-weight: 500;
}
.mini-faq summary::-webkit-details-marker { display: none; }
.mini-faq summary::after {
    content: "+";
    float: right;
    color: #777;
    font-weight: 600;
}
.mini-faq details[open] summary::after { content: "–"; }
.mini-faq p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Capacity facts row */
.capacity-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0 14px;
}
.capacity-facts > div {
    background: #f7f4ef;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 16px 14px;
    text-align: center;
}
.capacity-facts strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}
.capacity-facts span {
    display: block;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Blog — related reading cards */
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.blog-related-card {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 24px 22px;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color 0.2s;
}
.blog-related-card:hover { border-color: #c4956a; }
.blog-related-card-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 10px;
}
.blog-related-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    margin: 0 0 8px;
}
.blog-related-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin: 0 0 16px;
}
.blog-related-card-arrow {
    font-size: 12px;
    color: #c4956a;
    letter-spacing: 0.06em;
}
@media (max-width: 700px) {
    .blog-related-grid { grid-template-columns: 1fr; }
}


/* Blog — scroll guide card (bottom-right floating) */
.guide-scroll-card {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 272px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 6px 28px rgba(0,0,0,0.11);
    padding: 20px 22px 22px;
    z-index: 900;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s, transform 0.35s;
    pointer-events: none;
}
.guide-scroll-card.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.guide-scroll-card.dismissed { display: none; }
.guide-scroll-card-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: #bbb;
    cursor: pointer;
    padding: 2px 4px;
}
.guide-scroll-card-close:hover { color: #555; }
.guide-scroll-card-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    margin: -20px -22px 16px;
    width: calc(100% + 44px);
}
.guide-scroll-card-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 8px;
}
.guide-scroll-card h4 {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    margin: 0 0 6px;
    line-height: 1.4;
    padding-right: 16px;
}
.guide-scroll-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.65;
    margin: 0 0 14px;
}
.guide-scroll-card-cta {
    display: block;
    text-align: center;
    padding: 11px 16px;
    background: #c4956a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}
.guide-scroll-card-cta:hover { background: #b5845a; color: #fff; }
@media (max-width: 600px) {
    .guide-scroll-card { display: none; }
}

/* Blog formatting components */
.blog-pull-quote {
    margin: 36px 0;
    padding: 26px 36px;
    border-left: 3px solid #c4956a;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.65;
    color: #2a2520;
    font-style: italic;
    letter-spacing: 0.01em;
}

.blog-callout {
    margin: 32px 0;
    padding: 24px 28px;
    background: #f5f0ea;
    border: 1px solid rgba(0,0,0,0.07);
}
.blog-callout-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a6f58;
    margin-bottom: 12px;
}
.blog-callout p {
    font-size: 14px;
    color: #4a4540;
    line-height: 1.9;
    margin: 6px 0 0;
}
.blog-callout ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}
.blog-callout ul li {
    font-size: 14px;
    color: #4a4540;
    line-height: 1.85;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}
.blog-callout ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #c4956a;
}

.blog-note {
    margin: 24px 0;
    padding: 14px 20px;
    border-left: 2px solid rgba(196,149,106,0.45);
    font-size: 14px;
    color: #666;
    line-height: 1.85;
}
.blog-note strong {
    color: #444;
}

/* Blog post images */
.blog-img {
    margin: 32px 0;
}
.blog-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-img figcaption {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* SEO landing / journal utilities */
.seo-shell,
.journal-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 72px 40px;
}

.seo-intro,
.journal-intro {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
}

.seo-intro p,
.journal-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: #5f5a54;
}

.seo-section,
.journal-section {
    margin-top: 34px;
}

.seo-section h2,
.journal-section h2 {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #111;
    margin-bottom: 14px;
}

.seo-section h3,
.journal-section h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
}

.seo-section p,
.journal-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #5f5a54;
    margin-bottom: 14px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.seo-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 24px 22px;
}

.seo-card p:last-child,
.seo-card ul:last-child {
    margin-bottom: 0;
}

.seo-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.seo-stat {
    background: #f7f4ef;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 18px 16px;
    text-align: center;
}

.seo-stat strong {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 8px;
}

.seo-stat span {
    display: block;
    font-size: 14px;
    color: #5f5a54;
    line-height: 1.7;
}

.seo-checklist,
.journal-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.seo-checklist li,
.journal-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.85;
    color: #5f5a54;
}

.seo-checklist li::before,
.journal-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: #b27a42;
    font-weight: 700;
}

.seo-days {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.seo-day {
    background: #f7f4ef;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 22px 20px;
}

.seo-day p:last-child {
    margin-bottom: 0;
}

.seo-band {
    margin-top: 32px;
    padding: 28px 24px;
    background: #ede4d8;
    border: 1px solid rgba(0,0,0,0.06);
}

.seo-band h2,
.seo-band h3 {
    margin-bottom: 10px;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    border: 1px solid rgba(0,0,0,0.08);
}

.seo-table th,
.seo-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    line-height: 1.7;
}

.seo-table th {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    background: #f7f4ef;
}

.seo-table td {
    color: #5f5a54;
}

.seo-faq {
    margin-top: 24px;
}

.seo-faq details {
    border-top: 1px solid rgba(0,0,0,0.10);
    padding: 14px 0;
}

.seo-faq details:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.10);
}

.seo-faq summary {
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.seo-faq summary::-webkit-details-marker {
    display: none;
}

.seo-faq summary::after {
    content: "+";
    float: right;
    color: #d4a574;
}

.seo-faq details[open] summary::after {
    content: "-";
}

.seo-faq p {
    margin-top: 10px;
    margin-bottom: 0;
}

.seo-quote {
    padding: 24px 22px;
    border-left: 3px solid #d4a574;
    background: #fff;
    margin-top: 20px;
}

.seo-quote p {
    margin-bottom: 10px;
    font-style: italic;
}

.seo-quote cite {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    font-style: normal;
}

@media (max-width: 900px) {
    .seo-shell,
    .journal-shell {
        padding: 56px 24px;
    }

    .seo-grid,
    .seo-grid.two-col,
    .seo-stat-grid,
    .seo-days {
        grid-template-columns: 1fr;
    }
}

/* Newsletter */
.newsletter-blurb {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.newsletter-form input {
    padding: 10px 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 12px;
    font-family: inherit;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form input:focus { border-color: #555; }
.newsletter-form button {
    padding: 10px;
    background: #fff;
    color: #111;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.newsletter-form button:hover { background: #e0e0e0; }
.newsletter-ok { font-size: 12px; color: #9ca; margin-top: 4px; }

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.08em;
}

/* ========== FEATURE ICONS ========== */
.feature-icon,
.retreat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    color: #d4a574;
}

.feature-icon svg,
.retreat-icon svg {
    width: 100%;
    height: 100%;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-primary:hover { background: #333; }

.btn-light {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-light:hover { background: rgba(255,255,255,0.85); }

/* ========== SOCIAL PROOF STRIP ========== */
.social-proof {
    background: #f7f4ef;
    padding: 70px 40px;
}
.social-proof-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.social-proof h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
    color: #111;
    text-align: center;
}
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review-tile {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 26px 24px;
}
.review-tile p {
    font-size: 14px;
    color: #222;
    line-height: 1.75;
    margin-bottom: 14px;
}
.review-tile cite {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: #777;
    letter-spacing: 0.04em;
}
.social-proof-more {
    text-align: center;
    margin-top: 22px;
    font-size: 12px;
    color: #777;
}
.social-proof-more a { text-decoration: underline; text-underline-offset: 3px; }

/* ========== MAP EMBED ========== */
.map-embed {
    max-width: 1100px;
    margin: 26px auto 0;
    border: 1px solid rgba(0,0,0,0.08);
}
.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ========== PAGE HERO (interior pages) ========== */
.page-hero {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 40px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
}
.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.page-hero p {
    position: relative;
    z-index: 1;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ========== SMALL UTILITY LINKS ========== */
.facts-note {
    text-align: center;
    padding: 14px 20px 0;
    font-size: 12px;
    color: #888;
}
.facts-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== GUIDE STRIP (homepage lead magnet) ========== */
.guide-strip {
    background: #ede4d8;
    padding: 60px 40px;
    overflow: hidden;
}
.guide-strip-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 480px;
}
.guide-strip-cover {
    flex-shrink: 0;
    width: 300px;
    background: #d4c4b0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
}
.guide-strip-cover img {
    width: 100%;
    max-width: 260px;
    display: block;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.guide-strip-text {
    flex: 1;
    padding: 64px 64px 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guide-strip-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #b8834a;
    margin-bottom: 18px;
}
.guide-strip-text h2 {
    font-size: 38px;
    font-weight: 300;
    color: #2c1f14;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.guide-strip-text p {
    font-size: 15px;
    color: #5a4535;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 500px;
}
.guide-strip-text .btn-primary {
    align-self: flex-start;
    background: #2c1f14;
}
.guide-strip-text .btn-primary:hover { background: #4a3525; }

@media (max-width: 900px) {
    .guide-strip { padding: 0; }
    .guide-strip-inner { flex-direction: column; }
    .guide-strip-cover { width: 100%; padding: 40px 40px 0; align-items: flex-end; }
    .guide-strip-cover img { max-width: 200px; margin: 0 auto; }
    .guide-strip-text { padding: 48px 40px 56px; }
}
@media (max-width: 480px) {
    .guide-strip-text { padding: 40px 24px 48px; }
    .guide-strip-text h2 { font-size: 28px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav { padding: 18px 20px; }
    .nav.scrolled { padding: 14px 20px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav-weather { display: none; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    footer { padding: 50px 20px 24px; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .page-hero h1 { font-size: 32px; }
    .page-hero { height: 55vh; }

    .social-proof { padding: 56px 20px; }
    .social-proof-grid { grid-template-columns: 1fr; }
}

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