/* Shell Lake Rentals — public + portal shared base */
:root {
    --bg: #fbfaf6;
    --bg-card: #ffffff;
    --bg-warm: #f4f1e8;
    --text: #1a2733;
    --text-muted: #6b7a87;
    --primary: #1f4d5c;
    --primary-dk: #163741;
    --primary-lt: #c8dde2;
    --accent: #c87f3d;
    --accent-dk: #a86829;
    --accent-lt: #fff5e9;
    --line: #e6e3da;
    --line-dk: #d3cebd;
    --shadow-sm: 0 1px 2px rgba(20,40,60,.04);
    --shadow: 0 1px 3px rgba(20,40,60,.06), 0 4px 12px rgba(20,40,60,.04);
    --shadow-lg: 0 4px 8px rgba(20,40,60,.08), 0 16px 40px rgba(20,40,60,.1);
    --radius: 8px;
    --radius-lg: 14px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
p { margin: 0 0 1em; }
.muted { color: var(--text-muted); }
.small { font-size: .88rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* Inline icons */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* HEADER */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; color: var(--text); font-weight: 600; }
.brand-mark {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--primary); color: #fff;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700;
    letter-spacing: -.5px;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.15);
}
.brand-text { font-family: 'Fraunces', serif; font-size: 1.18rem; }
.site-nav { display: flex; gap: 1.6rem; align-items: center; }
.site-nav a { color: var(--text-muted); font-weight: 500; font-size: .95rem; transition: color .15s; }
.site-nav a:hover { color: var(--primary); }
.nav-cta {
    background: var(--primary); color: #fff !important; padding: .6rem 1.1rem;
    border-radius: 6px; font-size: .9rem !important;
    transition: background .15s;
}
.nav-cta:hover { background: var(--primary-dk); color: #fff !important; }
.nav-cta-admin { background: var(--accent); }
.nav-cta-admin:hover { background: var(--accent-dk); }
.nav-user { color: var(--text-muted); font-size: .9rem; }

/* HERO — photographic */
.hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: #1a2733;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://picsum.photos/id/1015/2000/1200');
    background-size: cover;
    background-position: center 60%;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(15, 30, 40, .15) 0%, rgba(15, 30, 40, .55) 60%, rgba(15, 30, 40, .85) 100%),
        linear-gradient(to right, rgba(31, 77, 92, .35), rgba(31, 77, 92, 0) 50%);
}
.hero-inner {
    position: relative; z-index: 1;
    padding: 6rem 0 4.5rem;
    width: 100%;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
    color: #e0eef2;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: .4rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    margin: 1.25rem 0 1.25rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    max-width: 880px;
    letter-spacing: -.015em;
}
.hero-sub { font-size: 1.18rem; max-width: 580px; color: #e0eef2; opacity: .95; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.hero-actions { display: flex; gap: .8rem; margin-top: 2.25rem; flex-wrap: wrap; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .85rem 1.5rem;
    border: 1px solid transparent; border-radius: 6px;
    font-weight: 500; font-size: .95rem; cursor: pointer;
    transition: all .15s; text-align: center; text-decoration: none;
    font-family: inherit; line-height: 1.2;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dk); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(31,77,92,.25); }
.btn-secondary { background: var(--accent); color: #fff; }
.btn-secondary:hover { background: var(--accent-dk); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-success { background: #2e7d4f; color: #fff; }
.btn-success:hover { background: #1f5d39; color: #fff; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem .9rem; font-size: .85rem; }
.btn-block { display: flex; width: 100%; }

/* SECTION */
.section { padding: 4.5rem 0; }
.section-narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: .25rem; }
.section-head .muted { font-size: .95rem; }

/* FILTER TABS */
.filter-tabs { display: inline-flex; gap: .25rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; padding: .3rem; box-shadow: var(--shadow-sm); }
.filter-tabs a { padding: .5rem 1.1rem; border-radius: 999px; color: var(--text-muted); font-size: .88rem; font-weight: 500; transition: all .15s; }
.filter-tabs a:hover { color: var(--primary); }
.filter-tabs a.is-active { background: var(--primary); color: #fff; }

/* LISTINGS GRID — taller, warmer cards */
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.75rem; }
.listing-card {
    display: block; background: var(--bg-card);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
    color: inherit;
    position: relative;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.listing-card:hover .listing-img { transform: scale(1.03); }
.listing-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background-color: #d8d4c5;
}
.listing-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .4s ease;
}
.badge {
    position: absolute; padding: .35rem .75rem;
    background: rgba(255,255,255,.95); color: var(--text);
    border-radius: 999px; font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.badge-type { top: 1rem; left: 1rem; background: rgba(15, 30, 40, .75); color: #fff; }
.badge-sale { top: 1rem; right: 1rem; background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(168,104,41,.4); }
.listing-card.is-for-sale { box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.listing-card.is-for-sale:hover { box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg); }

.listing-body { padding: 1.4rem 1.5rem 1.5rem; }
.listing-body h3 {
    margin: 0 0 .4rem;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    letter-spacing: -.01em;
}
.listing-meta-row { color: var(--text-muted); font-size: .85rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .35rem; }
.listing-desc { color: var(--text-muted); font-size: .92rem; margin-bottom: 1.2rem; min-height: 2.6em; line-height: 1.5; }
.listing-rate-line {
    display: flex; align-items: baseline; gap: .35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.listing-rate-line .from { font-size: .82rem; color: var(--text-muted); }
.listing-rate-line .price {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--text);
    letter-spacing: -.01em;
}
.listing-rate-line .per { font-size: .88rem; color: var(--text-muted); }
.listing-rate-line .also { margin-left: auto; font-size: .8rem; color: var(--accent-dk); font-weight: 500; }

/* LISTING DETAIL */
.back-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--text-muted); margin-bottom: 1.5rem; font-size: .9rem; transition: color .15s; }
.back-link:hover { color: var(--primary); }
.listing-detail-wrap {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; margin-bottom: 3rem;
    align-items: start;
}
@media (max-width: 900px) { .listing-detail-wrap { grid-template-columns: 1fr; gap: 1.5rem; } }

.listing-gallery { margin-bottom: 2.5rem; }
.listing-hero {
    aspect-ratio: 4/3;
    background-size: cover; background-position: center;
    background-color: #d8d4c5;
    border-radius: var(--radius-lg); position: relative;
    overflow: hidden;
}
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; margin-top: .65rem; }
.thumb { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: 6px; background-color: #d8d4c5; cursor: pointer; transition: transform .15s; }
.thumb:hover { transform: scale(1.04); }

.listing-content-meta { color: var(--text-muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.listing-content h1 { font-size: 2.4rem; margin: .35rem 0 1.25rem; letter-spacing: -.015em; }
.listing-desc-lg { font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; color: #2a3a48; }
.details-card {
    background: var(--bg-card); padding: 1.75rem; border-radius: var(--radius);
    border: 1px solid var(--line); margin-bottom: 1.5rem;
}
.details-card h3 { margin-top: 0; font-family: 'Inter', sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 600; }
.details-card p { margin: 0; line-height: 1.65; }

/* RESERVE SIDEBAR — sticky */
.reserve-sidebar { position: sticky; top: 92px; }
.reserve-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.75rem;
    margin-bottom: 1.25rem;
}
.reserve-rate-head { display: flex; align-items: baseline; gap: .35rem; margin-bottom: .25rem; }
.reserve-rate-head .price {
    font-family: 'Fraunces', serif;
    font-size: 2rem; font-weight: 600; color: var(--text);
    letter-spacing: -.015em;
}
.reserve-rate-head .per { color: var(--text-muted); font-size: 1rem; }
.reserve-rate-alt { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.reserve-rate-alt strong { color: var(--text); font-weight: 600; }

.reserve-cta {
    width: 100%;
    margin-top: 1rem;
}
.reserve-summary-empty {
    text-align: center; padding: 1.5rem 0;
    color: var(--text-muted); font-size: .92rem;
}
.reserve-summary-empty .icon { display: block; margin: 0 auto .5rem; color: var(--primary); opacity: .6; }

.reserve-summary-active .summary-line {
    display: flex; justify-content: space-between;
    padding: .55rem 0;
    font-size: .92rem;
}
.reserve-summary-active .summary-line span:first-child { color: var(--text-muted); }
.reserve-summary-active .summary-total {
    margin-top: .5rem; padding-top: .9rem;
    border-top: 1px solid var(--line);
    font-size: 1.05rem; font-weight: 600;
}
.reserve-summary-active .summary-total span:first-child { color: var(--text); }
.reserve-note {
    color: var(--text-muted); font-size: .82rem; margin-top: .75rem; text-align: center;
}

.rate-detail-card {
    background: var(--bg-warm);
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius);
    font-size: .92rem;
}
.rate-detail-card h4 { margin: 0 0 .75rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 600; }
.rate-detail-card ul { list-style: none; padding: 0; margin: 0; }
.rate-detail-card li { display: flex; justify-content: space-between; padding: .35rem 0; }
.rate-detail-card li span { color: var(--text-muted); display: inline-flex; align-items: center; gap: .4rem; }
.rate-detail-card li strong { color: var(--text); }

/* For sale callout — bold */
.for-sale-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
    color: #fff;
    padding: 1.75rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    box-shadow: 0 6px 20px rgba(168,104,41,.25);
}
.for-sale-card h3 { color: #fff; margin-top: 0; font-family: 'Fraunces', serif; }
.for-sale-card p { color: rgba(255,255,255,.92); margin-bottom: 1rem; }
.for-sale-card .btn { background: #fff; color: var(--accent-dk); border-color: #fff; }
.for-sale-card .btn:hover { background: rgba(255,255,255,.92); color: var(--accent-dk); }

/* CALENDAR — bright, readable */
.booking-section {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    scroll-margin-top: 90px;
}
.booking-section h2 { font-size: 1.6rem; margin-bottom: .35rem; }
.booking-section .booking-section-sub { color: var(--text-muted); margin-bottom: 1.5rem; font-size: .95rem; }

.cal-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.cal-nav {
    background: transparent;
    border: 1px solid var(--line);
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 8px; cursor: pointer;
    color: var(--text);
    transition: all .15s;
}
.cal-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cal-current { display: none; }
.cal-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 700px) { .cal-grid-2 { grid-template-columns: 1fr; } }
.cal-month-title {
    font-family: 'Fraunces', serif;
    font-weight: 600; text-align: center; margin-bottom: .85rem;
    color: var(--text); font-size: 1.05rem;
}
.cal-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    text-align: center; font-size: .72rem; color: var(--text-muted);
    margin-bottom: .35rem; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase;
}
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
    aspect-ratio: 1; display: grid; place-items: center;
    font-size: .9rem; font-weight: 500;
    border-radius: 6px; cursor: pointer;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
    transition: all .12s;
    position: relative;
}
.cal-day-blank { background: transparent; border: none; cursor: default; }
.cal-day.is-available:hover { background: var(--primary-lt); border-color: var(--primary); color: var(--primary-dk); transform: translateY(-1px); }
.cal-day.is-booked {
    background: repeating-linear-gradient(45deg, #f0ede4, #f0ede4 4px, #e6e3da 4px, #e6e3da 6px);
    color: #b3aea0; cursor: not-allowed; border-color: var(--line); font-weight: 400;
}
.cal-day.is-past {
    background: transparent; color: #cfcabc; cursor: not-allowed; border-color: transparent;
}
.cal-day.is-sel-start, .cal-day.is-sel-end {
    background: var(--primary); color: #fff;
    font-weight: 700; border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(31,77,92,.35);
}
.cal-day.is-in-range {
    background: var(--primary-lt);
    border-color: var(--primary-lt);
    color: var(--primary-dk);
    border-radius: 0;
}
.cal-day.is-sel-start { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.cal-day.is-sel-end { border-top-left-radius: 0; border-bottom-left-radius: 0; }

.cal-legend {
    margin-top: 1.5rem; font-size: .82rem; color: var(--text-muted);
    display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
    padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.cal-legend-item { display: inline-flex; align-items: center; gap: .45rem; }
.dot { display: inline-block; width: 14px; height: 14px; border-radius: 4px; }
.dot-avail { background: #fff; border: 1px solid var(--line); }
.dot-booked { background: repeating-linear-gradient(45deg, #f0ede4, #f0ede4 3px, #e6e3da 3px, #e6e3da 5px); }
.dot-sel { background: var(--primary); }

/* BOOKING CONFIRM PAGE */
.booking-confirm { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 800px) { .booking-confirm { grid-template-columns: 1fr; } }
.confirm-summary {
    background: var(--bg-card); padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    height: fit-content;
    position: sticky; top: 92px;
    box-shadow: var(--shadow-sm);
}
.confirm-summary h3 { font-family: 'Fraunces', serif; font-size: 1.45rem; margin-top: 0; letter-spacing: -.01em; }
.confirm-summary .rate-list { list-style: none; padding: 0; margin: 1rem 0 1.25rem; }
.confirm-summary .rate-list li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.confirm-summary .rate-list li:last-child { border-bottom: none; }
.confirm-summary .rate-list li.total { padding-top: .9rem; margin-top: .5rem; border-top: 2px solid var(--text); font-size: 1.1rem; font-weight: 600; border-bottom: none; }
.confirm-summary .rate-list li span:first-child { color: var(--text-muted); }

/* FORMS — better rhythm */
.form-card {
    background: var(--bg-card);
    padding: 2.25rem 2.25rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-top: 0; font-family: 'Fraunces', serif; font-size: 1.25rem; }
.form-row { margin-bottom: 1.4rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
label {
    display: block;
    font-weight: 500;
    font-size: .92rem;
    color: var(--text);
    margin-bottom: .15rem;
}
label input, label textarea, label select,
.form-row input, .form-row textarea, .form-row select {
    display: block; width: 100%; margin-top: .5rem;
    padding: .8rem .95rem;
    border: 1px solid var(--line-dk); border-radius: 7px;
    font-family: inherit; font-size: 1rem; background: #fff; color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}
label input:focus, label textarea:focus, label select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31,77,92,.12);
}
.check-row { display: flex; align-items: center; gap: .5rem; font-weight: 400; }
.check-row input { width: auto; margin: 0; }
.form-context { background: var(--bg-warm); padding: .85rem 1.1rem; border-radius: 6px; margin-bottom: 1.25rem; font-size: .92rem; }
.form-actions { display: flex; gap: .75rem; margin-top: 1.75rem; }

.card-element { padding: 1rem; border: 1px solid var(--line-dk); border-radius: 7px; background: #fff; }
.card-errors { color: #b03030; margin-top: .5rem; font-size: .9rem; }

/* CARD BRAND DISPLAY */
.card-brand {
    display: inline-flex; align-items: center; gap: .65rem;
    font-size: .95rem; color: var(--text);
    padding: .55rem .8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
}
.card-brand-mark {
    color: #fff; font-size: .68rem; font-weight: 700;
    letter-spacing: .04em;
    padding: .25rem .45rem; border-radius: 3px;
    min-width: 38px; text-align: center;
    font-family: 'Inter', sans-serif;
}
.card-brand-num { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-weight: 500; letter-spacing: .02em; }
.card-brand-exp { color: var(--text-muted); font-size: .85rem; margin-left: auto; padding-left: .5rem; }
.card-brand-no-card { color: var(--text-muted); font-size: .92rem; font-style: italic; }

.card-summary {
    background: var(--bg-warm);
    padding: 1rem 1.2rem; border-radius: 7px; margin-bottom: 1.5rem;
    font-size: .95rem;
}

/* ALERTS */
.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.25rem; font-size: .95rem; }
.alert-success { background: #e3f4ea; color: #1f5d39; border: 1px solid #b3dbc4; }
.alert-error { background: #fbe7e7; color: #8c2020; border: 1px solid #f0c2c2; }

/* FOOTER */
.site-footer {
    background: var(--primary-dk);
    color: #cfdde2;
    padding: 2.5rem 0;
    margin-top: 5rem;
    border-top: 4px solid var(--accent);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .92rem; }
.site-footer .muted { color: #92aab2; }
.site-footer a { color: #cfdde2; }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.5rem; }

/* EMPTY STATES — inviting, not apologetic */
.empty-state { text-align: center; padding: 3.5rem 1.5rem; background: var(--bg-card); border: 1px dashed var(--line-dk); border-radius: var(--radius); }
.empty-state .icon { color: var(--primary); opacity: .35; margin-bottom: .75rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1rem; }
.empty-state .empty-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }

/* ===========================================================================
   HOMEPAGE — TRUST STRIP, HOW IT WORKS, REVIEWS, ABOUT, FAQ, CTA BANNER
   =========================================================================== */

.section-eyebrow {
    display: inline-block;
    font-size: .8rem; letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-dk);
    font-weight: 600;
    margin-bottom: .65rem;
}
.section-head-center { text-align: center; margin-bottom: 3rem; display: block; }
.section-head-center h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin: 0 auto .65rem; max-width: 720px; }
.section-head-center .muted { max-width: 540px; margin: 0 auto; font-size: 1rem; }

/* TRUST STRIP — under hero */
.trust-strip {
    background: var(--bg-card);
    border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1.4rem 1.5rem;
    align-items: center;
}
@media (max-width: 800px) { .trust-strip-inner { grid-template-columns: 1fr; padding: 1rem 1.5rem; gap: .65rem; } }
.trust-item {
    display: flex; align-items: center; gap: .65rem;
    font-size: .92rem; color: var(--text-muted);
    justify-content: center;
}
.trust-item .icon { color: var(--primary); flex-shrink: 0; }
.trust-item strong { color: var(--text); font-weight: 600; }
.trust-stars {
    color: var(--accent);
    letter-spacing: .05em;
    font-size: 1.05rem;
    line-height: 1;
}

/* HOW IT WORKS */
.how-it-works {
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .15s, box-shadow .15s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
    position: absolute;
    top: 1.5rem; right: 1.75rem;
    font-family: 'Fraunces', serif;
    font-size: 2rem; font-weight: 600;
    color: var(--primary);
    opacity: .12;
    letter-spacing: -.02em;
    line-height: 1;
}
.step-icon {
    display: inline-grid; place-items: center;
    width: 52px; height: 52px;
    background: var(--primary-lt);
    color: var(--primary-dk);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.step-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    margin: 0 0 .5rem;
    letter-spacing: -.01em;
}
.step-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

/* REVIEWS */
.reviews-section { background: var(--bg); }
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .15s, box-shadow .15s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.review-card::before {
    content: '"';
    position: absolute;
    top: -1rem; left: 1.5rem;
    font-family: 'Fraunces', serif;
    font-size: 5rem; font-weight: 700;
    color: var(--accent);
    line-height: 1;
    opacity: .35;
}
.review-stars {
    color: var(--accent);
    font-size: 1.1rem; letter-spacing: .08em;
    margin-bottom: 1rem;
}
.review-stars .dim { color: var(--line-dk); }
.review-body {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 1.25rem;
    font-weight: 500;
    letter-spacing: -.005em;
    flex: 1;
    font-style: italic;
}
.review-meta { padding-top: 1rem; border-top: 1px solid var(--line); }
.review-name { font-weight: 600; font-size: .95rem; }
.review-sub { margin-top: .15rem; font-size: .82rem; }
.review-sub a { color: var(--text-muted); text-decoration: underline; text-decoration-color: var(--line-dk); text-underline-offset: 2px; }
.review-sub a:hover { color: var(--primary); text-decoration-color: var(--primary); }

/* ABOUT / MEET KEVIN */
.about-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
    border-top: 1px solid var(--line);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-image {
    aspect-ratio: 4/5;
    background-size: cover; background-position: center;
    background-color: #d8d4c5;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}
@media (max-width: 900px) { .about-image { aspect-ratio: 16/10; } }
.about-image-tag {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    background: rgba(15,30,40,.78);
    color: #fff;
    padding: .45rem .85rem;
    border-radius: 999px;
    font-size: .78rem; font-weight: 500;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: inline-flex; align-items: center; gap: .35rem;
}
.about-copy h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: .5rem 0 1.25rem;
    letter-spacing: -.015em;
}
.about-copy .lede {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text);
    font-family: 'Fraunces', serif;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: -.005em;
}
.about-copy p {
    color: #2a3a48;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.signature {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-dk);
    margin-top: 1.25rem !important;
}
.about-cta { margin-top: 1.5rem; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    transition: border-color .15s, box-shadow .15s;
}
.faq-card:hover { border-color: var(--primary-lt); box-shadow: var(--shadow-sm); }
.faq-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.12rem;
    margin: 0 0 .55rem;
    color: var(--text);
    letter-spacing: -.005em;
    line-height: 1.3;
}
.faq-card p {
    color: var(--text-muted);
    font-size: .94rem;
    line-height: 1.6;
    margin: 0;
}

/* CONTACT SECTION (homepage bottom) */
.contact-section {
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    scroll-margin-top: 80px;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: .5rem 0 1rem;
    letter-spacing: -.015em;
}
.contact-heading .lede {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.75rem;
    letter-spacing: -.005em;
}
.contact-meta { list-style: none; padding: 0; margin: 0; }
.contact-meta li {
    display: flex; align-items: center; gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .95rem;
}
.contact-meta li:last-child { border-bottom: none; }
.contact-meta .icon {
    color: var(--primary);
    background: var(--primary-lt);
    padding: .55rem;
    border-radius: 8px;
    width: 32px; height: 32px;
}
.contact-meta li span { color: var(--text); }

.contact-form-wrap .form-card { padding: 2.25rem; }
.contact-success {
    background: #e3f4ea !important;
    border-color: #b3dbc4 !important;
}
.contact-success h3 {
    color: #1f5d39;
    display: flex; align-items: center; gap: .5rem;
    margin-top: 0;
    font-family: 'Fraunces', serif;
}
.contact-success p { color: #2a4d3a; margin-bottom: 0; }
