:root {
--accent: #c01e2d;
--accent-dark: #9e1825;
--dark: #1a1612;
--dark-tint: #251e18;
--light: #faf7f2;
--tint: #f0ebe3;
--tint-2: #e8e2d6;
--muted: #6b6358;
--border: #d9d2c5;
}

*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Outfit', sans-serif;
font-weight: 400;
color: var(--dark);
background: var(--light);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

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

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

section[id] {
scroll-margin-top: 120px;
}

/* === NAV === */
.nav {
position: sticky;
top: 42px;
background: var(--dark);
z-index: 100;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.nav__brand {
display: flex;
align-items: center;
gap: 10px;
color: var(--light);
text-decoration: none;
font-weight: 800;
font-size: 0.95rem;
letter-spacing: 0.08em;
text-transform: uppercase;
flex-shrink: 0;
}

.nav__brand svg {
width: 22px;
height: 22px;
color: var(--accent);
flex-shrink: 0;
}

.nav__links {
display: flex;
gap: 28px;
align-items: center;
margin-left: auto;
}

.nav__links a {
color: rgba(250, 247, 242, 0.75);
text-decoration: none;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color 200ms ease;
min-height: 44px;
display: flex;
align-items: center;
}

.nav__links a:hover {
color: var(--light);
}

.nav__cta {
background: var(--accent);
color: #fff;
padding: 10px 22px;
text-decoration: none;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: background 200ms ease;
min-height: 44px;
display: flex;
align-items: center;
flex-shrink: 0;
}

.nav__cta:hover {
background: var(--accent-dark);
}

.nav__toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 10px;
}

.nav__toggle span {
width: 24px;
height: 2px;
background: var(--light);
transition: 200ms ease;
display: block;
}

.nav__toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 4px);
}
.nav__toggle.active span:nth-child(2) {
opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -4px);
}

/* === HERO === */
.hero {
position: relative;
min-height: calc(100vh - 106px);
display: flex;
align-items: flex-end;
overflow: hidden;
}

.hero__bg {
position: absolute;
inset: 0;
z-index: 0;
}

.hero__img {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero__scrim {
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(26, 22, 18, 0.92) 0%,
rgba(26, 22, 18, 0.65) 35%,
rgba(26, 22, 18, 0.3) 65%,
rgba(26, 22, 18, 0.12) 100%
);
}

.hero__content {
position: relative;
z-index: 1;
padding: 0 24px 80px;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}

.hero__eyebrow {
display: inline-block;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.18em;
color: var(--accent);
margin-bottom: 18px;
text-transform: uppercase;
}

.hero__title {
font-size: clamp(1.75rem, 5vw, 3.5rem);
font-weight: 900;
line-height: 1.05;
letter-spacing: -0.015em;
color: var(--light);
text-transform: uppercase;
max-width: 820px;
margin-bottom: 20px;
}

.hero__sub {
font-size: clamp(0.95rem, 1.5vw, 1.15rem);
color: rgba(250, 247, 242, 0.82);
max-width: 520px;
margin-bottom: 28px;
font-weight: 300;
line-height: 1.5;
}

/* === BUTTONS === */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 28px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
text-decoration: none;
transition: all 200ms ease;
border: none;
cursor: pointer;
min-height: 44px;
}

.btn--filled {
background: var(--accent);
color: #fff;
}

.btn--filled:hover {
background: var(--accent-dark);
}

.btn--outline {
background: transparent;
color: var(--light);
border: 1.5px solid rgba(250, 247, 242, 0.4);
}

.btn--outline:hover {
border-color: var(--light);
background: rgba(250, 247, 242, 0.06);
}

/* === TRUST PILLS === */
.trust {
padding: 48px 0;
background: var(--light);
border-bottom: 1px solid var(--border);
}

.trust__pills {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
}

.pill {
display: inline-block;
padding: 8px 18px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
border: 1px solid var(--border);
white-space: nowrap;
}

/* === SHARED SECTION === */
.eyebrow {
display: block;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 14px;
text-align: center;
}

.eyebrow--left {
text-align: left;
}

.section-title {
font-size: clamp(1.5rem, 3.5vw, 2.5rem);
font-weight: 900;
line-height: 1.1;
letter-spacing: -0.015em;
text-transform: uppercase;
text-align: center;
margin-bottom: 20px;
}

.section-title--left {
text-align: left;
}

.section-sub {
text-align: center;
max-width: 620px;
margin: 0 auto 0;
color: var(--muted);
font-weight: 300;
font-size: 1rem;
line-height: 1.7;
}

/* === SERVICES BANDS === */
.services {
padding: 100px 0 0;
background: var(--light);
}

.services__header {
margin-bottom: 56px;
}

.bands {
width: 100%;
}

.band {
padding: 36px 0;
background: var(--tint);
transition: background 200ms ease;
}

.band--alt {
background: var(--light);
}

.band__inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 280px 1fr;
gap: 40px;
align-items: baseline;
}

.band__name {
font-size: 1.25rem;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--dark);
}

.band__desc {
font-size: 0.98rem;
color: var(--muted);
font-weight: 300;
line-height: 1.7;
max-width: 680px;
}

/* === VARIETIES === */
.varieties {
padding: 100px 0;
background: var(--light);
}

.varieties .section-sub {
margin-bottom: 56px;
}

.varieties__image {
margin: 0 auto 56px;
overflow: hidden;
}

.varieties__image img {
width: 100%;
max-width: 1024px;
height: auto;
margin: 0 auto;
}

.varieties__list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px 40px;
max-width: 100%;
}

.variety {
border-top: 2px solid var(--accent);
padding-top: 18px;
}

.variety h3 {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 10px;
}

.variety p {
font-size: 0.92rem;
color: var(--muted);
font-weight: 300;
line-height: 1.6;
}

/* === STORY === */
.story {
padding: 100px 0;
background: var(--tint);
}

.story__layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.story__image img {
width: 100%;
max-width: 1024px;
height: auto;
}

.story__text p {
font-size: 1.02rem;
color: var(--muted);
font-weight: 300;
line-height: 1.75;
margin-bottom: 18px;
}

.story__text p:last-child {
margin-bottom: 0;
}

/* === CTA BAND === */
.cta-band {
padding: 100px 0;
background: var(--dark);
text-align: center;
}

.cta-band__inner {
display: flex;
flex-direction: column;
align-items: center;
}

.cta-band__cherry {
width: 32px;
height: 32px;
color: var(--accent);
margin-bottom: 24px;
}

.cta-band__title {
font-size: clamp(1.75rem, 4vw, 3rem);
font-weight: 900;
letter-spacing: -0.015em;
text-transform: uppercase;
color: var(--light);
margin-bottom: 14px;
}

.cta-band__sub {
font-size: 1.05rem;
color: rgba(250, 247, 242, 0.7);
font-weight: 300;
margin-bottom: 32px;
max-width: 500px;
}

.cta-band__actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
background: var(--dark-tint);
padding: 64px 0 24px;
color: rgba(250, 247, 242, 0.65);
}

.footer__grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 40px;
}

.footer__logo {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: 0.08em;
color: var(--light);
display: block;
margin-bottom: 14px;
text-transform: uppercase;
}

.footer__tagline {
font-size: 0.88rem;
font-weight: 300;
line-height: 1.6;
max-width: 280px;
}

.footer__col h4 {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--light);
margin-bottom: 16px;
}

.footer__col a {
display: block;
color: rgba(250, 247, 242, 0.65);
text-decoration: none;
font-size: 0.88rem;
margin-bottom: 10px;
transition: color 200ms ease;
}

.footer__col a:hover {
color: var(--light);
}

.footer__col p {
font-size: 0.82rem;
line-height: 1.7;
font-weight: 300;
}

.footer__bottom {
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
}

.footer__bottom p {
font-size: 0.8rem;
color: rgba(250, 247, 242, 0.45);
}

/* === REVEAL === */
.reveal {
transition: opacity 700ms ease, transform 700ms ease;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
.varieties__list {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 700px) {
.nav__links {
display: none;
position: absolute;
top: 64px;
left: 0;
right: 0;
background: var(--dark);
flex-direction: column;
padding: 8px 24px 16px;
gap: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__links.mobile-open {
display: flex;
}

.nav__links a {
padding: 14px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
width: 100%;
}

.nav__links a:last-child {
border-bottom: none;
}

.nav__cta {
display: none;
}

.nav__toggle {
display: flex;
}

.band__inner {
grid-template-columns: 1fr;
gap: 8px;
}

.varieties__list {
grid-template-columns: 1fr;
}

.story__layout {
grid-template-columns: 1fr;
gap: 36px;
}

.footer__grid {
grid-template-columns: 1fr 1fr;
gap: 32px;
}

.footer__brand {
grid-column: 1 / -1;
}

.cta-band__actions {
flex-direction: column;
align-items: stretch;
width: 100%;
}

.cta-band__actions .btn {
width: 100%;
}

.hero__content {
padding-bottom: 56px;
}
}

@media (max-width: 420px) {
.footer__grid {
grid-template-columns: 1fr;
gap: 28px;
}
}

@media (prefers-reduced-motion: reduce) {
.reveal {
transition: none !important;
}
html {
scroll-behavior: auto;
}
}