/* ---------- Base ---------- */
:root {
    --color-bg: #faf7f2;
    --color-bg-cream: #f3ede3;
    --color-bg-light: #ffffff;
    --color-text: #1f1d1a;
    --color-text-muted: #5a554e;
    --color-accent: #8a6d3b;
    --color-border: #e5dfd4;
    --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --content-max: 1180px;
    --content-narrow: 760px;
    --spacing-section: clamp(64px, 9vw, 120px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 0.6em;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

p {
    margin: 0 0 1em;
}

.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Hero ---------- */
.hero {
    padding-top: clamp(48px, 8vw, 96px);
    padding-bottom: clamp(48px, 8vw, 96px);
    text-align: center;
}

.hero-inner {
    max-width: var(--content-narrow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: clamp(140px, 20vw, 220px);
    height: clamp(140px, 20vw, 220px);
    border-radius: 50%;
    margin-bottom: 36px;
}

.hero-title {
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 500;
    margin-bottom: 28px;
    color: var(--color-text);
}

.hero-title .dash {
    color: var(--color-accent);
    font-style: italic;
    margin: 0 0.1em;
}

.hero-lede {
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

.hero-image-wrap {
    margin-top: clamp(48px, 7vw, 80px);
}

.hero-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 9;
}

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

/* ---------- Sections ---------- */
.section {
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.section-light {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-cream {
    background-color: var(--color-bg-cream);
}

.section-intro {
    max-width: var(--content-narrow);
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.section-intro h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin-bottom: 20px;
}

.section-intro p {
    color: var(--color-text-muted);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.75;
}

/* ---------- Columns ---------- */
.columns {
    display: grid;
    gap: clamp(28px, 4vw, 56px);
}

.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.columns-spaced {
    margin-top: clamp(48px, 6vw, 80px);
    padding-top: clamp(48px, 6vw, 72px);
    border-top: 1px solid var(--color-border);
}

.column h3 {
    font-size: clamp(20px, 1.8vw, 24px);
    margin-bottom: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: -0.005em;
}

.column p {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ---------- Feature rows ---------- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(48px, 7vw, 80px);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse .feature-image {
    order: -1;
}

.feature-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 500;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 24px 60px -36px rgba(0, 0, 0, 0.4);
}

/* ---------- Checkmark list ---------- */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 18px;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.checkmark-list li:last-child {
    margin-bottom: 0;
}

.checkmark-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--color-text);
    color: #d8d4cd;
    padding-top: 72px;
    padding-bottom: 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 18px;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 4px;
}

.footer-tagline {
    color: #908a82;
    font-size: 14px;
    margin: 0;
}

.footer-block .footer-heading {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.footer-address {
    font-style: normal;
    color: #b8b3ab;
    line-height: 1.75;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #8a857d;
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
    .columns-3 {
        grid-template-columns: 1fr;
    }
    .columns-2 {
        grid-template-columns: 1fr;
    }
    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
    }
    .feature-row-reverse .feature-image {
        order: 0;
    }
    .feature-image img {
        aspect-ratio: 16 / 10;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 20px;
    }
}
