:root {
  --ink: #182231;
  --muted: #6f6458;
  --paper: #fffaf1;
  --cream: #f5ead7;
  --wood: #7a4e2f;
  --wood-dark: #432a1b;
  --gold: #c99845;
  --navy: #102947;
  --line: rgba(67, 42, 27, 0.18);
  --shadow: 0 22px 70px rgba(47, 31, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 68px);
  color: white;
  background: linear-gradient(180deg, rgba(12, 18, 25, 0.72), rgba(12, 18, 25, 0));
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 8px 30px rgba(42, 28, 17, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand small {
  color: currentColor;
  opacity: 0.74;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 0;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 15, 20, 0.78), rgba(10, 15, 20, 0.42) 42%, rgba(10, 15, 20, 0.05) 72%),
    linear-gradient(0deg, rgba(16, 41, 71, 0.28), rgba(16, 41, 71, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 82px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.3;
}

.hero-content p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 19px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
}

.button.primary {
  color: var(--wood-dark);
  background: var(--gold);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.intro,
.tasting,
.shop,
.visit {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  background: linear-gradient(180deg, var(--paper), #f3e3c7);
}

.intro-copy {
  max-width: 710px;
}

.intro-copy p,
.section-copy p,
.visit p {
  color: var(--muted);
  font-size: 17px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.feature-row article {
  min-height: 132px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.feature-row article:last-child {
  border-right: 0;
}

.feature-row strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1;
}

.feature-row span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.tasting {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: var(--cream);
}

.section-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-image img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

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

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--wood-dark);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.shop {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(255, 250, 241, 0.98)),
    radial-gradient(circle at 92% 12%, rgba(201, 152, 69, 0.16), transparent 32%);
}

.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--wood-dark);
  background: white;
  cursor: pointer;
}

.filter.active {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-photo {
  position: sticky;
  top: 102px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.shop-photo img {
  aspect-ratio: 1;
  object-fit: cover;
}

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

.product-card {
  display: grid;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tag {
  color: var(--navy);
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--wood-dark);
  font-weight: 900;
}

.add-cart {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: white;
  background: var(--wood);
  cursor: pointer;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 36px;
  align-items: center;
  color: white;
  background: var(--navy);
}

.visit .eyebrow {
  color: #e3b96a;
}

.visit p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

address {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  background: rgba(255, 255, 255, 0.06);
}

.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 18px;
  color: white;
  background: var(--navy);
  box-shadow: 0 14px 38px rgba(16, 41, 71, 0.28);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--cream);
  background: var(--wood-dark);
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 250, 241, 0.97);
    box-shadow: 0 18px 42px rgba(42, 28, 17, 0.18);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .intro,
  .tasting,
  .shop-layout,
  .visit {
    grid-template-columns: 1fr;
  }

  .shop-heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-photo {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    margin-left: 20px;
    padding-top: 64px;
  }

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

  .feature-row article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-row article:last-child {
    border-bottom: 0;
  }

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

  .add-cart {
    width: 100%;
  }
}
