:root {
  --orchard-pink: #c75978;
  --apple-blossom: #e6a1b3;
  --ink-black: #202020;
  --orchard-green: #6e8a64;
  --warm-paper: #f6f2ea;
  --honey: #c75978;
  --snow-blue: #f6f2ea;
  --barrel-wood: #6e8a64;
  --white: #fff;
  --line: rgba(32, 32, 32, 0.16);
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", Georgia, serif;
  --container: 1160px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink-black);
  background:
    radial-gradient(circle at 16% 3%, rgba(230, 161, 179, 0.2), transparent 28rem),
    var(--warm-paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-black);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(246, 242, 234, 0.94);
  box-shadow: 0 8px 30px rgba(32, 32, 32, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand,
.footer-brand {
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.primary-navigation a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.primary-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--orchard-pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-navigation a:not(.nav-cta):hover::after,
.primary-navigation a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink-black);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white);
  background: var(--ink-black);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 90px;
  background-image: radial-gradient(rgba(199, 89, 120, 0.1) 1px, transparent 1.5px);
  background-position: calc(100% - 48px) 110px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 52vw;
  max-width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 89, 120, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--ink-black);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.hero h1,
.section-heading h2,
.taste h2,
.about-copy h2,
.story-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(44px, 5.7vw, 78px);
}

.hero h1 em {
  color: var(--orchard-pink);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(32, 32, 32, 0.82);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  align-items: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.button--primary {
  color: var(--white);
  background: var(--ink-black);
  box-shadow: 0 12px 34px rgba(199, 89, 120, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: var(--ink-black);
  background: var(--white);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink-black);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--orchard-pink);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-audience {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-audience > span {
  color: var(--ink-black);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-audience ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.hero-audience li:not(:last-child)::after {
  margin-left: 18px;
  color: var(--orchard-pink);
  content: "·";
}

.hero-visual {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.76);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(32, 32, 32, 0.15);
}

.hero-visual > .hero-visual__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(32, 32, 32, 0.28));
  content: "";
  pointer-events: none;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 8%;
  display: grid;
  gap: 5px;
  max-width: 260px;
  padding: 16px 18px;
  border-left: 3px solid var(--orchard-pink);
  background: rgba(246, 242, 234, 0.94);
  box-shadow: 0 12px 34px rgba(32, 32, 32, 0.08);
}

.hero-visual figcaption span {
  color: var(--barrel-wood);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.hero-visual figcaption strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.hero-orchard {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orchard__apple {
  position: absolute;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 48% 52% 52% 48%;
  background: var(--orchard-pink);
  opacity: 0.58;
}

.hero-orchard__apple::before {
  position: absolute;
  top: -7px;
  left: 48%;
  width: 8px;
  height: 9px;
  border-radius: 90% 10%;
  background: var(--orchard-green);
  content: "";
  transform: rotate(-30deg);
}

.hero-orchard__apple--one {
  top: 19%;
  left: 4%;
}

.hero-orchard__apple--two {
  right: 5%;
  bottom: 23%;
  width: 18px;
  background: var(--honey);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(32, 32, 32, 0.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 30px;
  background: var(--orchard-pink);
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 30px 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading h2,
.taste h2,
.about-copy h2,
.story-heading h2,
.contact h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.section-heading > p:last-child {
  margin: 0;
  color: rgba(32, 32, 32, 0.72);
}

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

.craft {
  position: relative;
}

.craft::before {
  position: absolute;
  top: 40px;
  right: max(18px, calc((100vw - var(--container)) / 2));
  width: 126px;
  height: 94px;
  background-image: radial-gradient(var(--apple-blossom) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  content: "";
  opacity: 0.65;
  pointer-events: none;
}

.feature-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 0 34px 42px;
  border: 1px solid rgba(199, 89, 120, 0.23);
  background: rgba(255, 255, 255, 0.64);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card__image {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 -34px 32px;
  background: var(--apple-blossom);
}

.feature-card__image::after {
  position: absolute;
  inset: 0;
  border-bottom: 4px solid var(--apple-blossom);
  content: "";
  pointer-events: none;
}

.feature-card--green .feature-card__image::after {
  border-color: var(--orchard-green);
}

.feature-card--wood .feature-card__image::after {
  border-color: var(--ink-black);
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-card__image img {
  transform: scale(1.035);
}

.feature-card::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 89, 120, 0.2);
  border-radius: 50%;
  content: "";
}

.feature-card--green {
  border-color: rgba(110, 138, 100, 0.3);
}

.feature-card--wood {
  border-color: rgba(110, 138, 100, 0.32);
}

.feature-card:hover {
  box-shadow: 0 20px 50px rgba(32, 32, 32, 0.08);
  transform: translateY(-5px);
}

.feature-card__motif {
  position: relative;
  width: 78px;
  height: 78px;
  margin-bottom: 48px;
}

.feature-card__motif--apple {
  border: 2px solid var(--orchard-pink);
  border-radius: 48% 52% 52% 48%;
}

.feature-card__motif--apple::before {
  position: absolute;
  top: -16px;
  left: 42px;
  width: 24px;
  height: 16px;
  border: 2px solid var(--orchard-green);
  border-width: 2px 2px 0 0;
  border-radius: 100% 0;
  content: "";
  transform: rotate(-18deg);
}

.feature-card__motif--leaf {
  border: 2px solid var(--orchard-green);
  border-radius: 100% 0;
  transform: rotate(-12deg);
}

.feature-card__motif--leaf::after {
  position: absolute;
  top: 38px;
  left: 8px;
  width: 72px;
  height: 1px;
  background: var(--orchard-green);
  content: "";
  transform: rotate(-43deg);
  transform-origin: left;
}

.feature-card__motif--barrel {
  border: 2px solid var(--barrel-wood);
  border-radius: 40%;
}

.feature-card__motif--barrel::before,
.feature-card__motif--barrel::after {
  position: absolute;
  right: -5px;
  left: -5px;
  height: 2px;
  background: var(--barrel-wood);
  content: "";
}

.feature-card__motif--barrel::before {
  top: 20px;
}

.feature-card__motif--barrel::after {
  bottom: 20px;
}

.feature-card__label,
.value__label {
  margin: 0 0 8px;
  color: var(--ink-black);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.feature-card--green .feature-card__label {
  color: var(--ink-black);
}

.feature-card--wood .feature-card__label {
  color: var(--ink-black);
}

.feature-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.feature-card p:last-child {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(32, 32, 32, 0.72);
  font-size: 14px;
}

.taste {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 0;
  color: var(--white);
  background: var(--ink-black);
}

.taste::before {
  position: absolute;
  top: -35%;
  right: -5%;
  width: 540px;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 161, 179, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(199, 89, 120, 0.035), 0 0 0 120px rgba(199, 89, 120, 0.025);
  content: "";
}

.taste-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 80px;
  align-items: center;
}

.eyebrow--light {
  color: var(--apple-blossom);
}

.taste-copy > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.taste-notes span {
  display: grid;
  width: 130px;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  text-align: center;
}

.taste-notes span:nth-child(2),
.taste-notes span:nth-child(5) {
  transform: translateY(28px);
}

.taste-notes small {
  display: block;
  margin-top: 4px;
  color: var(--apple-blossom);
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: center;
}

.about-mark {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: stretch;
  padding: 0;
  border: 1px solid rgba(199, 89, 120, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: var(--orchard-pink);
  content: "";
}

.about-mark::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.about-mark::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.about-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

.about-mark > p {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 9px 12px;
  color: var(--ink-black);
  background: rgba(246, 242, 234, 0.92);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.about-copy__lead {
  margin: 32px 0 22px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.85;
}

.about-copy > p:last-child {
  margin: 0;
  color: rgba(32, 32, 32, 0.7);
}

.story {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(230, 161, 179, 0.48), transparent 52%),
    var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(50px, 9vw, 140px);
}

.story-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.story-body {
  padding-left: clamp(24px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.story-photo {
  position: relative;
  margin: 0 0 44px;
}

.story-photo::after {
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid var(--apple-blossom);
  content: "";
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-photo figcaption {
  margin-top: 12px;
  color: var(--ink-black);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.story-body > p {
  margin: 0 0 28px;
  color: rgba(32, 32, 32, 0.75);
}

.story-body blockquote {
  position: relative;
  margin: 52px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--orchard-pink);
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.8;
}

.story-body blockquote::before {
  position: absolute;
  top: -22px;
  left: -5px;
  color: var(--apple-blossom);
  font-family: Georgia, serif;
  font-size: 60px;
  content: "“";
}

.section-heading--center {
  display: block;
  margin-bottom: 60px;
  text-align: center;
}

.section-heading--center .eyebrow {
  margin-bottom: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values {
  background:
    radial-gradient(circle at 12% 30%, rgba(230, 161, 179, 0.2), transparent 18rem),
    var(--warm-paper);
}

.value {
  padding: 50px 36px 46px;
  text-align: center;
}

.value + .value {
  border-left: 1px solid var(--line);
}

.value__icon {
  display: block;
  height: 52px;
  margin-bottom: 22px;
  color: var(--orchard-pink);
  font-family: var(--serif);
  font-size: 37px;
  line-height: 1;
}

.value:nth-child(2) .value__icon {
  color: var(--orchard-green);
}

.value:nth-child(3) .value__icon {
  color: var(--honey);
}

.value h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.value > p:last-child {
  margin: 0;
  color: rgba(32, 32, 32, 0.68);
  font-size: 14px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 138px) 0;
  color: var(--white);
  background: var(--ink-black);
}

.contact::before,
.contact::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.contact::before {
  top: -220px;
  right: -100px;
  width: 500px;
  aspect-ratio: 1;
}

.contact::after {
  right: 110px;
  bottom: -240px;
  width: 400px;
  aspect-ratio: 1;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 70px;
  align-items: end;
}

.contact .eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
}

.contact-copy > p:first-child {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-links a {
  position: relative;
  display: grid;
  min-height: 68px;
  align-content: center;
  padding: 12px 52px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(32, 32, 32, 0.13);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink-black);
  background: var(--white);
  transform: translateX(4px);
}

.social-links span {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.social-links small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.social-links a:hover small,
.social-links a:focus-visible small {
  color: rgba(32, 32, 32, 0.65);
}

.social-links i {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: normal;
  transform: translateY(-50%);
}

.site-footer {
  padding: 40px 0;
  background: var(--ink-black);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 44px;
  align-items: center;
}

.footer-brand {
  padding: 5px;
  background: var(--warm-paper);
}

.footer-brand img {
  width: 150px;
  height: 94px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-meta p {
  margin: 0;
  font-size: 12px;
}

.footer-meta p:first-child {
  margin-bottom: 4px;
  color: var(--apple-blossom);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 12px;
}

.footer-socials a {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: var(--orchard-pink);
  text-underline-offset: 5px;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.back-to-top span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 0 8px;
    border: 0;
    color: var(--ink-black);
    background: transparent;
    cursor: pointer;
  }

  .menu-button__label {
    font-family: Georgia, serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .menu-button__lines,
  .menu-button__lines::before,
  .menu-button__lines::after {
    display: block;
    width: 21px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-button__lines {
    position: relative;
  }

  .menu-button__lines::before {
    position: absolute;
    top: -6px;
  }

  .menu-button__lines::after {
    position: absolute;
    top: 6px;
  }

  .menu-button[aria-expanded="true"] .menu-button__lines {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button__lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(246, 242, 234, 0.98);
    box-shadow: 0 20px 35px rgba(32, 32, 32, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 11px 6px;
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 480px;
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .taste-grid,
  .about-grid,
  .story-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .taste-grid {
    gap: 62px;
  }

  .taste-notes {
    max-width: 620px;
    justify-content: flex-start;
  }

  .taste-notes span:nth-child(2),
  .taste-notes span:nth-child(5) {
    transform: none;
  }

  .about-mark {
    width: min(100%, 620px);
    min-height: 430px;
  }

  .story-heading {
    position: static;
  }

  .contact-inner {
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand img {
    width: 96px;
    height: 54px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.5vw, 56px);
  }

  .hero-lead {
    margin-top: 25px;
    line-height: 1.9;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-audience {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-audience ul {
    display: grid;
    gap: 6px;
  }

  .hero-audience li::after {
    display: none;
  }

  .hero-visual {
    min-height: 380px;
    padding: 0;
    border-width: 8px;
  }

  .hero-visual figcaption {
    right: 18px;
    bottom: 22px;
    left: 18px;
    max-width: none;
  }

  .section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .taste h2,
  .about-copy h2,
  .story-heading h2,
  .contact h2 {
    font-size: clamp(31px, 10.5vw, 46px);
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 0 28px 38px;
  }

  .feature-card__image {
    margin: 0 -28px 28px;
  }

  .feature-card__motif {
    width: 64px;
    height: 64px;
    margin-bottom: 34px;
  }

  .feature-card__motif--leaf::after {
    top: 31px;
    width: 58px;
  }

  .taste-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taste-notes span {
    width: 100%;
    max-width: 150px;
    justify-self: center;
  }

  .about-mark {
    min-height: 340px;
    padding: 0;
  }

  .about-mark img {
    height: 340px;
  }

  .story-body {
    padding-left: 22px;
  }

  .values-grid {
    border-bottom: 0;
  }

  .value {
    padding: 42px 24px;
    border-bottom: 1px solid var(--line);
  }

  .value + .value {
    border-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    width: 140px;
  }

  .footer-brand img {
    width: 130px;
    height: 82px;
  }

  .back-to-top {
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 24px);
  }

  .menu-button__label {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .taste-notes span {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
