/* =========================================================
   NashvilleTN — Editorial Redesign (Final)
   ========================================================= */

:root {
    --bg: #FDFBF5;
    --bg-alt: #F4EFE0;
    --bg-deep: #ECE4CE;
    --ink: #1A1714;
    --ink-soft: #4A4338;
    --ink-mute: #8A7F6E;
    --line: #EBE3D0;
    --line-soft: #F2EBDA;
    --accent: #69AB80;
    --accent-deep: #4F8B65;
    --accent-soft: #D4E6DA;
    --accent-warm: #E8A23A;
    --gold: #B8862C;
    --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-w: 1240px;
    --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
    background: #FDFBF5;
    color: #1A1714;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: #1A1714;
    font-stretch: 75%;
}

h1 { font-size: clamp(3rem, 8.5vw, 6.75rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 600; }
h4 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); font-weight: 600; }

h1 em, h2 em, h3 em, h4 em {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    color: #69AB80;
    font-stretch: 100%;
    letter-spacing: -0.015em;
}

p { color: #4A4338; line-height: 1.65; }

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8A7F6E;
}

.section-eyebrow {
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: #69AB80;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 400;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

section { padding: clamp(3rem, 5.5vw, 5.5rem) 0; }

.section-cream { background: #F4EFE0; }
.section-light { background: #FDFBF5; }

/* ========== HEADER (more transparent + strong blur) ========== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 245, 0.55);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(235, 227, 208, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(253, 251, 245, 0.75);
    border-bottom-color: rgba(235, 227, 208, 0.7);
    box-shadow: 0 4px 24px rgba(26, 23, 20, 0.04);
}

/* Fallback for browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
    .site-header { background: rgba(253, 251, 245, 0.95); }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
    max-width: 1240px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.brand img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links li {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.nav-links a,
.nav-links .has-sub > span {
    font-size: 0.95rem;
    color: #1A1714;
    font-weight: 400;
    line-height: 1;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    height: 1rem;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links .has-sub:hover > span { color: #69AB80; }

.nav-links a.is-active { color: #69AB80; }

.nav-links .has-sub { position: relative; }

.nav-links .has-sub > span::after {
    content: "↓";
    margin-left: 0.4rem;
    font-size: 0.78rem;
    opacity: 0.5;
}

.subnav {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: -1rem;
    background: #FDFBF5;
    border: 1px solid #EBE3D0;
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 14px 40px rgba(26, 23, 20, 0.06);
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.subnav a {
    display: block;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    color: #4A4338;
    transition: background 0.15s ease, color 0.15s ease;
    height: auto;
}

.subnav a:hover { background: #F4EFE0; color: #1A1714; }

.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    background: #1A1714;
    color: #FFFFFF !important;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    height: auto !important;
    transition: background 0.2s ease;
}

.nav-cta:hover { background: #69AB80 !important; color: #FFFFFF !important; }

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #EBE3D0;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    color: #1A1714;
    /* 44px min height for iOS touch target */
    min-height: 44px;
    min-width: 44px;
}

@media (max-width: 980px) {
    .nav-links { display: none; }
    .menu-toggle { display: inline-block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FDFBF5;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem);
        border-bottom: 1px solid #EBE3D0;
        box-shadow: 0 12px 32px rgba(26, 23, 20, 0.08);
        gap: 1.1rem;
        align-items: flex-start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open .has-sub { display: block; width: 100%; }
    .nav-links.open .subnav {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        min-width: 0;
    }
    .nav-links.open .nav-cta { margin-top: 0.5rem; }
    .brand img { height: 30px; }
    .nav { padding: 0.85rem clamp(1.25rem, 3vw, 2.5rem); }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.95rem 1.65rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn-primary { background: #1A1714; color: #FFFFFF; }
.btn-primary:hover { background: #69AB80; color: #FFFFFF; }

/* Wider hero start button */
.btn-primary.btn-wide {
    padding: 1.05rem 2.75rem;
    font-size: 1rem;
    min-width: 180px;
}

.btn-ghost {
    background: transparent;
    color: #1A1714;
    border: 1px solid #1A1714;
}
.btn-ghost:hover { background: #1A1714; color: #FFFFFF; }

.btn-text {
    background: none;
    padding: 0.5rem 0;
    color: #1A1714;
    border-bottom: 1px solid #1A1714;
    border-radius: 0;
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
}
.btn-text:hover { color: #69AB80; border-color: #69AB80; }

.btn-text.btn-text-link {
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 1px solid #1A1714;
}

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

.hero {
    padding: clamp(3rem, 5.5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    position: relative;
}

.hero-content { width: 100%; }

.review-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #F4EFE0;
    border: 1px solid #EBE3D0;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1.75rem;
    font-size: 0.82rem;
    color: #4A4338;
    line-height: 1;
    flex-wrap: wrap;
}

.review-pill .stars {
    color: #B8862C;
    letter-spacing: -0.04em;
    font-size: 0.9rem;
    line-height: 1;
}

.review-pill .review-num { font-weight: 600; color: #1A1714; }

.review-pill .review-divider {
    width: 1px;
    height: 12px;
    background: #EBE3D0;
    margin: 0 0.15rem;
}

.hero-title {
    font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    font-size: clamp(2.75rem, 7.5vw, 6rem);
    font-weight: 700;
    font-stretch: 75%;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.hero-title .line { display: block; }

.hero-title em {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    color: #69AB80;
    font-stretch: 100%;
    letter-spacing: -0.015em;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: #4A4338;
    max-width: 54ch;
    line-height: 1.55;
    margin-bottom: 2.25rem;
}

.hero-sub br { display: inline; }

@media (max-width: 640px) {
    .hero-sub br { display: none; }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    align-items: center;
}

/* ========== COMPACT NEWSLETTER (muted black, larger inputs, more space) ========== */

/* Wrapper for extra space around it */
.newsletter-wrap {
    padding-top: clamp(1rem, 3vw, 2.25rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.newsletter-compact {
    background: linear-gradient(135deg, #2A2724 0%, #1F1D1B 100%);
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3.25rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(1.75rem, 3.5vw, 3rem);
    align-items: center;
    color: #FDFBF5;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(253, 251, 245, 0.06);
    box-shadow: 0 24px 60px rgba(26, 23, 20, 0.18);
}

.newsletter-compact::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(105, 171, 128, 0.14), transparent 70%);
    pointer-events: none;
}

.newsletter-compact::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 162, 58, 0.08), transparent 70%);
    pointer-events: none;
}

.nc-info { position: relative; z-index: 2; }

.nc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(105, 171, 128, 0.14);
    border: 1px solid rgba(105, 171, 128, 0.32);
    color: #D4E6DA;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.nc-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #69AB80;
    box-shadow: 0 0 0 3px rgba(105, 171, 128, 0.3);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(105, 171, 128, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(105, 171, 128, 0.05); }
}

.nc-title {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    font-stretch: 75%;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FDFBF5;
    margin-bottom: 0.7rem;
}

.nc-title em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #69AB80;
    font-weight: 400;
    font-stretch: 100%;
}

.nc-sub {
    font-size: 1rem;
    color: rgba(253, 251, 245, 0.72);
    margin-bottom: 1.1rem;
    line-height: 1.5;
    max-width: 50ch;
}

.nc-meta {
    font-size: 1rem;
    color: rgba(253, 251, 245, 0.88);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.nc-meta::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #69AB80;
}

.nc-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 360px;
    position: relative;
    z-index: 2;
}

.nc-form-row {
    display: flex;
    gap: 0.5rem;
    background: rgba(253, 251, 245, 0.06);
    padding: 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(253, 251, 245, 0.16);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nc-form-row:focus-within {
    border-color: rgba(105, 171, 128, 0.6);
    box-shadow: 0 0 0 4px rgba(105, 171, 128, 0.12);
}

.nc-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FDFBF5;
    padding: 0.85rem 1.25rem;
    font-family: 'Inter', sans-serif;
    /* 16px prevents iOS Safari auto-zoom on focus */
    font-size: 16px;
    min-width: 0;
}

.nc-form input::placeholder { color: rgba(253, 251, 245, 0.45); }

.nc-form button {
    background: #69AB80;
    color: #FFFFFF;
    border: none;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.nc-form button:hover {
    background: #4F8B65;
    transform: scale(1.02);
}

@media (max-width: 880px) {
    .newsletter-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .nc-form { min-width: 0; width: 100%; }
}

/* ========== SECTION HEADERS ========== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-header h2 { flex: 1; min-width: 260px; }

.section-header .all-link {
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    border-bottom: 1px solid #1A1714;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.section-header .all-link:hover { color: #69AB80; border-color: #69AB80; }

/* ========== SHORTCUT CARDS (3-up now, larger titles) ========== */

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.shortcut-card {
    background: #FDFBF5;
    border: 1px solid #EBE3D0;
    border-radius: 12px;
    padding: 1.85rem 1.65rem 1.85rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    color: #1A1714;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.shortcut-card:hover {
    border-color: #1A1714;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 23, 20, 0.06);
}

.shortcut-card .sc-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8A7F6E;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.shortcut-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    font-stretch: 75%;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.shortcut-card h3 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #69AB80;
    font-weight: 400;
    font-stretch: 100%;
}

.shortcut-card p {
    font-size: 0.95rem;
    color: #4A4338;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.shortcut-card .sc-cta {
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    border-bottom: 1px solid #1A1714;
    padding-bottom: 1px;
    align-self: flex-start;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.shortcut-card:hover .sc-cta { color: #69AB80; border-color: #69AB80; }

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

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

/* ========== EVENTS LIST ========== */

.events-list { border-top: 1px solid #EBE3D0; }

.event-row {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 1.75rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #EBE3D0;
    color: inherit;
}

.event-date {
    text-align: center;
    border-right: 1px solid #EBE3D0;
    padding-right: 1.25rem;
}

.event-date .day {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 700;
    font-stretch: 75%;
    letter-spacing: -0.03em;
}

.event-date .mo {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8A7F6E;
    margin-top: 0.5rem;
}

.event-date .dow {
    display: block;
    font-size: 0.7rem;
    color: #8A7F6E;
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
}

.event-info h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    margin-bottom: 0.4rem;
    font-weight: 600;
    line-height: 1.2;
    font-stretch: 75%;
    letter-spacing: -0.02em;
}

.event-info .meta {
    font-size: 0.88rem;
    color: #8A7F6E;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.event-info .meta .dot { color: #EBE3D0; margin: 0 0.2rem; }
.event-info .cat { color: #4A4338; font-weight: 500; }
.event-info .price { color: #1A1714; font-weight: 500; }
.event-info .price.free { color: #4F8B65; }

.event-note {
    font-size: 0.85rem;
    color: #8A7F6E;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.event-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4F8B65;
    white-space: nowrap;
    border-bottom: 1px solid rgba(79, 139, 101, 0.35);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
    justify-self: end;
}
.event-more:hover { color: #1A1714; border-color: #1A1714; }

@media (max-width: 720px) {
    .event-row { grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.25rem 0; }
    .event-date { padding-right: 0.85rem; }
    .event-date .day { font-size: 1.75rem; }
    .event-date .mo { font-size: 0.65rem; letter-spacing: 0.14em; }
    .event-info h3 { font-size: 1.1rem; }
    .event-info .meta { font-size: 0.8rem; gap: 0.35rem; }
    .event-more { grid-column: 2; justify-self: start; margin-top: 0.5rem; }
}

/* ========== FEATURE BLOCK ========== */

.feature-block {
    background: #1A1714;
    color: #FDFBF5;
    border-radius: 8px;
    padding: clamp(2rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    overflow: hidden;
    position: relative;
}

.feature-block .feature-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #69AB80;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-block h3 {
    color: #FDFBF5;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    font-stretch: 75%;
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.feature-block h3 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #69AB80;
    font-weight: 400;
    font-stretch: 100%;
    letter-spacing: -0.015em;
}

.feature-block p {
    color: rgba(253, 251, 245, 0.78);
    margin-bottom: 1.75rem;
    max-width: 50ch;
    font-size: 1.05rem;
}

.feature-block .feature-cta {
    color: #FDFBF5;
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    border-bottom: 1px solid #FDFBF5;
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.feature-block .feature-cta:hover { color: #69AB80; border-color: #69AB80; }

.feature-block .feature-img {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ECE4CE;
}

.feature-block .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 800px) {
    .feature-block { grid-template-columns: 1fr; padding-top: 2.5rem; }
}

/* Light variant — same layout, cream background + dark text */
.feature-block.feature-block-light {
    background: #FDFBF5;
    color: #1A1714;
    border: 1px solid #EBE3D0;
}

.feature-block.feature-block-light .feature-tag {
    color: #4F8B65;
}

.feature-block.feature-block-light h3 {
    color: #1A1714;
}

.feature-block.feature-block-light h3 em {
    color: #69AB80;
}

.feature-block.feature-block-light p {
    color: #4A4338;
}

.feature-block.feature-block-light .feature-cta {
    color: #1A1714;
    border-bottom-color: #1A1714;
}

.feature-block.feature-block-light .feature-cta:hover {
    color: #69AB80;
    border-bottom-color: #69AB80;
}

/* ========== PARTNERS BAND ========== */

.partners {
    border-top: 1px solid #EBE3D0;
    padding: 3rem 0;
    background: #FDFBF5;
}

.partners-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.partners-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8A7F6E;
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.partners-logos img {
    height: 36px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.partners-logos img:hover { opacity: 1; filter: grayscale(0%); }

@media (max-width: 600px) {
    .partners-logos { gap: 2rem; }
    .partners-logos img { height: 28px; }
}

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

.site-footer {
    background: #F4EFE0;
    padding: 4rem 0 2rem;
    border-top: 1px solid #EBE3D0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #EBE3D0;
}

.footer-brand img { height: 36px; margin-bottom: 1rem; }

.footer-brand p {
    margin: 0 0 1.5rem;
    color: #4A4338;
    font-size: 0.95rem;
    max-width: 36ch;
}

.footer-brand-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-brand-actions a {
    border: 1px solid #1A1714;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-brand-actions a:hover { background: #1A1714; color: #FFFFFF; }

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8A7F6E;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
    font-size: 0.95rem;
    color: #4A4338;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #8A7F6E;
}

.footer-bottom .socials { display: flex; gap: 1.25rem; }

@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

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

/* ========== STATS BLOCK ========== */

.stat-block {
    text-align: center;
    padding: 3.5rem 0;
    border-top: 1px solid #EBE3D0;
    border-bottom: 1px solid #EBE3D0;
}

.stat-block .stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    font-stretch: 75%;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-block .stat-num em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #69AB80;
    font-weight: 400;
    font-stretch: 100%;
}

.stat-block .stat-label {
    font-size: 1rem;
    color: #8A7F6E;
    margin-top: 0.75rem;
    letter-spacing: 0.04em;
}

/* ========== BLOG / BLURB GRID ========== */

.blurb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blurb {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blurb-img {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #ECE4CE;
}

.blurb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blurb:hover .blurb-img img { transform: scale(1.04); }

.blurb-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8A7F6E;
    margin-bottom: 0.5rem;
}

.blurb h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 600;
    font-stretch: 75%;
    line-height: 1.15;
    transition: color 0.2s ease;
    letter-spacing: -0.02em;
}

.blurb:hover h3 { color: #69AB80; }

@media (max-width: 880px) {
    .blurb-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

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

/* ========== TWO COLUMN LAYOUT ========== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.two-col img, .two-col .col-img {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
}

.two-col h2 { margin-bottom: 1.5rem; }
.two-col p { margin-bottom: 1.5rem; font-size: 1.05rem; max-width: 50ch; }

@media (max-width: 800px) {
    .two-col { grid-template-columns: 1fr; }
    .two-col.reverse-mobile { display: flex; flex-direction: column-reverse; }
}

/* ========== FEATURE LIST ========== */

.feature-list { list-style: none; margin-top: 1.5rem; }

.feature-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #EBE3D0;
    font-size: 1rem;
    color: #4A4338;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: #1A1714; font-weight: 600; }

.feature-list .bullet {
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
    margin-top: 0.05rem;
}

/* ========== STEPS ========== */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step {
    border-top: 2px solid #1A1714;
    padding-top: 1.5rem;
    counter-increment: step;
}

.step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-style: italic;
    color: #69AB80;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-stretch: 75%;
    letter-spacing: -0.02em;
}

.step p { font-size: 0.98rem; }

@media (max-width: 720px) {
    .steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========== PRICE CARD ========== */

.price-card {
    background: #FDFBF5;
    border: 1px solid #EBE3D0;
    border-radius: 8px;
    padding: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 14px 40px rgba(26, 23, 20, 0.04);
}

.price-card-info h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    margin-bottom: 1.5rem;
}

.price-card-info .price-list { list-style: none; margin: 1.25rem 0; }

.price-card-info .price-list li {
    padding: 0.5rem 0;
    color: #4A4338;
    font-size: 1rem;
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.price-card-info .price-list .label {
    font-weight: 500;
    color: #1A1714;
    min-width: 110px;
}

.price-display {
    text-align: center;
    padding: 2rem;
    background: #F4EFE0;
    border-radius: 6px;
}

.price-display .new-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    font-stretch: 75%;
    line-height: 1;
    color: #69AB80;
    letter-spacing: -0.03em;
}

.price-display .price-tag {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8A7F6E;
}

@media (max-width: 720px) {
    .price-card { grid-template-columns: 1fr; }
}

/* ========== TRIP / GALLERY GRID ========== */

.trip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trip-card {
    border-radius: 6px;
    overflow: hidden;
    background: #FDFBF5;
    border: 1px solid #EBE3D0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 23, 20, 0.08);
}

.trip-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ECE4CE;
}

.trip-card-img img { width: 100%; height: 100%; object-fit: cover; }
.trip-card-body { padding: 1.25rem 1.25rem 1.5rem; }

.trip-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    font-stretch: 75%;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.trip-card p { font-size: 0.9rem; color: #8A7F6E; line-height: 1.4; }

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

/* ========== IMAGE COLLAGE ========== */

.collage {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 540px;
    margin-top: 2.5rem;
}

.collage > div {
    border-radius: 6px;
    overflow: hidden;
    background: #ECE4CE;
}

.collage > div:nth-child(1) { grid-row: 1 / 3; }

.collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage > div:hover img { transform: scale(1.05); }

@media (max-width: 720px) {
    .collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
    .collage > div:nth-child(1) { grid-row: auto; aspect-ratio: 4/3; }
    .collage > div { aspect-ratio: 1; }
}

/* ========== BLOG POST ========== */

.post-hero {
    padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem;
    border-bottom: 1px solid #EBE3D0;
}

.post-hero .eyebrow { margin-bottom: 1rem; }

.post-hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    max-width: 22ch;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.post-hero .post-meta {
    font-size: 0.9rem;
    color: #8A7F6E;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.post-hero .post-meta strong { color: #1A1714; font-weight: 600; }

.post-hero-img {
    margin: 2.5rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 1240px;
    background: #ECE4CE;
}

.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.post-body {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2A2522;
}

.post-body p { margin-bottom: 1.4rem; color: #2A2522; }

.post-body h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin: 2.5rem 0 1.25rem;
    font-weight: 600;
}

.post-body h3 {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    margin: 2rem 0 0.85rem;
    font-weight: 600;
}

.post-body h2 em, .post-body h3 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #69AB80;
    font-stretch: 100%;
    font-weight: 400;
}

.post-body strong { color: #1A1714; font-weight: 700; }

.post-body em.highlight {
    font-style: italic;
    color: #4A4338;
    font-family: 'Fraunces', serif;
}

.post-body ul, .post-body ol {
    margin: 0 0 1.4rem 1.4rem;
    color: #2A2522;
}

.post-body li { margin-bottom: 0.55rem; }

.post-body a {
    color: #4F8B65;
    border-bottom: 1px solid rgba(79, 139, 101, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.post-body a:hover { color: #69AB80; border-color: #69AB80; }

.post-body blockquote {
    border-left: 3px solid #69AB80;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.75rem 0;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #1A1714;
}

.post-body img {
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body .item {
    background: #FDFBF5;
    border: 1px solid #EBE3D0;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.post-body .item-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-stretch: 75%;
    font-size: 1.2rem;
    color: #1A1714;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.post-body .item-desc { font-size: 0.97rem; color: #4A4338; margin-bottom: 0.45rem; }

.post-body .item-order {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #4F8B65;
    font-size: 0.95rem;
}

.post-nav {
    border-top: 1px solid #EBE3D0;
    padding: 2.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.post-nav a {
    display: block;
    padding: 1.25rem 1.5rem;
    border: 1px solid #EBE3D0;
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.post-nav a:hover { border-color: #1A1714; background: #FDFBF5; }

.post-nav .nav-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8A7F6E;
    margin-bottom: 0.4rem;
}

.post-nav .nav-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-stretch: 75%;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #1A1714;
}

.post-nav .next { text-align: right; }

@media (max-width: 640px) {
    .post-nav { grid-template-columns: 1fr; }
    .post-nav .next { text-align: left; }
}

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

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

.fade-up {
    animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.14s; }
.fade-up-3 { animation-delay: 0.23s; }
.fade-up-4 { animation-delay: 0.32s; }

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.22s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.34s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(n+8) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .fade-up, .reveal, .reveal-stagger > * {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

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

.contact-box {
    background: #FDFBF5;
    border: 1px solid #EBE3D0;
    border-radius: 10px;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    box-shadow: 0 14px 40px rgba(26, 23, 20, 0.04);
}

.contact-form .cf-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.contact-form label {
    font-size: 0.88rem;
    font-weight: 500;
    color: #4A4338;
    letter-spacing: 0.01em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: 1px solid #E1D9C5;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-family: 'Inter', sans-serif;
    /* 16px to prevent iOS Safari auto-zoom on focus */
    font-size: 16px;
    color: #1A1714;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #69AB80;
    box-shadow: 0 0 0 3px rgba(105, 171, 128, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
}

.contact-form .cf-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0.25rem 0 1.75rem;
}

.contact-form .cf-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #69AB80;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form .cf-check label {
    font-size: 0.92rem;
    color: #2A2522;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.45;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

.contact-form .cf-note {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: #8A7F6E;
    text-align: center;
}

.contact-form .cf-note a {
    color: #4F8B65;
    border-bottom: 1px solid rgba(79, 139, 101, 0.4);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-form .cf-note a:hover {
    color: #1A1714;
    border-color: #1A1714;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid #EBE3D0;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #1A1714;
    background: transparent;
    transition: background 0.18s ease, transform 0.18s ease;
}

.contact-socials a:hover {
    background: #F4EFE0;
    transform: translateY(-1px);
}

.contact-socials svg {
    display: block;
}

/* Confirmation state */
.contact-form.is-sent .cf-row,
.contact-form.is-sent .cf-check,
.contact-form.is-sent .cf-note,
.contact-form.is-sent button {
    display: none;
}

.contact-form.is-sent::after {
    content: "Thanks — message sent. We'll be in touch soon.";
    display: block;
    padding: 2rem 1rem;
    text-align: center;
    color: #2A2522;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
}

/* =========================================================
   MOBILE / iOS POLISH
   ========================================================= */

/* Disable sticky-hover on touch devices: hover effects feel "stuck" on iOS
   after a tap. Reset hover transforms/colors for touch-primary devices. */
@media (hover: none) {
    .shortcut-card:hover { transform: none; }
    .trip-card:hover { transform: none; }
    .blurb:hover .blurb-img img { transform: none; }
    .nc-form button:hover { transform: none; }
    .contact-socials a:hover { transform: none; }
}

/* Safari mobile: ensure smooth touch scrolling */
body { -webkit-overflow-scrolling: touch; }

/* iOS Safari address-bar safe-area bottom padding for footer
   (prevents footer being cut by home-indicator on iPhone) */
.site-footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }

/* Mobile: tighten hero actions so stacked buttons feel balanced */
@media (max-width: 480px) {
    .hero-actions { gap: 0.85rem; }
    .hero-actions .btn-primary.btn-wide,
    .hero-actions .btn-ghost { width: 100%; }
}

/* Mobile newsletter form: stack input + button vertically for big tap targets */
@media (max-width: 560px) {
    .nc-form-row {
        flex-direction: column;
        border-radius: 14px;
        padding: 0.5rem;
        gap: 0.4rem;
    }
    .nc-form input {
        text-align: center;
        padding: 0.95rem 1rem;
    }
    .nc-form button {
        width: 100%;
        min-height: 44px;
    }
}

/* Mobile contact form: ensure submit button is full-width with 44px target */
.contact-form .btn-primary { min-height: 44px; }

/* All button-like form controls: 44px min touch target */
button[type="submit"] { min-height: 44px; }


/* =========================================================
   Text-based wordmark (replaces old logo.png)
   ========================================================= */
.brand-text {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
    color: #1A1714;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;
}
.brand-text .brand-name { font-weight: 800; }
.brand-text .brand-dot {
    color: #8BB89A;
    font-weight: 800;
    margin: 0 0.02em;
}
.brand-text .brand-tld {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.15em;
    color: #1A1714;
    margin-left: 0.02em;
}
.footer-brand-text {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    display: inline-flex;
}
a.brand-text:hover,
a.brand-text:focus { color: #1A1714; }
@media (max-width: 720px) {
    .brand-text { font-size: 1.3rem; }
    .footer-brand-text { font-size: 1.45rem; }
}
