:root {
  --ink: #19221c;
  --muted: #5d675f;
  --paper: #f5f2ea;
  --white: #ffffff;
  --line: #ded8cb;
  --forest: #164332;
  --moss: #52734d;
  --matcha: #8aa05b;
  --clay: #b8643e;
  --brass: #c6923a;
  --indigo: #273d50;
  --shadow: 0 22px 60px rgba(25, 34, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(222, 216, 203, 0.82);
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(22, 67, 50, 0.2);
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
}

.brand-name,
.brand-place {
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-place {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav a,
.header-action,
.button,
.text-link,
.map-link {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--forest);
}

.header-action,
.button,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.header-action {
  background: var(--indigo);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, 82svh);
  overflow: hidden;
  padding: clamp(78px, 10vw, 120px) clamp(20px, 7vw, 96px);
  color: var(--white);
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 26, 22, 0.9) 0%, rgba(12, 26, 22, 0.72) 38%, rgba(12, 26, 22, 0.2) 72%),
    linear-gradient(180deg, rgba(12, 26, 22, 0.08), rgba(12, 26, 22, 0.46));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 7.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

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

.button-primary {
  background: var(--brass);
  color: #211607;
}

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

.button-dark {
  background: var(--forest);
  color: var(--white);
}

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

.quick-info {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.1fr;
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  min-width: 0;
  padding: 24px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.section,
.band-section,
.map-section {
  padding: clamp(66px, 9vw, 116px) clamp(20px, 6vw, 86px);
}

.story-section,
.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.section-copy,
.access-copy,
.band-copy {
  width: min(720px, 100%);
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  margin: 18px 0 0;
  color: var(--muted);
}

.story-image {
  margin: 0;
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-heading h2 {
  width: min(850px, 100%);
}

.product-section {
  background: #ebe6d8;
}

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

.product-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(25, 34, 28, 0.1);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(25, 34, 28, 0.04);
}

.feature-card {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 534px;
  background:
    linear-gradient(180deg, rgba(22, 67, 50, 0.1), rgba(22, 67, 50, 0.86)),
    url("assets/hero-tea-fields.jpg") center / cover;
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.86);
}

.product-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  background: #f3ead8;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card .product-label {
  background: rgba(255, 255, 255, 0.14);
  color: #f2d79a;
}

.band-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: var(--forest);
  color: var(--white);
}

.band-section p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #f0cd7d;
  font-weight: 900;
}

.gift-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.gift-points div {
  min-height: 270px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.gift-points span {
  display: block;
  color: #f0cd7d;
  font-weight: 900;
}

.gift-points strong {
  display: block;
  margin-top: 42px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.access-section {
  background: var(--paper);
}

.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  min-width: 0;
  font-weight: 700;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--indigo);
  color: var(--white);
}

.map-section p {
  color: rgba(255, 255, 255, 0.76);
}

.map-link {
  min-width: 190px;
  background: var(--brass);
  color: #201609;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  background: #101916;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
  color: inherit;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .quick-info,
  .story-section,
  .access-section,
  .band-section,
  .map-section {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 360px;
  }

  .gift-points {
    grid-template-columns: 1fr;
  }

  .gift-points div {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .header-action {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 76svh;
    padding: 72px 18px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 26, 22, 0.88) 0%, rgba(12, 26, 22, 0.68) 55%, rgba(12, 26, 22, 0.24) 100%),
      linear-gradient(180deg, rgba(12, 26, 22, 0.1), rgba(12, 26, 22, 0.52));
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.1rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-info div,
  .section,
  .band-section,
  .map-section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .product-card {
    min-height: 220px;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
