:root {
    --color-ivory: #fffdf8;
    --color-white: #ffffff;
    --color-cream: #f7f4ee;
    --color-charcoal: #252724;
    --color-muted: #6f736c;
    --color-forest: #2f4a3a;
    --color-sage: #8fa493;
    --color-wood: #b98f63;
    --color-sand: #d8c7aa;
    --color-stone: #c8c4ba;
    --color-line: #e4ded3;
    --color-night: #18251e;
    --color-lake: #6f8f9b;
    --font-title: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;
    --shadow-soft: 0 18px 50px rgba(24, 37, 30, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-cream);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
}

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

a {
    color: var(--color-forest);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

a:hover {
    color: var(--color-night);
}

h1,
h2,
h3,
.brand-name {
    color: var(--color-night);
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.45rem, 7vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.55rem;
}

p {
    margin-top: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 1100;
    background: var(--color-night);
    color: #fff;
    padding: .75rem 1rem;
}

.skip-link:focus {
    top: 1rem;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-soft {
    background: var(--color-ivory);
}

.section-cta {
    background: var(--color-night);
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading p,
.content-narrow p {
    color: var(--color-muted);
}

.content-narrow {
    max-width: 780px;
}

.section-kicker {
    margin-bottom: .75rem;
    color: var(--color-wood);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-hero {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--color-ivory);
}

.page-hero-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 72vh;
    align-items: flex-end;
    background: var(--color-night);
    color: #fff;
    padding: 10rem 0 5rem;
}

.page-hero-visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(24, 37, 30, .84), rgba(24, 37, 30, .22));
    content: "";
}

.page-hero-visual .container {
    position: relative;
    z-index: 2;
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    max-width: 980px;
}

.page-hero-visual h1,
.page-hero-visual .section-kicker {
    color: #fff;
}

.page-hero-visual p {
    color: rgba(255, 255, 255, .88);
}

.page-hero-accent {
    background: var(--color-night);
    color: #fff;
}

.page-hero-accent h1,
.page-hero-accent .section-kicker {
    color: #fff;
}

.page-hero p {
    max-width: 680px;
}
