:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #6b6b6b;
  --color-line: #e5e5e5;
  --color-bg-soft: #f6f5f3;
  --color-accent: #111111;
  --color-accent-invert: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-jp: 'PMingLiU', 'Noto Serif CJK SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
  --nav-h: 76px;
  --container: 1200px;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Max content width (1920), extra space left blank ---------- */
main { max-width: 1920px; margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  height: var(--nav-h);
  max-width: 1920px; margin: 0 auto;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); max-width: 1920px; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; gap: 34px; }
.nav a {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-text); padding: 8px 0; border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a.active { border-bottom-color: var(--color-accent); }

/* ---------- Nav dropdown (Companies) ---------- */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop-toggle {
  font: inherit; background: none; border: 0; cursor: pointer;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-text); padding: 8px 0; border-bottom: 1px solid transparent;
  display: flex; align-items: center; gap: 6px;
}
.nav-drop:hover .nav-drop-toggle, .nav-drop.active .nav-drop-toggle { border-bottom-color: var(--color-accent); }
.nav-drop .caret {
  width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); display: inline-block;
}
.nav-drop .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 190px; background: #fff; border: 1px solid var(--color-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0; display: none; z-index: 60;
}
.nav-drop:hover .dropdown, .nav-drop.open .dropdown { display: block; }
.nav-drop .dropdown a {
  display: block; padding: 10px 22px; font-size: 12.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-muted); border-bottom: 0;
}
.nav-drop .dropdown a:hover { color: var(--color-text); background: var(--color-bg-soft); }

/* ---------- Nav toggle (mobile hamburger) ---------- */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 26px; height: 20px; padding: 0; position: relative; }
.nav-toggle span {
  display: block; position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-text);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--color-line); max-width: 1920px; margin: 0 auto; }
.footer-bottom { padding: 26px 0; color: var(--color-muted); font-size: 12px; text-align: center; }

/* ---------- Typography / sections ---------- */
.section { padding: 88px 0; }
.section--soft { background: var(--color-bg-soft); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.kicker { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 12px; }
.section-head h1, .section-head h2 {
  font-family: var(--font-sans); font-weight: 600; font-size: 44px; line-height: 1.15;
}
.section-head p.lead { margin-top: 18px; color: var(--color-muted); font-size: 16px; }
h1 { font-family: var(--font-sans); font-weight: 600; }
h2 { font-family: var(--font-sans); font-weight: 600; }
h3 { font-family: var(--font-sans); font-weight: 600; font-size: 24px; }
p { font-size: 15px; }

.btn {
  display: inline-block; border: 1px solid var(--color-accent);
  background: var(--color-accent); color: var(--color-accent-invert);
  padding: 13px 34px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.82; }
.btn--ghost { background: transparent; color: var(--color-text); }
.btn--ghost:hover { background: var(--color-text); color: var(--color-bg); }

/* ---------- The Fenix Story · intro + hero banner (P02) ---------- */
.story-intro-inner { padding: 130px 24px 104px; text-align: center; }
.story-intro-text { font-size: clamp(17px, 2vw, 24px); line-height: 1.9; color: var(--color-text); letter-spacing: 0.01em; }
.story-hero-media { width: 100%; max-width: 1200px; margin: 0 auto; }
.story-hero-media img { width: 100%; aspect-ratio: 1518 / 509; object-fit: cover; display: block; }

/* ---------- The Fenix Story · values (P03) ---------- */
.story-values { padding: 48px 0 64px; }
.story-values .value { text-align: center; padding: 58px 0; border-top: 1px solid var(--color-line); }
.story-values .value:first-child { border-top: 0; }
.story-values .value h3 {
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.story-values .value .jp {
  font-family: var(--font-jp); font-size: clamp(34px, 4vw, 52px); line-height: 1.2;
  display: block; margin: 18px 0 26px; color: var(--color-text);
}
.story-values .value p { font-size: 15px; line-height: 1.9; color: var(--color-muted); }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { border-top: 1px solid var(--color-line); padding-top: 18px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--color-muted); font-size: 14px; }
.card .more { display: inline-block; margin-top: 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--color-text); }
.card--img .card-media { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 16px; }
.card--img .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card--img:hover .card-media img { transform: scale(1.04); }

/* ---------- Slider ---------- */
.slider { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.55s ease; }
.slide { flex: 0 0 100%; position: relative; }
.slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
  color: #fff; font-size: 13px; padding: 40px 22px 14px;
}
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25); color: #fff; font-size: 18px; cursor: pointer;
}
.slider-prev { left: 16px; } .slider-next { right: 16px; }
.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.5); cursor: pointer; }
.slider-dots button.active { background: #fff; }

/* ---------- Heritage & Growth ---------- */
.heritage-section { padding: 88px 0 96px; }
.heritage-title { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.15; margin-bottom: 28px; }
.heritage-lead { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.8; color: var(--color-text); }
.heritage-media { margin-top: 56px; }
.heritage-media img { width: 100%; height: auto; display: block; }

/* ---------- News list ---------- */
.news-section { padding: 48px 0 96px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 56px; }
.news-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: center; }
.news-card-media { display: block; overflow: hidden; }
.news-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform 0.5s; }
.news-card:hover .news-card-media img { transform: scale(1.04); }
.news-card h2 { font-size: 20px; line-height: 1.3; margin-bottom: 12px; font-weight: 600; }
.news-card h2 a { color: var(--color-text); }
.news-card h2 a:hover { color: var(--color-muted); }
.news-card p { color: var(--color-muted); font-size: 14px; line-height: 1.8; margin-bottom: 0; }
.news-card .more { font-size: 14px; color: var(--color-muted); border-bottom: 1px solid var(--color-muted); padding-bottom: 1px; white-space: nowrap; }
.news-card .more:hover { color: var(--color-text); border-bottom-color: var(--color-text); }

/* ---------- Brand pages (Companies) ---------- */
.companies-layout { padding-top: 24px; }
.brand-name { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.15; margin-bottom: 30px; }
.brand-intro { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.8; color: var(--color-text); margin-bottom: 20px; }
.brand-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 40px 0 0; }
.brand-gallery img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.brand-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.brand-gallery--3 img { aspect-ratio: 3 / 2; }
.brand-caption { font-size: 12px; line-height: 1.7; color: var(--color-muted); margin-top: 12px; }
.brand-block { padding: 64px 0 0; }
.brand-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: center; }
.brand-grid--flip { grid-template-columns: 3fr 2fr; }
.brand-copy p { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.8; color: var(--color-text); margin-bottom: 20px; }
.brand-copy h2 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.2; margin-bottom: 18px; }
.brand-copy h3 { font-size: 18px; line-height: 1.3; margin: 24px 0 10px; }
.brand-copy ul { list-style: none; margin: 0 0 16px; }
.brand-copy li { font-size: 15px; line-height: 1.9; color: var(--color-muted); padding-left: 18px; position: relative; margin-bottom: 8px; }
.brand-copy li::before { content: '•'; position: absolute; left: 0; color: var(--color-text); }
.brand-media img { width: 100%; height: auto; display: block; }
.brand-cta { font-weight: 600; font-size: 15px; color: var(--color-text); margin-top: 24px; }
.brand-text { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.8; color: var(--color-text); margin-bottom: 20px; }
.brand-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ---------- Contact ---------- */
.contact-section { padding: 88px 0 120px; }
.contact-container { max-width: 760px; }
.contact-title { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.15; text-align: center; margin-bottom: 20px; }
.contact-lead { font-size: 17px; line-height: 1.8; color: var(--color-muted); text-align: center; margin-bottom: 48px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.cta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted); }
.field input, .field textarea {
  border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 13px 14px; font-size: 15px; font-family: inherit; background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-text); }
.form-msg { margin-top: 18px; font-size: 14px; }
.form-msg.ok { color: #1a7f37; } .form-msg.err { color: #c62828; }

/* ---------- News ---------- */
.news-hero-img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; margin-bottom: 36px; }
.article h1 { font-size: clamp(30px, 4vw, 52px); line-height: 1.12; }
.article .meta { color: var(--color-muted); font-size: 13px; margin: 16px 0 32px; }
.article .rich-content { max-width: 760px; }
.rich-content p, .rich-content ul, .rich-content ol, .rich-content blockquote, .rich-content pre { margin: 0 0 20px; }
.rich-content h1, .rich-content h2, .rich-content h3 { margin: 28px 0 12px; font-family: var(--font-serif); }
.rich-content img { margin: 20px 0; }
.rich-content a { border-bottom: 1px solid var(--color-text); }
.rich-content blockquote { border-left: 2px solid var(--color-text); padding-left: 18px; color: var(--color-muted); }

/* ---------- Who We Are ---------- */
.who-intro { padding: 88px 0 40px; }
.who-title { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.15; text-align: center; margin-bottom: 28px; letter-spacing: -0.01em; }
.who-lead { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.8; color: var(--color-text); }
.who-intro .who-lead { margin-top: 8px; }
.who-prose { margin-top: 34px; }
.who-prose p { font-size: 15px; line-height: 1.9; color: var(--color-muted); margin-bottom: 18px; }
.who-prose p:last-child { margin-bottom: 0; }

.who-block { padding: 72px 0; }
.who-block--soft { background: var(--color-bg-soft); }
.who-lead--strong { font-weight: 600; }
.who-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 56px; align-items: center; }
.who-grid--text-left { grid-template-columns: 3fr 2fr; }
.who-media .slide img { aspect-ratio: 16 / 10; }
.who-caption { margin-top: 20px; font-size: 12px; line-height: 1.7; color: var(--color-muted); }
.who-caption strong { font-weight: 600; color: var(--color-text); }
.who-copy h2 { font-size: clamp(22px, 2.6vw, 34px); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.01em; }
.who-copy h3 { font-size: clamp(18px, 2vw, 24px); line-height: 1.25; margin-bottom: 14px; }
.who-copy p { font-size: 15px; line-height: 1.9; color: var(--color-muted); margin-bottom: 16px; }
.who-subhead { margin-top: 34px; }
.who-mission {
  font-family: var(--font-sans); font-weight: 600; font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.5; color: var(--color-text); margin: 38px 0 16px;
}
.who-cta-text { margin-top: 20px; font-weight: 600; font-size: 15px; color: var(--color-text); }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--color-line);
    padding: 12px 24px 20px; gap: 4px; display: none; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-drop { flex-direction: column; align-items: stretch; }
  .nav-drop .dropdown {
    position: static; transform: none; box-shadow: none; border: 0;
    border-left: 1px solid var(--color-line); margin: 2px 0 2px 8px; padding: 0;
  }
  .nav-drop:hover .dropdown { display: none; }
  .nav-drop.open .dropdown { display: block; }
  .nav-drop .dropdown a { padding: 8px 16px; }
  .nav-toggle { display: block; }
  .story-intro-inner { padding: 80px 24px 64px; }
  .story-values { padding: 24px 0 40px; }
  .story-values .value { padding: 44px 0; }
  .who-intro { padding: 64px 0 24px; }
  .who-block { padding: 56px 0; }
  .who-grid { grid-template-columns: 1fr; gap: 28px; }
  .news-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-card { grid-template-columns: 1fr; gap: 16px; }
  .brand-gallery { grid-template-columns: repeat(2, 1fr); }
  .brand-grid, .brand-grid--flip { grid-template-columns: 1fr; gap: 24px; }
  .brand-cols { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 64px 0 80px; }
  .contact-form { grid-template-columns: 1fr; }
}
