/* ─── HOMEPAGE STYLES ─── */

/* Hero */
.hero {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: var(--navy-deep);
}
.hero-img {
    overflow: hidden;
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}
.hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; }
.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero-link {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--coral);
    padding-bottom: 2px;
    transition: opacity 0.2s;
    align-self: flex-start;
}
.hero-link:hover { opacity: 0.7; }

/* Big Assertion */
.assertion {
    padding: 100px 48px;
    border-bottom: 1px solid var(--rule);
}
.assertion-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
}
.assertion-number {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: clamp(64px, 8vw, 110px);
    color: var(--coral);
    line-height: 0.85;
    letter-spacing: -3px;
}
.assertion-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 16px;
}
.assertion-text p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 520px;
}

/* Editorial */
.editorial {
    padding: 100px 48px;
    border-bottom: 1px solid var(--rule);
}
.editorial-inner { max-width: 720px; margin: 0 auto; }
.editorial h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 32px;
}
.editorial p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Editorial Split (text + image side by side) */
.editorial-split {
    padding: 100px 48px;
    border-bottom: 1px solid var(--rule);
}
.editorial-split-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.editorial-split-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 28px;
}
.editorial-split-text p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.editorial-split-img img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* Three-Up Cards */
.three-up {
    padding: 100px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}
.three-up-header {
    max-width: 1180px;
    margin: 0 auto 64px;
}
.three-up-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
}
.three-up-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
}
.three-up-card {
    background: var(--white);
    padding: 56px 40px;
}
.three-up-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 24px;
}
.three-up-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.three-up-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* Product Ladder Preview (dark) */
.ladder-preview {
    background: var(--navy);
    padding: 120px 48px;
}
.ladder-preview-header {
    max-width: 1180px;
    margin: 0 auto 64px;
}
.ladder-preview .eyebrow { color: var(--coral); }
.ladder-preview-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.25;
}
.ladder-cards {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ladder-card {
    background: var(--white);
    border-radius: 6px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
}
.ladder-card .tier-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}
.ladder-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 4px;
}
.ladder-card .price {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 20px;
}
.ladder-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    flex: 1;
}
.ladder-card .btn-cta,
.ladder-card .btn-outline,
.ladder-card .btn-navy { font-size: 11px; padding: 12px 28px; }

/* Map Section */
.map-section {
    padding: 100px 48px;
    border-bottom: 1px solid var(--rule);
}
.map-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.map-section-text .eyebrow { margin-bottom: 20px; }
.map-section-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
}
.map-section-text p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
}
.map-section-img img {
    width: 100%;
    max-width: 420px;
    display: block;
}

/* Responsive */
/* Home About */
.home-about {
    padding: 120px 48px;
    border-bottom: 1px solid var(--rule);
}
.home-about-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.home-about-img img {
    width: 100%;
    border-radius: 6px;
}
.home-about-text .eyebrow { color: var(--coral); }
.home-about-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
}
.home-about-text p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .home-about-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-img { height: 400px; }
    .hero-content { padding: 60px 48px; }
    .assertion-inner { grid-template-columns: 1fr; gap: 24px; }
    .three-up-grid { grid-template-columns: 1fr; }
    .ladder-cards { grid-template-columns: repeat(2, 1fr); }
    .map-section-inner { grid-template-columns: 1fr; gap: 48px; }
    .editorial-split-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hero-img { height: 320px; }
    .hero-content { padding: 48px 24px; }
    .ladder-cards { grid-template-columns: 1fr; }
    .assertion, .editorial-split, .three-up,
    .ladder-preview, .map-section { padding-left: 24px; padding-right: 24px; }
    .photo-break-full img { height: 260px; }
    .map-section-inner { grid-template-columns: 1fr; gap: 36px; }
}
