@charset "UTF-8";

/* =========================================================
   DADACA HOLDINGS — Corporate Top
   Design tokens / Layered backgrounds / Parallax
   ========================================================= */

:root {
  /* text */
  --sumi: #2B2018;          /* deepest heading (cacao ink) */
  --sumi-soft: #3D332B;     /* body */
  --hai: #857A6F;           /* caption / sub */

  /* surfaces */
  --shiroyu: #FBF7F1;       /* page bg (warm white) */
  --kami: #FFFFFF;          /* cards */
  --kinari: #F3ECE1;        /* section band */
  --kinari-deep: #ECE2D3;
  --line: #E5DBCD;          /* hairline */

  /* accents */
  --cacao: #6B4A2F;         /* deep cacao — headings accent */
  --kiwa: #B8865A;          /* primary accent (caramel gold) */
  --kiwa-dark: #9E6E42;
  --berry: #C2607A;         /* feminine berry accent (sparingly) */
  --berry-soft: #E7B9C5;
  --leaf: #7E9A6B;

  --font-jp-serif: "Noto Serif JP", "Yu Mincho", serif;
  --font-jp-sans:  "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  --font-en-serif: "Cormorant Garamond", serif;
  --font-en-sans:  "Inter", system-ui, sans-serif;

  --s1: 4px; --s2: 8px; --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 64px; --s8: 96px; --s9: 128px;

  --container: 1720px;
  --container-pad: clamp(24px, 4.5vw, 88px);
  --header-h: 78px;

  /* rounded surfaces (MIMARU-inspired soft corners) */
  --radius: 8px;
  --radius-card: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* elegant decelerating eases (GSAP power2/power4-out) */
  --ease: cubic-bezier(.215, .61, .355, 1);   /* power2-out */
  --ease-soft: cubic-bezier(.23, 1, .32, 1);   /* power4-out — slow, refined */
  --ease-expo: cubic-bezier(.19, 1, .22, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp-sans);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  color: var(--sumi-soft);
  background: var(--shiroyu);
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--kiwa); outline-offset: 3px; }

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }

.section {
  position: relative;
  padding: var(--s9) 0;
  overflow: hidden;
  isolation: isolate;
}
.section > .container { position: relative; z-index: 2; }

/* big decorative background letters */
.bg-letter {
  position: absolute;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 20vw, 340px);
  line-height: .8;
  color: rgba(184, 134, 90, .07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  will-change: transform;
}
.bg-letter--right { right: -3vw; top: 6%; }
.bg-letter--left  { left: -3vw; top: 6%; }
.bg-letter--world { left: 50%; top: 14%; transform: translateX(-50%); color: rgba(184,134,90,.06); }

/* section headings */
.section-eyebrow {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--kiwa);
  margin-bottom: var(--s2);
}
.section-eyebrow--light { color: var(--berry-soft); }
.section-title {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--sumi);
}
.section-head { margin-bottom: var(--s7); }
.section-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-note { margin-top: var(--s3); color: var(--hai); font-size: 14px; }

/* buttons — large, friendly pill with circular icon (MIMARU-inspired sizing) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 62px; padding: 4px 16px 4px 36px;
  font-weight: 600; font-size: 15px; letter-spacing: .12em;
  border-radius: var(--radius-full);
  transition: transform .45s var(--ease-soft), background .35s var(--ease), color .35s var(--ease), box-shadow .45s var(--ease-soft), border-color .35s;
}
.btn .btn-ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; transition: transform .45s var(--ease-soft), background .35s;
}
.btn .btn-ico::before {
  content: ""; width: 8px; height: 8px;
  border-top: 1.6px solid currentColor; border-right: 1.6px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}
.btn:hover .btn-ico { transform: translateX(4px); }

.btn--light { background: var(--kami); color: var(--sumi); box-shadow: 0 10px 30px rgba(43,32,24,.18); }
.btn--light .btn-ico { background: var(--cacao); color: #fff; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(43,32,24,.26); }
.btn--ghost { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.btn--ghost .btn-ico { background: rgba(255,255,255,.16); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--dark { background: var(--cacao); color: #fff; }
.btn--dark .btn-ico { background: rgba(255,255,255,.18); color: #fff; }
.btn--dark:hover { background: var(--sumi); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(43,32,24,.24); }
.btn--ghost-dark { border: 1px solid var(--cacao); color: var(--cacao); }
.btn--ghost-dark .btn-ico { background: var(--cacao); color: #fff; }
.btn--ghost-dark:hover { background: var(--cacao); color: #fff; transform: translateY(-3px); }
.btn--ghost-dark:hover .btn-ico { background: rgba(255,255,255,.18); }

/* text link with drawn arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-weight: 600; font-size: 13px; letter-spacing: .12em;
  color: var(--cacao);
}
.link-arrow::after {
  content: "";
  flex-shrink: 0;
  width: 104px; height: 44px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%236B4A2F'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, var(--kiwa), var(--kiwa)) left center / 56px 1px no-repeat;
  transition: transform .45s var(--ease-soft);
}
.link-arrow:hover { color: var(--kiwa-dark); }
.link-arrow:hover::after {
  transform: translateX(8px);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%23B8865A'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, var(--kiwa), var(--kiwa)) left center / 56px 1px no-repeat;
}

/* reveal — slow, refined fade-up (MIMARU-style) */
.reveal { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .9s var(--ease), transform 1.1s var(--ease-soft); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s;
}
.site-header.is-solid {
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
}
.header-inner { width: 100%; max-width: 1880px; margin: 0 auto; padding: 0 var(--container-pad); display: flex; align-items: center; gap: var(--s5); }
.brand { display: flex; align-items: baseline; gap: 8px; color: #fff; transition: color .4s; }
.site-header.is-solid .brand { color: var(--sumi); }
.brand-mark { font-family: var(--font-en-serif); font-style: italic; font-weight: 500; font-size: 26px; letter-spacing: .12em; }
.brand-sub { font-family: var(--font-en-sans); font-size: 10px; letter-spacing: .3em; opacity: .75; }
.global-nav { margin-left: auto; }
.global-nav ul { display: flex; gap: var(--s4); }
.global-nav a { position: relative; color: #fff; transition: color .3s; }
.site-header.is-solid .global-nav a { color: var(--sumi-soft); }
.nav-en { font-family: var(--font-en-sans); font-size: 13px; letter-spacing: .05em; }
.global-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--kiwa); transition: width .3s var(--ease); }
.global-nav a:hover { color: var(--kiwa); }
.global-nav a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex; align-items: center; padding: 11px 24px;
  font-family: var(--font-en-sans); font-size: 12px; font-weight: 600; letter-spacing: .12em;
  border: 1px solid rgba(255,255,255,.7); color: #fff; border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
}
.header-cta:hover { background: #fff; color: var(--sumi); }
.site-header.is-solid .header-cta { border-color: var(--cacao); color: var(--cacao); }
.site-header.is-solid .header-cta:hover { background: var(--cacao); color: #fff; }

/* hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 1100; margin-left: auto; }
.nav-toggle span { position: absolute; left: 10px; width: 24px; height: 2px; background: #fff; transition: transform .35s var(--ease), opacity .25s, background .4s; }
.site-header.is-solid .nav-toggle span { background: var(--sumi); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.drawer-open .nav-toggle span { background: #fff; }
body.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--sumi);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(-2%);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s;
}
body.drawer-open .drawer { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.drawer-nav { width: 100%; max-width: 420px; padding: 0 var(--s5); }
.drawer-nav ul { display: flex; flex-direction: column; }
.drawer-nav li { border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer-nav a { display: flex; align-items: baseline; gap: 14px; padding: 16px 4px; color: #fff; }
.dn-en { font-family: var(--font-en-serif); font-style: italic; font-size: 20px; color: var(--kiwa); min-width: 110px; }
.dn-ja { font-size: 14px; letter-spacing: .08em; }
.drawer-cta { display: block; margin-top: var(--s5); text-align: center; padding: 15px; border: 1px solid var(--kiwa); border-radius: 999px; color: #fff; letter-spacing: .1em; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-slideshow { position: absolute; inset: -6% 0 0; z-index: 0; will-change: transform; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s linear; }
.hero-slide.is-active img { transform: scale(1.14); }
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(43,32,24,.32) 0%, rgba(43,32,24,.5) 60%, rgba(43,32,24,.66) 100%),
    radial-gradient(120% 80% at 70% 30%, rgba(107,74,47,.0), rgba(43,32,24,.45));
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 4px 4px;
}
.hero-content { position: relative; z-index: 3; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); color: #fff; }
.hero-copy {
  font-family: var(--font-jp-serif); font-weight: 300;
  font-size: clamp(14px, 7.5vw, 37px);
  line-height: 1.14; letter-spacing: .06em;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-sub { margin-top: var(--s5); font-family: var(--font-en-serif); font-style: italic; font-size: clamp(16px, 2.2vw, 16px); letter-spacing: .08em; opacity: .92; }
.hero-scroll { position: absolute; right: 44px; bottom: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-scroll-label { writing-mode: vertical-rl; font-family: var(--font-en-serif); font-style: italic; font-size: 14px; letter-spacing: .25em; color: #fff; }
.hero-scroll-line { width: 1px; height: 70px; background: linear-gradient(to bottom, rgba(255,255,255,.7), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: #fff; animation: scrollDrop 1.9s var(--ease) infinite; }
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(280%); } }

/* =========================================================
   CONCEPT
   ========================================================= */
.section--concept { background: var(--shiroyu); padding-top: var(--s9); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.concept-lead { font-family: var(--font-jp-serif); font-size: 17px; line-height: 2.1; margin: var(--s4) 0 var(--s4); color: var(--sumi); }
.concept-lead b { color: var(--cacao); font-weight: 600; }
.concept-body { font-size: 14.5px; line-height: 2.15; margin-bottom: var(--s3); color: var(--sumi-soft); }
.concept-body--accent { font-family: var(--font-jp-serif); color: var(--kiwa-dark); font-size: 16px; letter-spacing: .06em; }

/* mosaic with depth */
.concept-mosaic { position: relative; height: 540px; }
.mosaic-item { position: absolute; margin: 0; overflow: hidden; border-radius: var(--radius-card); box-shadow: 0 20px 50px rgba(43,32,24,.18); will-change: transform; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.concept-mosaic:hover .mosaic-item img { transform: scale(1.04); }
.mosaic-item--1 { width: 56%; height: 56%; top: 0; left: 0; z-index: 3; }
.mosaic-item--2 { width: 42%; height: 46%; top: 6%; right: 0; z-index: 4; }
.mosaic-item--3 { width: 40%; height: 40%; bottom: 4%; left: 8%; z-index: 4; }
.mosaic-item--4 { width: 50%; height: 50%; bottom: 0; right: 4%; z-index: 2; }
.mosaic-deco { position: absolute; top: -22px; left: -26px; width: 46%; height: 46%; border: 1px solid var(--kiwa); border-radius: var(--radius-card); z-index: 1; opacity: .5; }

/* curve divider */
.curve-divider { color: var(--kiwa); line-height: 0; margin: -10px 0; }
.curve-divider svg { width: 100%; height: 110px; display: block; }

/* =========================================================
   BRANDS
   ========================================================= */
.section--brands { position: relative; background: var(--shiroyu); padding-top: var(--s9); }
.brands-head { margin-bottom: var(--s7); }

/* brand quick-nav — segmented pill bar (search-UI inspired) */
.brand-quicknav {
  display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap;
  background: var(--kami); border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 28px;
  box-shadow: 0 14px 40px rgba(43,32,24,.08);
}
.qn-label { font-family: var(--font-en-serif); font-style: italic; font-size: 17px; color: var(--kiwa); flex: 0 0 auto; }
.qn-items { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.qn-item {
  display: inline-flex; align-items: center;
  padding: 9px 20px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: var(--sumi-soft);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease-soft);
}
.qn-item:hover { background: var(--cacao); color: #fff; transform: translateY(-2px); }

/* sticky-stacking brand panels — each photo-panel rises and covers the previous */
.brand-stack { position: relative; }
.brand-panel {
  position: sticky; top: 0;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--sumi);
  scroll-margin-top: 0;
}
.brand-panel-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.brand-panel-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.brand-panel-media--placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 28% 18%, rgba(231,185,197,.5), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, var(--kiwa) 0%, var(--cacao) 100%);
}
.brand-placeholder-en { font-family: var(--font-en-serif); font-style: italic; font-size: clamp(44px,8vw,110px); color: rgba(255,255,255,.85); letter-spacing: .04em; }
.brand-panel-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(34,26,20,.84) 0%, rgba(34,26,20,.4) 36%, rgba(34,26,20,.1) 66%, rgba(34,26,20,.34) 100%);
}
.brand-panel-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s5);
  padding-bottom: clamp(56px, 11vh, 128px);
}
.brand-panel-text { max-width: 560px; }
.brand-panel-num { font-family: var(--font-en-serif); font-style: italic; font-weight: 500; font-size: clamp(90px, 13vw, 220px); line-height: .72; color: rgba(255,255,255,.16); flex: 0 0 auto; }

/* shared brand text + light overlay variants */
.brand-operator { font-size: 11px; letter-spacing: .14em; color: var(--kiwa-dark); margin-bottom: var(--s3); position: relative; padding-left: 30px; }
.brand-operator::before { content: ""; position: absolute; left: 0; top: 50%; width: 20px; height: 1px; background: var(--kiwa); }
.brand-name { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(28px, 3.8vw, 48px); color: var(--sumi); letter-spacing: .04em; line-height: 1.3; }
.brand-en { font-family: var(--font-en-serif); font-style: italic; font-size: 20px; color: var(--kiwa); margin: 8px 0 var(--s3); }
.brand-desc { font-size: 14.5px; line-height: 2.05; color: var(--sumi-soft); margin-bottom: var(--s4); }
.brand-operator--light { color: rgba(255,255,255,.92); }
.brand-operator--light::before { background: rgba(255,255,255,.75); }
.brand-name--light { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.32); }
.brand-en--light { color: #fff; opacity: .92; }
.brand-desc--light { color: rgba(255,255,255,.9); }
.link-arrow--light { color: #fff; }
.link-arrow--light::after,
.link-arrow--light:hover::after {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%23B8865A'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, rgba(255,255,255,.7), rgba(255,255,255,.7)) left center / 56px 1px no-repeat;
}

/* =========================================================
   FACTORY
   ========================================================= */
.section--factory { background: var(--sumi); color: #fff; }
.section--factory .section-title { color: #fff; }
.section--factory .bg-letter { color: rgba(255,255,255,.045); }
.factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.factory-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.factory-media::before { content: ""; position: absolute; bottom: -22px; right: -22px; width: 55%; height: 45%; border: 1px solid rgba(184,134,90,.5); border-radius: var(--radius-lg); z-index: 2; }
.factory-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-soft); }
.factory-media:hover img { transform: scale(1.05); }
.factory-text .section-eyebrow { color: var(--kiwa); }
.factory-body { color: rgba(255,255,255,.82); font-size: 14.5px; line-height: 2.15; margin: var(--s4) 0 var(--s3); }
.section--factory .link-arrow { color: #fff; }
.section--factory .link-arrow::after,
.section--factory .link-arrow:hover::after {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%23B8865A'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, rgba(255,255,255,.6), rgba(255,255,255,.6)) left center / 56px 1px no-repeat;
}

/* =========================================================
   GLOBAL
   ========================================================= */
.section--global { background: var(--kinari); }
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }
.country {
  background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--s5) var(--s3); text-align: center;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
}
.country:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(43,32,24,.12); }
.country-en { display: block; font-family: var(--font-en-serif); font-style: italic; font-size: 22px; color: var(--cacao); }
.country-ja { display: block; font-size: 12.5px; letter-spacing: .08em; color: var(--hai); margin-top: 4px; }
.country.is-active { border-color: rgba(184,134,90,.45); }
.country.is-active .country-en { color: var(--kiwa-dark); }
.country.is-next { border-style: dashed; opacity: .7; }
.country.is-next .country-en { color: var(--hai); }

/* =========================================================
   LOCATIONS
   ========================================================= */
.section--locations { background: var(--shiroyu); }
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.loc-card { position: relative; background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card); padding: var(--s6) var(--s4) var(--s5); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(43,32,24,.12); }
.loc-no { font-family: var(--font-en-serif); font-style: italic; font-size: 18px; color: var(--kiwa); }
.loc-city { font-family: var(--font-en-serif); font-weight: 500; font-size: 24px; letter-spacing: .05em; color: var(--sumi); margin: 6px 0 var(--s3); }
.loc-city::after { content: ""; display: block; width: 28px; height: 2px; background: var(--kiwa); margin-top: var(--s3); }
.loc-meta { font-size: 13px; line-height: 1.95; color: var(--hai); }

/* =========================================================
   MVV / PHILOSOPHY
   ========================================================= */
.section--mvv { background: linear-gradient(180deg, var(--shiroyu), var(--kinari)); overflow: clip; }
.mvv-layout { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: var(--s7) var(--s9); align-items: start; }
.mvv-aside { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.mvv-main { min-width: 0; }
.mvv-label { font-family: var(--font-en-serif); font-style: italic; font-size: 18px; letter-spacing: .06em; color: var(--kiwa); margin-bottom: var(--s2); }
.mission-block { text-align: left; }
.mission-block .mvv-label { font-size: 22px; }
.mission-copy { font-family: var(--font-jp-serif); font-weight: 700; font-size: clamp(34px, 3.4vw, 56px); letter-spacing: .08em; color: var(--sumi); line-height: 1.4; margin-top: var(--s2); }
.vision-block { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s7); text-align: center; margin: 0 0 var(--s8); box-shadow: 0 20px 50px rgba(43,32,24,.07); position: relative; }
.vision-block::before { content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--kiwa); border-radius: 2px; }
.vision-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(22px, 3vw, 34px); color: var(--cacao); line-height: 1.5; margin-bottom: var(--s4); }
.vision-title span { display: block; font-size: .68em; color: var(--sumi); margin-top: 6px; }
.vision-body { font-size: 15px; line-height: 2.3; color: var(--sumi-soft); }

.values-head { text-align: center; margin-bottom: var(--s5); }
.values-note { color: var(--hai); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); margin-bottom: var(--s8); }
.value-card { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card); padding: var(--s6) var(--s5); position: relative; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); overflow: hidden; }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(var(--kiwa), var(--berry)); border-radius: var(--radius-card) 0 0 var(--radius-card); }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(43,32,24,.12); }
.value-c { font-family: var(--font-en-serif); font-style: italic; font-size: 30px; color: var(--kiwa); }
.value-name { font-family: var(--font-jp-serif); font-weight: 600; font-size: 26px; color: var(--sumi); margin-top: 4px; }
.value-sub { font-family: var(--font-jp-serif); font-size: 15px; color: var(--cacao); margin: 6px 0 var(--s3); }
.value-desc { font-size: 13.5px; line-height: 2.05; color: var(--sumi-soft); }

/* 経営7ヶ条 */
.creed { background: var(--cacao); color: #fff; border-radius: var(--radius-lg); padding: var(--s7); margin: 0; box-shadow: 0 24px 60px rgba(43,32,24,.2); }
.creed-head { text-align: center; margin-bottom: var(--s5); }
.creed-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: 22px; letter-spacing: .1em; }
.creed-note { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 6px; }
.creed-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s6); }
.creed-list li { display: flex; gap: 14px; padding: var(--s3) 0; border-top: 1px solid rgba(255,255,255,.14); }
.creed-no { font-family: var(--font-en-serif); font-style: italic; font-size: 22px; color: var(--kiwa); flex-shrink: 0; line-height: 1.3; }
.creed-body b { display: block; font-family: var(--font-jp-serif); font-weight: 500; font-size: 15px; letter-spacing: .04em; margin-bottom: 4px; }
.creed-body span { font-size: 12.5px; line-height: 1.85; color: rgba(255,255,255,.72); }

.mvv-tagline { text-align: center; font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(22px, 3.5vw, 36px); letter-spacing: .14em; color: var(--kiwa-dark); margin-top: var(--s8); }

/* =========================================================
   TOP MESSAGE
   ========================================================= */
.section--message { background: var(--shiroyu); }
.message-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--s8); align-items: center; }
.message-text { max-width: 820px; }
.message-lead br { display: block; }
.portrait-frame { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--kinari-deep), var(--kinari)); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 24px 56px rgba(43,32,24,.14); overflow: hidden; }
.portrait-frame::after { content: ""; position: absolute; bottom: -20px; left: -20px; width: 50%; height: 40%; border: 1px solid var(--kiwa); border-radius: var(--radius-card); }
.portrait-mono { font-family: var(--font-en-serif); font-style: italic; font-size: 84px; color: var(--cacao); opacity: .35; }
.portrait-cap { font-size: 12px; letter-spacing: .2em; color: var(--hai); margin-top: 8px; }
.portrait-name { font-family: var(--font-jp-serif); font-size: 14px; letter-spacing: .08em; color: var(--sumi); margin-top: var(--s3); text-align: center; }
.message-lead { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(22px, 3.2vw, 34px); line-height: 1.7; color: var(--sumi); margin: var(--s2) 0 var(--s5); letter-spacing: .03em; }
.message-body { font-size: 14.5px; line-height: 2.2; color: var(--sumi-soft); margin-bottom: var(--s3); }
.message-sign { font-family: var(--font-jp-serif); font-size: 15px; letter-spacing: .1em; color: var(--sumi); margin-top: var(--s4); }

/* =========================================================
   BUSINESS
   ========================================================= */
.section--business { background: linear-gradient(180deg, var(--shiroyu), var(--kinari)); }
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.biz-card { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card); padding: var(--s6) var(--s5) var(--s5); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); display: flex; flex-direction: column; }
.biz-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(43,32,24,.14); }
.biz-tag { display: inline-block; align-self: flex-start; font-family: var(--font-en-sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--kiwa-dark); background: var(--kami); border: 1px solid var(--kiwa); border-radius: 0 var(--radius-full) var(--radius-full) var(--radius-full); padding: 5px 15px; margin-bottom: var(--s4); }
.biz-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: 22px; color: var(--sumi); line-height: 1.5; margin-bottom: var(--s3); }
.biz-desc { font-size: 13.5px; line-height: 2.05; color: var(--sumi-soft); margin-bottom: var(--s4); flex: 1; }

/* =========================================================
   RECRUIT
   ========================================================= */
.section--recruit { padding: 0; }
.recruit-inner { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; }
.recruit-bg { position: absolute; inset: -10% 0 0; z-index: 0; background: url("../img/concept-4.jpg") center/cover no-repeat; will-change: transform; }
.recruit-tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(43,32,24,.78), rgba(107,74,47,.62)); }
.recruit-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 680px; padding: var(--s8) var(--container-pad); }
.recruit-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(26px, 4vw, 42px); letter-spacing: .06em; margin-bottom: var(--s4); }
.recruit-desc { color: rgba(255,255,255,.88); font-size: 14.5px; line-height: 2.1; margin-bottom: var(--s6); }

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact { background: var(--shiroyu); }
.contact-card { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-sub { color: var(--hai); margin: var(--s4) 0 var(--s6); font-size: 14.5px; }
.contact-actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* =========================================================
   NEWS (bottom)
   ========================================================= */
.section--news { background: var(--kinari); padding-bottom: var(--s9); }
.news-list { border-top: 1px solid var(--line); }
.news-row { border-bottom: 1px solid var(--line); }
.news-row a { display: grid; grid-template-columns: 120px 110px 1fr 44px; align-items: center; gap: var(--s3); padding: var(--s4) var(--s2); transition: background .3s, padding-left .3s; }
.news-row a:hover { background: rgba(255,255,255,.5); padding-left: var(--s4); }
.news-date { font-family: var(--font-en-sans); font-size: 13px; color: var(--hai); letter-spacing: .04em; }
.news-cat { justify-self: start; font-family: var(--font-en-sans); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; padding: 4px 13px; border-radius: 0 var(--radius-full) var(--radius-full) var(--radius-full); color: #fff; }
.news-cat--release { background: var(--berry); }
.news-cat--store { background: var(--kiwa); }
.news-cat--press { background: var(--leaf); }
.news-cat--company { background: var(--cacao); }
.news-title { font-size: 14.5px; color: var(--sumi); line-height: 1.7; }
.news-arrow { justify-self: end; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); position: relative; transition: border-color .3s, background .3s; }
.news-arrow::after { content: ""; position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; border-top: 1.4px solid var(--cacao); border-right: 1.4px solid var(--cacao); transform: translate(-65%,-50%) rotate(45deg); }
.news-row a:hover .news-arrow { background: var(--kiwa); border-color: var(--kiwa); }
.news-row a:hover .news-arrow::after { border-color: #fff; }
.news-more { margin-top: var(--s6); text-align: center; }
.news-more .link-arrow { justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--sumi); color: rgba(255,255,255,.7); padding: var(--s8) 0 var(--s4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s6); }
.footer-logo { font-family: var(--font-en-serif); font-style: italic; font-size: 30px; letter-spacing: .12em; color: #fff; }
.footer-logo-sub { font-family: var(--font-en-sans); font-size: 10px; letter-spacing: .3em; color: var(--kiwa); margin-left: 8px; }
.footer-tag { margin-top: var(--s3); font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.55); }
.footer-col h4 { font-family: var(--font-en-serif); font-style: italic; font-size: 17px; color: var(--kiwa); margin-bottom: var(--s3); font-weight: 500; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--container); margin: var(--s7) auto 0; padding: var(--s4) var(--container-pad) 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { font-family: var(--font-en-sans); font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.45); }

/* to-top */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; background: var(--cacao); box-shadow: 0 8px 22px rgba(43,32,24,.3); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .4s, transform .4s, background .3s; }
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--kiwa); }
.to-top span { position: absolute; top: 53%; left: 50%; width: 9px; height: 9px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: translate(-50%,-50%) rotate(-45deg); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  :root { --container-pad: 24px; }
  .section { padding: var(--s8) 0; }
  .global-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .header-inner { gap: 0; }
  .concept-grid, .factory-grid, .message-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .mvv-layout { grid-template-columns: 1fr; gap: var(--s5); }
  .mvv-aside { position: static; top: auto; margin-bottom: var(--s4); }
  .factory-grid .factory-media { order: -1; }
  .message-portrait { max-width: 360px; margin: 0 auto; }
  .brand-panel-num { font-size: clamp(70px, 12vw, 140px); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .creed-list { grid-template-columns: 1fr; gap: 0; }
  .concept-mosaic { height: 70vw; max-height: 520px; }
}
@media (max-width: 767px) {
  body { font-size: 14.5px; }
  :root { --container-pad: 20px; --header-h: 64px; }
  .section { padding: var(--s7) 0; }
  .hero-scroll { right: 18px; }
  .values-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .vision-block, .creed { padding: var(--s5); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .footer-brand { grid-column: 1 / -1; }
  .news-row a { grid-template-columns: 1fr 44px; grid-template-areas: "date arrow" "cat arrow" "title title"; row-gap: 6px; padding: var(--s4) var(--s2); }
  .news-date { grid-area: date; }
  .news-cat { grid-area: cat; }
  .news-title { grid-area: title; }
  .news-arrow { grid-area: arrow; align-self: start; }
  .concept-mosaic { height: 96vw; max-height: 480px; }
  .br-sp { display: none; }
  .section-title { line-height: 1.55; }
  .brand-quicknav { flex-direction: column; align-items: flex-start; gap: var(--s2); border-radius: var(--radius-lg); padding: 16px 18px; }
  .qn-items { gap: 8px; }
  .qn-item { background: var(--shiroyu); padding: 8px 16px; }
  .btn { width: 100%; }
  .brand-panel-inner { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .brand-panel-num { order: -1; align-self: flex-end; font-size: clamp(64px, 22vw, 120px); margin-bottom: -8px; }
  .brand-panel-text { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .bg-letter, .hero-slideshow, .mosaic-item, .recruit-bg { transform: none !important; }
  .hero-slide img { transform: none !important; }
}
