:root {
  --navy: #464a79;
  --navy-dark: #31355f;
  --violet: #7777a8;
  --powder: #e7dce9;
  --pink: #e34991;
  --wine: #a70958;
  --gold: #f2cf78;
  --ink: #27243a;
  --paper: #f8f4f7;
  --white: #fff;
  --line: rgba(39, 36, 58, .16);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Noto Sans JP", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
section { scroll-margin-top: 88px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-dark);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: 82px;
  padding: 18px clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(28,25,57,.55), transparent);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--gold);
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 500 28px/1 var(--serif);
}
.brand-name {
  font: 500 15px/1.1 var(--serif);
  letter-spacing: .28em;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}
.global-nav a {
  color: var(--white);
  text-decoration: none;
  font: 500 14px/1 var(--serif);
  letter-spacing: .12em;
}
.global-nav a:hover { color: var(--gold); }
.nav-contact {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.62);
}
.menu-button { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(73,73,124,.94) 0 47%, rgba(228,220,235,.92) 47% 68%, rgba(227,73,145,.92) 68% 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 67%, rgba(140,0,69,.28) 100%);
}
.hero-image {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background:
    linear-gradient(180deg, rgba(57,58,105,.18), rgba(48,49,92,.1)),
    url("assets/wine-visual.jpg") center bottom / cover no-repeat;
  opacity: .92;
  mix-blend-mode: luminosity;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  grid-column: 1 / 2;
  max-width: 670px;
  padding: 150px 5vw 90px max(6vw, 56px);
  text-shadow: 0 2px 22px rgba(30,26,60,.22);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font: 500 13px/1.2 var(--serif);
  letter-spacing: .26em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
}
.hero h1 {
  max-width: 520px;
  font-size: clamp(52px, 6.2vw, 104px);
  letter-spacing: .03em;
}
.lead {
  margin: 28px 0 18px;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.7;
}
.hero-text {
  max-width: 560px;
  margin: 0 0 34px;
  font-size: 15px;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(242,207,120,.45);
}
.hero-monogram {
  position: absolute;
  z-index: 2;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font: 500 clamp(190px, 31vw, 490px)/.75 var(--serif);
  opacity: .95;
}
.vertical-title {
  position: absolute;
  z-index: 3;
  right: 1.5vw;
  top: 50%;
  margin: 0;
  color: var(--gold);
  font: 500 clamp(14px, 1.15vw, 20px)/1 var(--serif);
  letter-spacing: .58em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font: 500 10px/1 var(--serif);
  letter-spacing: .24em;
}
.scroll-cue i {
  display: block;
  width: 58px; height: 1px;
  background: currentColor;
}

.section {
  padding: clamp(92px, 11vw, 160px) clamp(24px, 8vw, 130px);
}
.section-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
}
.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}
.section-heading.centered > p:last-child {
  margin-top: 24px;
  font-size: 14px;
}

.concept {
  background:
    radial-gradient(circle at 80% 20%, rgba(227,73,145,.08), transparent 32%),
    var(--paper);
}
.concept-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
}
.concept-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.3vw, 49px);
  line-height: 1.6;
}
.concept-copy {
  padding-top: 10px;
  font-size: 15px;
}
.concept-copy p { margin: 0 0 24px; }

.quality {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(51,53,96,.94), rgba(83,82,132,.9)),
    url("assets/wine-visual.jpg") center / cover fixed;
}
.quality-panel {
  min-height: 700px;
  padding: clamp(92px, 10vw, 150px) clamp(24px, 10vw, 160px);
  color: var(--white);
  background: linear-gradient(90deg, rgba(52,54,98,.93), rgba(91,89,143,.82));
}
.light h2 { color: var(--white); }
.standards {
  list-style: none;
  padding: 0;
  margin: 70px 0 0 auto;
  max-width: 840px;
}
.standards li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.22);
}
.standards li:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.standards > li > span {
  color: var(--gold);
  font: 500 17px/1.4 var(--serif);
}
.standards h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font: 500 clamp(31px, 3vw, 48px)/1 var(--serif);
}
.standards p { margin: 0; }

.collection { background: #f2ebf2; }
.collection-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.collection-card {
  position: relative;
  min-height: 500px;
  padding: 34px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform .7s ease;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(29,25,55,.9), rgba(29,25,55,.05) 68%);
}
.collection-card:hover::before { transform: scale(1.04); }
.card-wine::before {
  background:
    linear-gradient(135deg, rgba(84,84,140,.35), rgba(153,10,87,.42)),
    url("assets/wine-visual.jpg") center / cover;
}
.card-food::before {
  background:
    radial-gradient(circle at 65% 20%, rgba(242,207,120,.68), transparent 25%),
    linear-gradient(145deg, #d76b9e, #8d175d 70%);
}
.card-lifestyle::before {
  background:
    linear-gradient(145deg, rgba(255,255,255,.2), transparent),
    linear-gradient(145deg, #9a93b8, #4e4f80 75%);
}
.card-number {
  position: absolute;
  top: 26px; right: 28px;
  color: rgba(255,255,255,.68);
  font: 500 16px/1 var(--serif);
}
.card-copy h3 {
  margin: 0 0 14px;
  font: 500 clamp(31px, 3vw, 45px)/1.25 var(--serif);
}
.card-copy p:last-child { margin: 0; font-size: 14px; }

.message {
  position: relative;
  text-align: center;
  color: var(--white);
  background: linear-gradient(115deg, var(--pink), var(--wine));
  overflow: hidden;
}
.message-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(242,207,120,.16);
  font: 500 min(64vw, 860px)/.7 var(--serif);
}
.message blockquote {
  position: relative;
  margin: 0;
  color: var(--gold);
  font: 500 clamp(44px, 6.5vw, 94px)/1.15 var(--serif);
}
.message > p {
  position: relative;
  margin: 34px 0 0;
  letter-spacing: .1em;
}

.company {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 10vw, 150px);
  background: var(--paper);
}
.company-list { margin: 0; }
.company-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.company-list > div:last-child { border-bottom: 1px solid var(--line); }
.company-list dt { font-weight: 500; }
.company-list dd { margin: 0; }
.company-list a { text-underline-offset: 4px; }

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px 80px;
  color: var(--white);
  background: var(--navy-dark);
}
.contact h2 {
  max-width: 800px;
  font-size: clamp(37px, 4.5vw, 66px);
}
.contact p { max-width: 760px; }
.contact-button {
  width: clamp(210px, 18vw, 290px);
  aspect-ratio: 1;
  border: 1px solid rgba(242,207,120,.68);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  text-decoration: none;
  text-align: center;
  transition: background .25s, color .25s, transform .25s;
}
.contact-button:hover {
  color: var(--navy-dark);
  background: var(--gold);
  transform: scale(1.025);
}
.contact-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.site-footer {
  min-height: 160px;
  padding: 38px clamp(24px, 6vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.65);
  background: #222341;
}
.footer-brand { color: var(--gold); }
.site-footer p { margin: 0; font-size: 12px; }

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding: 15px 20px;
  }
  .brand-name { font-size: 12px; }
  .brand-mark { width: 34px; height: 34px; font-size: 24px; }
  .menu-button {
    position: relative;
    z-index: 1002;
    width: 44px; height: 44px;
    padding: 10px;
    border: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) {
    display: block;
    width: 24px; height: 1px;
    background: var(--white);
    transition: transform .25s, opacity .25s;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    padding: 110px 34px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: linear-gradient(145deg, var(--navy-dark), var(--wine));
    transform: translateX(100%);
    transition: transform .34s ease;
  }
  .global-nav.is-open { transform: translateX(0); }
  .global-nav a { font-size: 28px; }
  .nav-contact { margin-top: 10px; }

  .hero {
    min-height: 100svh;
    display: block;
    background:
      linear-gradient(to bottom, rgba(54,55,100,.44), rgba(52,53,96,.9) 74%),
      url("assets/wine-visual.jpg") center bottom / cover no-repeat;
  }
  .hero::after {
    background: linear-gradient(165deg, transparent 44%, rgba(182,13,94,.28));
  }
  .hero-image { display: none; }
  .hero-copy {
    min-height: 100svh;
    padding: 130px 25px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero h1 { max-width: 9em; }
  .hero-monogram {
    top: auto;
    right: -35px;
    bottom: 40px;
    transform: none;
    font-size: 260px;
    opacity: .3;
  }
  .vertical-title {
    right: 10px;
    font-size: 11px;
  }
  .scroll-cue {
    right: auto;
    left: 25px;
  }
  .concept-grid,
  .company {
    grid-template-columns: 1fr;
  }
  .concept-grid { margin-top: 46px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 420px; }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-button {
    width: 220px;
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .desktop-only { display: none; }
  .brand-name { letter-spacing: .18em; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .lead { font-size: 19px; }
  .hero-text { font-size: 14px; }
  .section { padding: 86px 22px; }
  .section-heading h2 { font-size: 43px; }
  .concept-lead { font-size: 29px; }
  .quality-panel { padding: 86px 22px; }
  .standards { margin-top: 48px; }
  .standards li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .standards h3 { font-size: 33px; }
  .collection-card { padding: 26px; }
  .message blockquote { font-size: 43px; }
  .company-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
