:root {
  color-scheme: light;
  --ink: #23211f;
  --muted: #6b6761;
  --paper: #fffdf8;
  --wash: #f5faf1;
  --leaf: #2f6f4e;
  --leaf-dark: #214d38;
  --honey: #e3a72f;
  --berry: #c55567;
  --line: #ded8cc;
  --shadow: 0 18px 50px rgba(35, 33, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 88px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(222, 216, 204, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--honey);
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--leaf);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px) 36px;
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button.primary {
  background: var(--leaf);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--leaf-dark);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--honey);
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(170px, 0.65fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
}

.hero-media img,
.product-panel img,
.post-card img,
.pickup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-side {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(35, 33, 31, 0.1);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 116px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--wash);
}

.intro-band strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.intro-band span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.section-copy {
  max-width: 720px;
}

.section-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-panel img {
  aspect-ratio: 4 / 5;
}

.product-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.product-panel span {
  color: var(--muted);
  font-weight: 750;
}

.product-panel strong {
  color: var(--leaf);
  font-size: 1.15rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(160px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.post-card {
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-card a {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--wash);
}

.post-card p {
  min-height: 122px;
  margin: 0;
  padding: 16px;
  color: var(--muted);
  font-weight: 700;
}

.pickup {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #f9f3f6;
  border-top: 1px solid #ebd6de;
  border-bottom: 1px solid #ebd6de;
}

.pickup > img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.pickup p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}

.pickup address {
  margin: 0 0 22px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.map-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(60px, 8vw, 104px);
  background: #f9f3f6;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 1px solid #ebd6de;
  border-radius: 8px;
  background: var(--wash);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  text-decoration: none;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: #fff;
}

.instagram-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.instagram-link span {
  color: currentColor;
}

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

.floating-order {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(35, 33, 31, 0.22);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.floating-order:hover,
.floating-order:focus-visible {
  background: var(--leaf-dark);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .pickup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-media {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  }

  .intro-band,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .post-card p {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    position: sticky;
  }

  .brand span {
    max-width: 150px;
    line-height: 1.05;
  }

  h1 {
    font-size: clamp(3.4rem, 21vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .lead {
    margin-bottom: 22px;
    font-size: 1.08rem;
  }

  .hero {
    padding: 24px 16px 28px;
  }

  .section {
    padding: 48px 16px;
  }

  .intro-band div {
    min-height: 92px;
    padding: 20px 16px;
  }

  .button {
    width: 100%;
  }

  .product-panel div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .post-grid {
    gap: 14px;
  }

  .post-card p {
    padding: 14px;
    font-size: 0.95rem;
  }

  .map-section {
    padding: 0 16px 48px;
  }

  .map-section iframe {
    min-height: 330px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-main,
  .hero-side {
    aspect-ratio: 1 / 1;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-order {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}
