:root {
  --honey: #f1b63a;
  --amber: #a76512;
  --leaf: #416f4a;
  --ink: #26221c;
  --muted: #6f675f;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: rgba(38, 34, 28, 0.14);
  --shadow: 0 18px 50px rgba(65, 42, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(38, 34, 28, 0.74), rgba(38, 34, 28, 0));
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(38, 34, 28, 0.18);
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px clamp(20px, 6vw, 86px) 92px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 25, 18, 0.82) 0%, rgba(31, 25, 18, 0.48) 34%, rgba(31, 25, 18, 0.12) 66%),
    linear-gradient(180deg, rgba(31, 25, 18, 0.08), rgba(31, 25, 18, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--ink);
  background: var(--honey);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.section {
  padding: clamp(58px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.intro {
  background: var(--white);
}

.intro-grid,
.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--leaf);
  font-weight: 900;
}

.feature p,
.product-card p,
.origin p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.origin,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
}

.origin {
  color: var(--white);
  background: var(--leaf);
}

.origin .eyebrow,
.origin p {
  color: rgba(255, 255, 255, 0.82);
}

.origin p {
  font-size: 1.12rem;
}

.products {
  background: #fbf4e3;
}

.story-feed {
  background: #fbf4e3;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 18px;
}

.story-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-card div {
  padding: 24px;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.product-showcase {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.showcase-grid > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-list.compact {
  grid-template-columns: 1fr;
}

.product-card {
  min-height: 190px;
  padding: 28px;
}

.contact {
  background: var(--white);
}

.contact-actions {
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-actions p {
  max-width: 360px;
  font-size: 0.95rem;
}

.instagram {
  padding-top: 0;
  background: var(--white);
}

.instagram-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fbf4e3;
  box-shadow: var(--shadow);
}

.instagram-card img {
  width: 92px;
  height: 92px;
  border: 4px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.instagram-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.instagram-card p:last-child {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 94vh;
    padding-top: 118px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(31, 25, 18, 0.86), rgba(31, 25, 18, 0.34));
  }

  .intro-grid,
  .product-list,
  .story-grid,
  .showcase-grid,
  .origin,
  .contact,
  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    align-items: start;
  }

  .feature,
  .product-card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    max-width: 9ch;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 64px;
  }

  .hero-image {
    object-position: 54% center;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    align-items: stretch;
  }
}
