:root {
    --amber: #D4850A;
    --amber-soft: rgba(212,133,10,0.10);
    --bg-primary: #FFFAF5;
    --bg-soft: #F5EFE8;
    --bg-card: #FFFFFF;
    --border: rgba(0,0,0,0.08);
    --text: #2C2520;
    --muted: #6B635C;
    --faint: #A09890;
    --max-width: 1120px;
    --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-primary);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(var(--max-width), calc(100% - 48px)); margin: 0 auto; }
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 26px 0;
    color: var(--muted);
    font-size: 0.92rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--amber); }
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: 46px 0 62px;
}
.eyebrow {
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.76rem;
    margin-bottom: 14px;
}
h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.lead {
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    max-width: 720px;
}
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
    text-decoration: none;
    font-weight: 700;
}
.button.primary { background: var(--amber); color: #fff; }
.button.secondary { border: 1px solid var(--border); color: var(--text); }
.shot {
    justify-self: center;
    max-width: 292px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 24px 54px rgba(44,37,32,0.13);
}
.shot img {
    display: block;
    width: 100%;
    aspect-ratio: 414 / 900;
    object-fit: cover;
    border-radius: 22px;
}
.content-band {
    background: var(--bg-soft);
    padding: 64px 0;
}
.content {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(240px, 0.28fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}
article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 48px);
}
article h2 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.25;
    margin: 34px 0 12px;
}
article h2:first-child { margin-top: 0; }
article p, article li { color: var(--muted); font-size: 1rem; }
article p { margin-bottom: 18px; }
article ul { padding-left: 22px; margin: 0 0 20px; }
aside {
    position: sticky;
    top: 24px;
    border-left: 3px solid var(--amber);
    padding-left: 20px;
}
aside h2 {
    font-size: 1rem;
    margin-bottom: 10px;
}
aside p, aside li {
    color: var(--muted);
    font-size: 0.92rem;
}
aside ul { padding-left: 18px; margin: 14px 0 22px; }
footer {
    border-top: 1px solid var(--border);
    padding: 34px 0;
    color: var(--faint);
    font-size: 0.88rem;
}

@media (max-width: 760px) {
    .wrap { width: min(100% - 32px, var(--max-width)); }
    .nav { align-items: flex-start; flex-direction: column; }
    .hero, .content { grid-template-columns: 1fr; }
    .hero { padding-top: 24px; }
    .shot { max-width: 248px; }
    aside { position: static; }
}
