:root {
  --orange: #ef6c00;
  --orange-dark: #bf4d00;
  --orange-soft: #fff1e5;
  --ink: #171717;
  --muted: #6d625c;
  --cream: #fffaf5;
  --paper: #ffffff;
  --line: #eadfd6;
  --green: #325a36;
  --shadow: 0 24px 60px rgba(57, 34, 20, .12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: #000;
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 223, 214, .7);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 4px #111;
  border: 3px solid var(--orange);
  flex: 0 0 auto;
}
.brand-copy { min-width: 0; }
.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .92rem;
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--orange-dark); }
.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--ink);
}
.nav-cta:hover { background: var(--orange-dark); }

/* Hero */
.hero { padding: clamp(48px, 8vw, 96px) 0 72px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.hero h1, .section-title, .story-card h3, .product-card h3, .feature-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--orange); }
.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #514944;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--ink); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: transparent; border-color: #cfc0b7; }
.btn-secondary:hover { border-color: var(--orange); background: #fff; }

.hero-visual {
  position: relative;
  min-height: 610px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  right: 0;
  top: 7%;
  border-radius: 50%;
  background: var(--orange);
  opacity: .12;
}
.photo-main, .photo-float {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.9);
}
.photo-main {
  inset: 0 auto auto 7%;
  width: 68%;
  height: 78%;
  border-radius: 180px 180px 28px 28px;
  object-position: center;
}
.photo-float {
  right: 0;
  bottom: 2%;
  width: 48%;
  aspect-ratio: 1.1;
  border-radius: 24px;
  object-position: center;
}
.hero-badge {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .06em;
  transform: rotate(-8deg);
}
.hero-badge strong {
  display: block;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}

/* Sections */
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.section-intro {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Story */
.story { background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.story-card {
  position: relative;
  padding: 26px 22px 24px;
  min-height: 325px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  overflow: hidden;
}
.story-card::after {
  content: attr(data-step);
  position: absolute;
  right: -6px;
  bottom: -28px;
  color: rgba(239,108,0,.10);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
}
.story-year {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 12px;
  font-size: 1.42rem;
  line-height: 1.08;
}
.story-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5e544e;
  font-size: .94rem;
}

/* Feature image */
.feature {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  min-height: 620px;
  background: var(--ink);
  color: #fff;
}
.feature-image { min-height: 520px; }
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
}
.feature-copy .kicker { color: #ff9c52; }
.feature-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.feature-copy p {
  margin: 24px 0 0;
  color: #d9d0ca;
  font-size: 1.07rem;
  max-width: 620px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.feature-chip {
  padding: 15px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: #f7eee8;
  background: rgba(255,255,255,.04);
  font-size: .86rem;
  font-weight: 700;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-card {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 16px 50px rgba(57,34,20,.08);
}
.product-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}
.product-tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf3eb;
  color: var(--green);
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}
.product-card p { margin: 0; color: var(--muted); }
.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.product-notes span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #7e3a08;
  font-size: .78rem;
  font-weight: 800;
}
.product-brew {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.product-brew div { font-size: .76rem; color: var(--muted); }
.product-brew strong { display: block; color: var(--ink); font-size: .96rem; }

/* CTA */
.cta-section { padding: 0 0 clamp(72px, 8vw, 112px); }
.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-xl);
  background: var(--orange);
  color: #17100c;
}
.cta-box::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 330px;
  aspect-ratio: 1;
  border: 54px solid rgba(255,255,255,.15);
  border-radius: 50%;
}
.cta-box h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.cta-box p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 14px 0 0;
  font-weight: 650;
}
.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cta-actions .btn { white-space: nowrap; }
.cta-actions .btn-secondary { background: rgba(255,255,255,.55); border-color: rgba(0,0,0,.18); }

/* Footer */
.site-footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}
.footer-title {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}
.footer-copy { margin: 7px 0 0; font-size: .9rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.footer-links a { text-decoration: none; font-weight: 800; font-size: .88rem; }
.footer-links a:hover { color: var(--orange-dark); }

/* Responsive */
@media (max-width: 1120px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card:last-child { grid-column: 1 / -1; min-height: 240px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 500px; }
}

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .feature { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 560px; max-width: 650px; width: 100%; margin-inline: auto; }
  .feature-image { min-height: 460px; }
  .feature-copy { padding: 54px 28px; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav { min-height: 68px; }
  .brand-sub { display: none; }
  .nav-cta { padding: 10px 13px; font-size: .82rem; }
  .hero { padding-bottom: 52px; }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.8rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-visual { min-height: 455px; margin-top: 8px; }
  .photo-main { left: 3%; width: 72%; height: 79%; border-width: 6px; }
  .photo-float { width: 51%; border-width: 6px; }
  .hero-badge { width: 118px; left: 0; bottom: 10%; font-size: .66rem; }
  .hero-badge strong { font-size: 1.1rem; }
  .section { padding: 68px 0; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card, .story-card:last-child { grid-column: auto; min-height: auto; }
  .feature-image { min-height: 360px; }
  .feature-copy { padding: 46px 20px; }
  .feature-list { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; min-height: auto; }
  .product-card img { min-height: 0; height: 370px; }
  .product-body { padding: 30px 22px 34px; }
  .product-brew { grid-template-columns: repeat(3, 1fr); }
  .cta-box { padding: 34px 22px; border-radius: 24px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .brand-name { font-size: .92rem; }
  .nav-cta { font-size: .76rem; }
  .hero-visual { min-height: 400px; }
  .photo-main { height: 76%; }
  .photo-float { width: 55%; }
  .product-card img { height: 320px; }
  .product-brew { gap: 5px; }
  .product-brew strong { font-size: .86rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
