/*
Theme Name: Doripura
Theme URI:
Author:
Description: 株式会社doripura コーポレートサイト
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: doripura
*/


/* ================================================================
   1. DESIGN TOKENS (:root)
   ================================================================
   Source: assets/css/design-tokens.css
   📐 = extracted from reference site (recruit.chiyodakohan.co.jp)
   ⚡ = adjusted for doripura
   ================================================================ */

:root {

  /* --- Colors: Primary --- */
  --color-primary:           #1c2c43; /* 📐 body text / btn bg / footer */
  --color-primary-light:     #3e4f69; /* 📐 hover bg */
  --color-primary-dark:      #111d2e; /* ⚡ deeper variant */

  /* --- Colors: Secondary --- */
  --color-secondary:         #2bb9b0; /* 📐 accent / section bg */
  --color-secondary-dark:    #00867d; /* 📐 deep teal — AA on #fff 4.6:1 ✓ */
  --color-secondary-light:   #d9f2f0; /* 📐 light teal bg */
  --color-secondary-pale:    #eff4f3; /* 📐 palest bg */

  /* --- Colors: Accent --- */
  --color-accent:            #ff5f00; /* 📐 orange — limited use */
  --color-accent-teal:       #46c3bb; /* 📐 teal hover */

  /* --- Colors: Neutral --- */
  --color-white:             #ffffff;
  --color-bg:                #ffffff;
  --color-bg-gray:           #f0f0f0; /* 📐 inactive bg */
  --color-dark-text:         #222;    /* 📐 secondary text */
  --color-gray-700:          #707070; /* 📐 sub-text */
  --color-gray-400:          #aaa;
  --color-gray-300:          #ccc;    /* 📐 placeholder */
  --color-gray-200:          #ddd;    /* 📐 border */
  --color-border:            #ddd;

  /* --- Colors: State --- */
  --color-hover-opacity:     0.7;     /* 📐 btn/image hover */
  --color-focus-ring:        rgba(43, 185, 176, 0.4); /* ⚡ */
  --color-error:             #c0392b; /* ⚡ AA on #fff 5.1:1 ✓ */
  --color-success:           #1a7d47; /* ⚡ AA on #fff 4.8:1 ✓ */

  /* --- Colors: Overlay --- */
  --color-overlay-header:    rgba(255, 255, 255, 0.8);  /* 📐 */
  --color-overlay-light:     rgba(255, 255, 255, 0.2);  /* 📐 */
  --color-overlay-dark-50:   rgba(28, 44, 67, 0.5);     /* ⚡ hero */
  --color-overlay-dark-85:   rgba(28, 44, 67, 0.85);    /* 📐 */
  --color-overlay-dark-90:   rgba(28, 44, 67, 0.9);     /* 📐 modal */

  /* --- Typography: Family --- */
  --font-family-ja:  'Noto Sans JP', sans-serif;
  --font-family-en:  'Inter', sans-serif;       /* ⚡ ref: Poppins → Inter */
  --font-feature:    "palt";                    /* 📐 proportional alternates */

  /* --- Typography: Weight --- */
  --font-weight-normal:  400;
  --font-weight-medium:  500;
  --font-weight-bold:    700;

  /* --- Typography: Size --- */
  --font-size-hero:    4.8rem;  /* 📐 48px — hero catchcopy */
  --font-size-display: 7rem;    /* 📐 70px — large numbers */
  --font-size-h1:      3.6rem;  /* 📐 36px — section heading */
  --font-size-h2:      2.8rem;  /* 📐 28px — sub heading */
  --font-size-h3:      2.2rem;  /* 📐 22px — card heading */
  --font-size-h4:      2rem;    /* 📐 20px — small heading */
  --font-size-lead:    1.8rem;  /* 📐 18px — lead text */
  --font-size-body:    1.6rem;  /* 📐 16px — body default */
  --font-size-small:   1.4rem;  /* 📐 14px — btn / label */
  --font-size-xs:      1.2rem;  /* 📐 12px — badge / caption */

  /* --- Typography: Line Height --- */
  --line-height-none:    1;
  --line-height-tight:   1.25;
  --line-height-snug:    1.4;   /* 📐 headings */
  --line-height-normal:  1.5;   /* 📐 body */
  --line-height-relaxed: 1.75;  /* 📐 long text */
  --line-height-loose:   2;

  /* --- Typography: Letter Spacing --- */
  --letter-spacing-none:   0;
  --letter-spacing-tight:  0.02em;  /* 📐 en labels */
  --letter-spacing-normal: 0.06em;  /* 📐 badges */
  --letter-spacing-wide:   0.12em;  /* 📐 ja headings */

  /* --- Spacing (4px-based scale) --- */
  --space-1:   0.4rem;  /*   4px */
  --space-2:   0.8rem;  /*   8px */
  --space-3:   1.2rem;  /*  12px */
  --space-4:   1.6rem;  /*  16px */
  --space-5:   2.0rem;  /*  20px */
  --space-6:   2.4rem;  /*  24px */
  --space-8:   3.2rem;  /*  32px */
  --space-10:  4.0rem;  /*  40px */
  --space-12:  4.8rem;  /*  48px */
  --space-16:  6.4rem;  /*  64px */
  --space-20:  8.0rem;  /*  80px — 📐 container padding */
  --space-24:  9.6rem;  /*  96px */
  --space-30: 12.0rem;  /* 120px — 📐 section padding */
  --space-40: 16.0rem;  /* 160px */
  --space-50: 20.0rem;  /* 200px */

  /* --- Transitions --- */
  --ease-default: cubic-bezier(0.215, 0.61, 0.355, 1); /* 📐 easeOutCubic */
  --ease-out:     ease-out;
  --duration-fast:   0.3s;  /* 📐 UI (hover, menu) */
  --duration-normal: 0.5s;  /* 📐 content (fade) */
  --duration-slow:   0.7s;  /* 📐 scroll reveal */
  --transition-base:   all var(--duration-fast) var(--ease-default);
  --transition-fade:   opacity var(--duration-normal);
  --transition-scroll: all var(--duration-slow) var(--ease-out);

  /* --- Layout --- */
  --container-max:         1200px; /* ⚡ ref: 1360px */
  --container-max-wide:    1400px; /* ⚡ */
  --container-max-narrow:   800px; /* ⚡ forms */
  --container-padding:       80px; /* 📐 l-inner */
  --container-padding-tab:   40px; /* ⚡ */
  --container-padding-sp: 5.3333vw; /* 📐 20px@375 */

  /* --- Header --- */
  --header-height:     80px;  /* ⚡ ref: 100px */
  --header-height-sp:  60px;  /* ⚡ */

  /* --- Z-index --- */
  --z-base:       1;
  --z-dropdown:  10;
  --z-sticky:   100;
  --z-header:  1000;
  --z-overlay: 1500;
  --z-modal:   2000;

  /* --- Borders --- */
  --radius-none:  0;
  --radius-sm:    4px;    /* ⚡ inputs */
  --radius-md:    8px;    /* ⚡ cards */
  --radius-lg:   16px;    /* ⚡ */
  --radius-pill: 100vh;   /* 📐 badges */
  --border-width: 1px;
  --border-color: var(--color-gray-200);

  /* --- Shadows --- */
  --shadow-sm:    0 1px 3px rgba(0, 0, 0, 0.08);  /* ⚡ */
  --shadow-md:    0 4px 12px rgba(0, 0, 0, 0.1);   /* ⚡ */
  --shadow-lg:    0 8px 24px rgba(0, 0, 0, 0.12);  /* ⚡ */
  --shadow-focus: 0 0 0 3px var(--color-focus-ring);
  --shadow-card-hover: 0 12px 40px rgba(28,44,67,0.15); /* ⚡ modernized */
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);

  /* --- Gradients (⚡ modernization) --- */
  --gradient-hero: linear-gradient(135deg, rgba(28,44,67,0.85) 0%, rgba(0,134,125,0.7) 100%);
  --gradient-section: linear-gradient(180deg, var(--color-secondary-pale) 0%, var(--color-white) 100%);
  --gradient-dark: linear-gradient(135deg, #1c2c43 0%, #111d2e 100%);

  /* --- Animation (⚡ modernization) --- */
  --duration-reveal: 1s;
  --duration-counter: 2s;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- Decorative --- */
  --deco-line-width: 60px;
  --deco-line-color: var(--color-secondary);
}


/* ================================================================
   2. RESET / BASE
   ================================================================
   📐 Based on reference site reset (style.css:1-210)
   ⚡ Modernized as a slim reset for doripura
   ================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box; /* 📐 (style.css:193) */
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px; /* 📐 1rem = 10px (style.css:158) */
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%; /* 📐 (style.css:152) */
}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw; /* 📐 10px@375 (style.css:160) */
  }
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: var(--header-height-sp);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--color-primary);
  font-family: var(--font-family-ja);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  font-feature-settings: var(--font-feature); /* 📐 "palt" */
  background-color: var(--color-bg);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 320px; /* 📐 (style.css:188) */
  }
}

body.is-locked {
  overflow: clip; /* 📐 (style.css:174) — lighter than hidden */
}

/* --- Typography reset --- */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* --- List reset --- */
ol, ul {
  list-style: none; /* 📐 (style.css:144) */
}

/* --- Link reset --- */
a {
  color: inherit;
  text-decoration: none; /* 📐 (style.css:198) */
  transition: var(--transition-base);
}

/* --- Image reset --- */
img {
  display: block;
  max-width: 100%;  /* 📐 (style.css:208) */
  height: auto;     /* 📐 */
  vertical-align: bottom; /* 📐 (style.css:148) */
}

svg {
  display: block;
}

/* --- Media reset --- */
video,
iframe {
  display: block;
  max-width: 100%;
  vertical-align: bottom; /* 📐 (style.css:212) */
}

/* --- Table reset --- */
table {
  border-collapse: collapse; /* 📐 (style.css:140) */
  border-spacing: 0;
}

/* --- Form reset --- */
button,
input,
select,
textarea {
  appearance: none;         /* 📐 (style.css:236-239) */
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;            /* inherits body font-family, size, weight */
  line-height: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* --- Placeholder --- */
::placeholder {
  color: var(--color-gray-300); /* 📐 #ccc (style.css:220) */
}

/* --- Selection --- */
::selection {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

/* --- Reduced motion --- */
/* Note: specificity handled via targeted selectors instead of !important */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-fade-in,
  .js-fade-left,
  .js-fade-right,
  .js-fade-scale,
  .js-scale-reveal,
  .js-text-reveal,
  .btn,
  .btn::before,
  .btn::after,
  .site-header,
  .site-header__hamburger-bars span,
  .site-header__overlay,
  .site-header__drawer,
  .page-top,
  .page-top__icon,
  .section-hero__scroll-line,
  .section-hero__deco,
  .section-heading__en::before,
  .news-card__link,
  .service-card,
  .service-card__icon,
  .service-card__link,
  .member-card__photo,
  .member-card__photo-wrap::after,
  .about-layout__photo img,
  .form-input,
  .form-label,
  .form-checkbox__indicator,
  a,
  a img {
    animation: none;
    transition: none;
  }
}


/* ================================================================
   3. LAYOUT SYSTEM
   ================================================================
   📐 Based on .l-inner / .l-inner-xl / .l-inner-l (style.css:286-320)
   ⚡ Simplified to .container / --wide / --narrow
   ================================================================ */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: clip;
}

.page-main {
  flex: 1 0 auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  max-width: calc(var(--container-max) + var(--container-padding) * 2);
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .container {
    padding-right: var(--container-padding-tab);
    padding-left: var(--container-padding-tab);
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-right: var(--container-padding-sp);
    padding-left: var(--container-padding-sp);
  }
}

.container--wide {
  max-width: calc(var(--container-max-wide) + var(--container-padding) * 2);
}

.container--narrow {
  max-width: calc(var(--container-max-narrow) + var(--container-padding) * 2);
}


/* ================================================================
   4. HEADER (.site-header)
   ================================================================
   📐 Based on .l-header (style.css:389-750)
   - position:fixed, z-index:1000
   - scroll: backdrop-filter:blur(10px) + rgba(255,255,255,0.8)
   - height: 100px (PC) → ⚡ 80px for doripura
   - hamburger menu on SP
   ================================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header); /* 📐 1000 */
  width: 100%;
  height: var(--header-height);
  transition: background-color var(--duration-fast) var(--ease-default),
              backdrop-filter var(--duration-fast) var(--ease-default);
}

/* ⚡ Front page: white text when at top (over hero image) */
.home .site-header:not(.is-scrolled) {
  color: var(--color-white);
}

.home .site-header:not(.is-scrolled) .site-header__logo a {
  color: var(--color-white);
}

.home .site-header:not(.is-scrolled) .site-header__nav a {
  color: var(--color-white);
}

.home .site-header:not(.is-scrolled) .site-header__nav a::after {
  background-color: var(--color-white);
}

.home .site-header:not(.is-scrolled) .site-header__hamburger-bars span {
  background-color: var(--color-white);
}

.site-header.is-scrolled {
  background-color: var(--color-overlay-header); /* 📐 rgba(255,255,255,0.8) */
  -webkit-backdrop-filter: blur(10px);           /* 📐 (style.css:398) */
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 767px) {
  .site-header {
    height: var(--header-height-sp);
  }
}

/* --- Header inner --- */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-10);
  padding-left: var(--space-10);
  max-width: var(--container-max-wide);
  height: 100%;
}

@media screen and (max-width: 767px) {
  .site-header__inner {
    padding-right: var(--container-padding-sp);
    padding-left: var(--container-padding-sp);
  }
}

/* --- Logo --- */
.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo a {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  width: auto;
  height: 28px;
}

@media screen and (max-width: 767px) {
  .site-header__logo img {
    height: 24px;
  }
}

/* --- Navigation (PC) --- */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

@media screen and (max-width: 767px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__nav a {
  position: relative;
  font-family: var(--font-family-en);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
}

/* ⚡ Animated underline from center on hover */
.site-header__nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--duration-fast) var(--ease-default),
              left var(--duration-fast) var(--ease-default);
}

@media (hover: hover) {
  .site-header__nav a:hover::after {
    width: 100%;
    left: 0;
  }
}

/* ⚡ Logo hover scale */
.site-header__logo a {
  transition: transform var(--duration-fast) var(--ease-default);
}

@media (hover: hover) {
  .site-header__logo a:hover {
    transform: scale(1.03);
  }
}

/* --- Hamburger button (SP) --- */
.site-header__hamburger {
  display: none;
  position: relative;
  z-index: calc(var(--z-overlay) + 1);
  width: 44px;
  height: 44px;
}

@media screen and (max-width: 767px) {
  .site-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.site-header__hamburger-bars {
  position: relative;
  width: 22px;
  height: 14px;
}

.site-header__hamburger-bars span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform var(--duration-fast) var(--ease-default),
              opacity var(--duration-fast) var(--ease-default);
}

.site-header__hamburger-bars span:nth-child(1) { top: 0; }
.site-header__hamburger-bars span:nth-child(2) { top: 6px; }
.site-header__hamburger-bars span:nth-child(3) { bottom: 0; }

/* hamburger → cross */
.site-header__hamburger.is-open .site-header__hamburger-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.site-header__hamburger.is-open .site-header__hamburger-bars span:nth-child(2) {
  opacity: 0;
}

.site-header__hamburger.is-open .site-header__hamburger-bars span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

/* --- Drawer overlay --- */
.site-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-overlay);
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay-dark-50);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-fast) var(--ease-default),
              visibility var(--duration-fast) var(--ease-default);
}

.site-header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* --- Drawer menu panel --- */
.site-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 320px;
  height: 100%;
  padding: var(--space-20) var(--space-8);
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform var(--duration-fast) var(--ease-default);
}

.site-header__drawer.is-open {
  transform: translateX(0);
}

/* --- Drawer close button --- */
.site-header__drawer-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-default);
}

@media (hover: hover) {
  .site-header__drawer-close:hover {
    color: var(--color-secondary);
  }
}

.site-header__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  text-align: center;
}

.site-header__drawer-nav a {
  font-family: var(--font-family-en);
  font-size: var(--font-size-lead);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
}


/* ================================================================
   5. FOOTER (.site-footer)
   ================================================================ */

.site-footer {
  padding: var(--space-16) 0 0;
  background: var(--gradient-dark);
  color: var(--color-white);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--color-secondary), transparent) 1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
}

@media screen and (max-width: 767px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.site-footer__col-title {
  font-family: var(--font-family-en);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.site-footer__description {
  margin-top: var(--space-4);
  font-size: var(--font-size-small);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__logo img {
  width: auto;
  height: 24px;
  filter: brightness(0) invert(1);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__address {
  font-style: normal;
  font-size: var(--font-size-small);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__policy-link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--font-size-small);
}

.site-footer__bottom {
  margin-top: var(--space-10);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copyright {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  letter-spacing: var(--letter-spacing-tight);
}

/* --- Page-top button --- */
.page-top {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--duration-fast) var(--ease-default),
              visibility var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default),
              background-color var(--duration-fast) var(--ease-default);
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) {
  .page-top:hover {
    background-color: var(--color-primary-light);
  }

  .page-top:hover .page-top__icon {
    animation: page-top-bounce 0.5s var(--ease-default);
  }
}

@keyframes page-top-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(3px); }
  50% { transform: rotate(-45deg) translateY(-2px); }
}

.page-top__icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(-45deg) translateY(3px);
}

@media screen and (max-width: 767px) {
  .page-top {
    right: var(--container-padding-sp);
    bottom: var(--container-padding-sp);
    width: 40px;
    height: 40px;
  }
}


/* ================================================================
   6. SECTION COMMON
   ================================================================
   📐 Based on reference site section patterns:
   - Uniform 120px padding-top/bottom (business, flow, environment)
   - Section heading: .en (Poppins/Inter) + .jpn (Noto Sans JP)
     from c-ttl-01 (style.css:2120-2170)
   ================================================================ */

.section {
  position: relative;
  padding-top: var(--space-30);    /* 120px */
  padding-bottom: var(--space-30); /* 120px */
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 21.3333vw;   /* 80px@375 */
    padding-bottom: 21.3333vw;
  }
}

/* Offset for fixed header anchor links */
.section[id] {
  scroll-margin-top: var(--header-height);
}

@media screen and (max-width: 767px) {
  .section[id] {
    scroll-margin-top: var(--header-height-sp);
  }
}

/* --- Section heading ---
   📐 c-ttl-01 pattern: .en (font-size:1.6rem, Poppins, 500, 0.02em)
                        + .jpn (font-size:4.8rem→3.6rem for doripura, 500, 0.12em, lh:1.4)
   ⚡ Adapted: Poppins→Inter, sizes scaled for corporate site
*/
.section-heading {
  margin-bottom: var(--space-16); /* 64px — increased for breathing room */
}

@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: var(--space-10); /* 40px */
  }
}

/* ⚡ Section number from data attribute */
.section-heading[data-section-num]::before {
  content: "[" attr(data-section-num) "]";
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-family-en);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-secondary);
}

.section--dark .section-heading[data-section-num]::before,
.section--teal .section-heading[data-section-num]::before {
  color: rgba(255, 255, 255, 0.5);
}

.section-heading__en {
  position: relative;
  display: block;
  padding-left: 72px; /* 60px line + 12px gap */
  font-family: var(--font-family-en);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-none);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-secondary-dark);
}

.section-heading__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.6s var(--ease-out);
}

.is-visible .section-heading__en::before {
  width: var(--deco-line-width, 60px);
}

.section-heading__ja {
  display: block;
  margin-top: var(--space-3); /* 12px — increased spacing */
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-wide);
}

@media screen and (max-width: 1024px) {
  .section-heading__ja {
    font-size: 3.5121951220vw; /* 📐 36px@1024 */
  }
}

@media screen and (max-width: 767px) {
  .section-heading__en {
    padding-left: 52px; /* 40px line + 12px gap on mobile */
    font-size: var(--font-size-xs);
  }

  .is-visible .section-heading__en::before {
    width: 40px;
  }

  .section-heading__ja {
    font-size: 7.4666666667vw; /* 📐 28px@375 */
  }
}

/* Variant: on dark/teal background */
.section--dark .section-heading__en,
.section--teal .section-heading__en {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .section-heading__ja,
.section--teal .section-heading__ja {
  color: var(--color-white);
}


/* ================================================================
   7. BUTTONS
   ================================================================
   📐 Based on .c-btn-01 (style.css:2008-2070)
   - height:64px → ⚡ 56px, bg:#1c2c43, color:#fff
   - hover: opacity:0.7, arrow→star (not used in doripura)
   - ::after arrow → translateX micro-interaction
   ================================================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: 240px;
  height: 56px; /* ⚡ ref: 64px (c-btn-01) */
  padding-right: var(--space-8);
  padding-left: var(--space-8);
  font-size: var(--font-size-small); /* 📐 1.4rem */
  font-weight: var(--font-weight-bold); /* 📐 700 */
  line-height: var(--line-height-normal);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-none); /* 📐 0 — sharp edges */
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition-base);
}

@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    min-width: auto;
    height: 52px;
    font-size: 3.7333333333vw; /* 📐 14px@375 */
  }
}

/* Arrow indicator */
.btn::after {
  content: "→";
  transition: transform var(--duration-fast) var(--ease-default);
}

/* --- Slide-in background --- */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-default);
  z-index: -1;
}

.btn-primary::before {
  background-color: var(--color-primary-light);
}

.btn-secondary::before {
  background-color: var(--color-primary);
}

@keyframes btn-arrow-bounce {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(4px); }
}

/* --- Primary: dark bg, white text --- */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

@media (hover: hover) {
  .btn-primary:hover {
    opacity: 0.85;
  }

  .btn-primary:hover::before {
    transform: scaleX(1);
  }

  .btn-primary:hover::after {
    animation: btn-arrow-bounce 0.5s var(--ease-default);
    transform: translateX(4px);
  }
}

/* --- Secondary: outlined --- */
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (hover: hover) {
  .btn-secondary:hover {
    color: var(--color-white);
  }

  .btn-secondary:hover::before {
    transform: scaleX(1);
  }

  .btn-secondary:hover::after {
    animation: btn-arrow-bounce 0.5s var(--ease-default);
    transform: translateX(4px);
  }
}

/* --- On dark backgrounds --- */
.section--dark .btn-primary,
.section--teal .btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.section--dark .btn-primary::before,
.section--teal .btn-primary::before {
  background-color: rgba(255, 255, 255, 0.15);
}

.section--dark .btn-secondary::before,
.section--teal .btn-secondary::before {
  background-color: var(--color-white);
}

@media (hover: hover) {
  .section--dark .btn-primary:hover,
  .section--teal .btn-primary:hover {
    opacity: 0.85;
  }

  .section--dark .btn-primary:hover::before,
  .section--teal .btn-primary:hover::before,
  .section--dark .btn-secondary:hover::before,
  .section--teal .btn-secondary:hover::before {
    transform: scaleX(1);
  }
}

.section--dark .btn-secondary,
.section--teal .btn-secondary {
  color: var(--color-white);
  border-color: var(--color-white);
}

@media (hover: hover) {
  .section--dark .btn-secondary:hover,
  .section--teal .btn-secondary:hover {
    color: var(--color-primary);
  }
}


/* ================================================================
   8. UTILITIES
   ================================================================ */

/* --- Scroll reveal animation ---
   📐 Based on js-animate (common.js: threshold 0.3, translateY + opacity)
   ⚡ Renamed to js-fade-in, translateY 10px→20px for more drama
*/
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-default);
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay via data-delay attribute */
.js-fade-in[data-delay="1"] { transition-delay: 0.2s; }
.js-fade-in[data-delay="2"] { transition-delay: 0.4s; }
.js-fade-in[data-delay="3"] { transition-delay: 0.6s; }

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
  .js-fade-in,
  .js-fade-left,
  .js-fade-right,
  .js-fade-scale,
  .js-scale-reveal,
  .js-stagger-reveal > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Scroll reveal: left slide --- */
.js-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-default);
}

.js-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Scroll reveal: right slide --- */
.js-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-default);
}

.js-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Scroll reveal: scale up --- */
.js-fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-default);
}

.js-fade-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay for all reveal variants */
.js-fade-left[data-delay="1"],
.js-fade-right[data-delay="1"],
.js-fade-scale[data-delay="1"] { transition-delay: 0.2s; }
.js-fade-left[data-delay="2"],
.js-fade-right[data-delay="2"],
.js-fade-scale[data-delay="2"] { transition-delay: 0.4s; }
.js-fade-left[data-delay="3"],
.js-fade-right[data-delay="3"],
.js-fade-scale[data-delay="3"] { transition-delay: 0.6s; }

/* --- Text alignment --- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* --- Screen reader only --- */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
}


/* ================================================================
   9. SECTION: HERO (.section-hero)
   ================================================================
   📐 Based on .mv (top.css:330-636)
   - Full viewport height with dark overlay over image
   - Catchcopy: large centered text
   - Scroll indicator at bottom

   Adopted from reference:
     ✅ Full-viewport impact (min-height: 100vh)
     ✅ Scroll indicator (.mv__scroll pattern — CSS animation)
     ✅ Large catchcopy typography (--font-size-hero: 4.8rem)
     ✅ z-index layering (image → overlay → text)
   Not adopted:
     ✗ Splide slider (doripura uses static image)
     ✗ Text loop animation (txtloop/txtloop02)
     ✗ screenVideo mix-blend-mode overlay
     ✗ Fisher-Yates slide shuffle
     ✗ Progress bar / play-pause toggle
   ================================================================ */

.section-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* --- Background image --- */
.section-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.section-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ⚡ Gradient overlay — modernized with diagonal teal blend */
.section-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

/* ⚡ Parallax-ready scale */
.section-hero__bg img {
  transform: scale(1.05);
  transition: transform 0s linear;
}

/* --- Content --- */
.section-hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: var(--space-20);
  text-align: center;
  color: var(--color-white);
}

/*
 * Catchcopy font-size table:
 * ┌──────────┬──────────┬────────────────────┐
 * │ Device   │ Value    │ Computed @base     │
 * ├──────────┼──────────┼────────────────────┤
 * │ PC       │ 4.8rem   │ 48px               │
 * │ Tablet   │ 4.6829vw │ ~48px @1024        │
 * │ SP       │ 8.5333vw │ 32px @375          │
 * └──────────┴──────────┴────────────────────┘
 */
.section-hero__catchcopy {
  font-size: var(--font-size-hero); /* 4.8rem = 48px */
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug); /* 1.4 */
  letter-spacing: var(--letter-spacing-wide); /* 0.12em */
}

@media screen and (max-width: 1024px) {
  .section-hero__catchcopy {
    font-size: 4.6829268293vw; /* 📐 48px@1024 */
  }
}

@media screen and (max-width: 767px) {
  .section-hero__catchcopy {
    font-size: 8.5333333333vw; /* ⚡ 32px@375 */
  }
}

.section-hero__subcopy {
  margin-top: var(--space-6); /* 24px */
  font-size: var(--font-size-lead); /* 1.8rem */
  line-height: var(--line-height-relaxed); /* 1.75 */
}

@media screen and (max-width: 767px) {
  .section-hero__subcopy {
    margin-top: var(--space-4);
    font-size: 3.7333333333vw; /* ⚡ 14px@375 */
  }
}

/* ⚡ Hero CTA buttons */
.section-hero__cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
  opacity: 0;
  transform: translateY(10px);
  animation: hero-fade-up 0.6s var(--ease-out) 1.1s forwards;
}

@media screen and (max-width: 767px) {
  .section-hero__cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
  }

  .section-hero__cta .btn {
    min-width: 240px;
    width: auto;
  }
}

/* Ghost button variant for hero */
.btn-ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost::before {
  background-color: rgba(255, 255, 255, 0.15);
}

@media (hover: hover) {
  .btn-ghost:hover {
    border-color: var(--color-white);
  }

  .btn-ghost:hover::before {
    transform: scaleX(1);
  }

  .btn-ghost:hover::after {
    animation: btn-arrow-bounce 0.5s var(--ease-default);
    transform: translateX(4px);
  }
}

/* ⚡ Decorative floating shapes */
.section-hero__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.section-hero__deco--circle {
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(43, 185, 176, 0.3);
  border-radius: var(--radius-pill);
  animation: deco-float 6s ease-in-out infinite;
}

.section-hero__deco--line {
  top: 25%;
  left: 5%;
  width: 80px;
  height: 2px;
  background: rgba(43, 185, 176, 0.4);
  transform: rotate(-30deg);
  animation: deco-float 8s ease-in-out 1s infinite reverse;
}

@keyframes deco-float {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-20px); opacity: 1; }
}

@media screen and (max-width: 767px) {
  .section-hero__deco--circle {
    width: 80px;
    height: 80px;
    right: 5%;
  }

  .section-hero__deco--line {
    width: 50px;
    left: 3%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-hero__deco {
    animation: none;
    opacity: 0.6;
  }

  .section-hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* --- Hero entrance animations --- */
.section-hero__catchcopy {
  clip-path: inset(0 100% 0 0);
  animation: hero-wipe 0.8s var(--ease-out) 0.3s forwards;
}

@keyframes hero-wipe {
  to {
    clip-path: inset(0 0 0 0);
  }
}

.section-hero__subcopy {
  opacity: 0;
  transform: translateY(10px);
  animation: hero-fade-up 0.6s var(--ease-out) 0.9s forwards;
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-hero__scroll {
  opacity: 0;
  animation: hero-fade-up 0.6s var(--ease-out) 1.2s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .section-hero__catchcopy {
    clip-path: none;
    animation: none;
  }

  .section-hero__subcopy,
  .section-hero__scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* --- Scroll indicator ---
   📐 Based on .mv__scroll (top.css:339-398)
   - Positioned bottom-center
   - "Scroll" label + animated vertical line
*/
.section-hero__scroll {
  position: absolute;
  bottom: var(--space-8); /* 32px */
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transform: translateX(-50%);
}

.section-hero__scroll-label {
  font-family: var(--font-family-en);
  font-size: var(--font-size-xs); /* 1.2rem */
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-white);
}

.section-hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background-color: var(--color-white);
  animation: scroll-line 1.8s var(--ease-default) infinite;
}

@keyframes scroll-line {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-hero__scroll-line {
    animation: none;
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .section-hero__scroll {
    bottom: var(--space-5); /* 20px */
  }

  .section-hero__scroll-line {
    height: 30px;
  }
}


/* ================================================================
   10. SECTION: NEWS (.section-news)
   ================================================================
   📐 Grid pattern from .environment__list01 (top.css:3176-3320)
   - 3-column grid (PC) → 1-column list (SP)
   - Card hover: opacity + subtle shift
   - Date typography: Inter, small, gray
   ================================================================ */

.section-news__action {
  margin-top: var(--space-12); /* 48px */
  text-align: center;
}

/* --- News grid --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); /* 24px */
}

@media screen and (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- News card ---
   The <a> is the card root for full-area click.
*/
.news-card {
  border-bottom: var(--border-width) solid var(--color-border);
}

.news-card:first-child {
  border-top: var(--border-width) solid var(--color-border);
}

@media screen and (min-width: 768px) {
  .news-card {
    border-bottom: none;
  }

  .news-card:first-child {
    border-top: none;
  }
}

.news-card__link {
  display: block;
  padding: var(--space-5) 0; /* 20px */
  transition: var(--transition-base);
}

@media screen and (min-width: 768px) {
  .news-card__link {
    padding: var(--space-6); /* 24px */
    border: var(--border-width) solid var(--color-border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    height: 100%;
  }
}

@media (hover: hover) {
  .news-card__link:hover {
    background-color: var(--color-secondary-pale); /* #eff4f3 */
    border-color: var(--color-secondary-light);
    border-left-color: var(--color-secondary);
  }
}

.news-card__link:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-md);
}

/* ⚡ Date badge styling */
.news-card__date {
  display: inline-block;
  padding: 2px 10px;
  font-family: var(--font-family-en);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  border-radius: var(--radius-pill);
}

.news-card__title {
  margin-top: var(--space-3);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
}

@media screen and (max-width: 767px) {
  .news-card__link {
    display: flex;
    align-items: baseline;
    gap: var(--space-4); /* 16px */
  }

  .news-card__date {
    flex-shrink: 0;
  }

  .news-card__title {
    margin-top: 0;
    font-size: var(--font-size-small); /* 1.4rem */
  }
}


/* ================================================================
   11. SECTION: ABOUT (.section-about)
   ================================================================
   📐 Based on .read (top.css:637-830)
   - 2-column layout: photo (left) + text (right)
   - ref .read: leftBox (text) + rightBox (parallax image)
   - ⚡ doripura: flipped — photo left, text right
   - Teal background (--color-secondary-dark for AA contrast)

   Adopted:
     ✅ 2-column flex layout (.read__inner pattern)
     ✅ Generous line-height for body text (1.75)
     ✅ Teal-family section background for visual rhythm
   Not adopted:
     ✗ Parallax scroll image (js-scroll01) — static image
     ✗ Duplicate image technique (.image01 + .image02)
   ================================================================ */

.section-about {
  background-color: var(--color-secondary-dark); /* ⚡ #00867d — AA on #fff: 4.6:1 ✓ */
  color: var(--color-white);
}

/* --- Layout --- */
.about-layout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16); /* 64px */
}

@media screen and (max-width: 1024px) {
  .about-layout {
    gap: var(--space-10); /* 40px */
  }
}

@media screen and (max-width: 767px) {
  .about-layout {
    flex-direction: column;
    gap: var(--space-8); /* 32px */
  }
}

/* --- Photo --- */
.about-layout__photo {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  overflow: visible;
  border-radius: var(--radius-lg);
}

/* ⚡ Decorative frame behind image */
.about-layout__photo::before {
  content: "";
  position: absolute;
  top: var(--space-4);
  left: calc(-1 * var(--space-4));
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.about-layout__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s var(--ease-out) 0.2s;
}

.about-layout__photo.is-visible img {
  clip-path: inset(0 0 0 0);
}

@media screen and (max-width: 1024px) {
  .about-layout__photo {
    width: 260px;
  }
}

@media screen and (max-width: 767px) {
  .about-layout__photo {
    width: 60%;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* --- Text --- */
.about-layout__text {
  flex: 1;
  min-width: 0;
  padding-left: var(--space-8);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 767px) {
  .about-layout__text {
    padding-left: 0;
    border-left: none;
  }
}

.about-layout__title {
  font-family: var(--font-family-en);
  font-size: var(--font-size-small); /* 1.4rem */
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-none);
  letter-spacing: var(--letter-spacing-tight);
  color: rgba(255, 255, 255, 0.7);
}

.about-layout__name {
  display: inline-block;
  margin-top: var(--space-2);
  padding-bottom: var(--space-3);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-wide);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
  .about-layout__name {
    font-size: 6.4vw; /* 📐 24px@375 */
  }
}

.about-layout__body {
  margin-top: var(--space-8); /* 32px */
}

.about-layout__body p {
  font-size: var(--font-size-body); /* 1.6rem */
  line-height: var(--line-height-relaxed); /* 📐 1.75 — .read__inner .leftBox .txt 準拠 */
}

.about-layout__body p + p {
  margin-top: var(--space-5); /* 20px */
}

@media screen and (max-width: 767px) {
  .about-layout__body p {
    font-size: 3.7333333333vw; /* 14px@375 */
  }
}


/* ================================================================
   12. SECTION: SERVICES (.section-services)
   ================================================================
   📐 Based on .business (top.css:850-1200)
   - 2-column card grid
   - Card: border + hover shadow/lift
   - Icon + title + description centered layout

   Adopted:
     ✅ Card-based layout pattern
     ✅ Hover elevation effect
     ✅ Section white background
   Not adopted:
     ✗ Tab UI (TRADING / MANUFACTURING) — 2 services fixed
     ✗ Modal with Swiper slider
     ✗ Background image hover
   ================================================================ */

/* --- Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10); /* 40px */
}

@media screen and (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8); /* 32px */
  }
}

/* --- Card --- */
.service-card {
  position: relative;
  display: block;
  padding: var(--space-10) var(--space-8); /* 40px 32px */
  background-color: var(--color-white);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: box-shadow var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default),
              border-color var(--duration-fast) var(--ease-default);
}

/* ⚡ Decorative card number */
.service-card[data-card-num]::before {
  content: attr(data-card-num);
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-family-en);
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-none);
  color: var(--color-secondary-pale);
  pointer-events: none;
}

@media (hover: hover) {
  .service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: var(--color-secondary);
  }

  .service-card:hover .service-card__icon {
    transform: translateY(-4px) scale(1.05);
  }

  .service-card:hover .service-card__link::after {
    transform: translateX(4px);
  }
}

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin-right: auto;
  margin-bottom: var(--space-6);
  margin-left: auto;
  padding: var(--space-3);
  background-color: var(--color-secondary-pale);
  border-radius: var(--radius-pill);
  transition: transform var(--duration-fast) var(--ease-spring);
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__title {
  font-size: var(--font-size-h3); /* 2.2rem */
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-wide);
}

@media screen and (max-width: 767px) {
  .service-card__title {
    font-size: var(--font-size-h4); /* 2rem */
  }
}

.service-card__description {
  margin-top: var(--space-4); /* 16px */
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-700);
}

/* ⚡ Learn more link */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-family: var(--font-family-en);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary-dark);
  letter-spacing: var(--letter-spacing-tight);
}

.service-card__link::after {
  content: "\2192";
  transition: transform var(--duration-fast) var(--ease-default);
}


/* ================================================================
   13. SECTION: MEMBERS (.section-members)
   ================================================================
   📐 Based on .people (top.css:1680-1900)
   - Light teal background (#d9f2f0)
   - 2-column card grid
   - Card: white bg, photo top, text bottom

   Adopted:
     ✅ Background color (#d9f2f0)
     ✅ Card design (photo + body)
   Not adopted:
     ✗ Swiper slider — 2 members fixed
     ✗ Slide navigation
   ================================================================ */

.section-members {
  background-color: var(--color-secondary-light); /* 📐 #d9f2f0 */
}

/* --- Grid --- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10); /* 40px */
}

@media screen and (max-width: 767px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Card --- */
.member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.member-card__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.member-card__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-secondary);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-default);
  pointer-events: none;
}

@media (hover: hover) {
  .member-card:hover .member-card__photo-wrap::after {
    opacity: 0.15;
  }
}

.member-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-default);
}

@media (hover: hover) {
  .member-card:hover .member-card__photo {
    transform: scale(1.03);
  }
}

.member-card__body {
  padding: var(--space-6) var(--space-6) var(--space-8);
}

/* ⚡ Position badge pill */
.member-card__position {
  display: inline-block;
  padding: 2px 12px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  border-radius: var(--radius-pill);
  line-height: var(--line-height-snug);
}

.member-card__name {
  margin-top: var(--space-2);
  font-size: var(--font-size-h3); /* 2.2rem */
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
}

@media screen and (max-width: 767px) {
  .member-card__name {
    font-size: var(--font-size-h4); /* 2rem */
  }
}

/* ⚡ Decorative quotation mark */
.member-card__message-wrap {
  position: relative;
  margin-top: var(--space-4);
}

.member-card__quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 1;
  color: var(--color-secondary-light);
  position: absolute;
  top: -8px;
  left: -4px;
}

.member-card__message {
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-700);
  padding-left: var(--space-6);
}

/* ⚡ Card hover shadow */
.member-card {
  transition: box-shadow var(--duration-fast) var(--ease-default);
}

@media (hover: hover) {
  .member-card:hover {
    box-shadow: var(--shadow-card-hover);
  }
}


/* ================================================================
   14. SECTION: COMPANY (.section-company)
   ================================================================
   📐 Based on .about__list01 (top.css:2660-2800)
   - dl/dt/dd table layout
   - Top border accent, row dividers
   - PC: dt 200px + dd flex-1 side-by-side
   - SP: stacked vertically
   ================================================================ */

/* ⚡ Background pattern */
.section-company {
  position: relative;
}

.section-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-gray-200) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

/* --- Table --- */
.company-table {
  position: relative;
  width: 100%;
  border-top: 2px solid var(--color-primary);
}

.company-table__row {
  display: flex;
  border-bottom: var(--border-width) solid var(--color-border);
  padding: var(--space-5) var(--space-4);
  transition: background-color var(--duration-fast) var(--ease-default);
}

/* ⚡ Alternating row background */
.company-table__row:nth-child(even) {
  background-color: var(--color-secondary-pale);
}

@media (hover: hover) {
  .company-table__row:hover {
    background-color: var(--color-secondary-light);
  }
}

.company-table__label {
  width: 200px;
  flex-shrink: 0;
  padding-left: var(--space-4);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-body);
  border-left: 3px solid var(--color-secondary);
}

.company-table__value {
  flex: 1;
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

@media screen and (max-width: 767px) {
  .company-table__row {
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-5) var(--space-3);
  }

  .company-table__label {
    width: 100%;
    font-size: var(--font-size-small);
    color: var(--color-secondary-dark);
  }
}


/* ================================================================
   15. SECTION: CONTACT (.section-contact)
   ================================================================
   - Dark background (--color-primary) with white text
   - Centered form (max-width: 800px)
   - Custom form controls with focus states
   ================================================================ */

.section-contact {
  background: var(--gradient-dark);
  color: var(--color-white);
}

/* ⚡ Lead text above form */
.section-contact__lead {
  max-width: var(--container-max-narrow);
  margin: 0 auto var(--space-10);
  font-size: var(--font-size-lead);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-contact__lead {
    font-size: var(--font-size-body);
    margin-bottom: var(--space-8);
  }
}

/* --- Form layout --- */
.contact-form {
  max-width: var(--container-max-narrow); /* 800px */
  margin-right: auto;
  margin-left: auto;
}

/* --- Honeypot (hidden) --- */
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* --- Form group --- */
.form-group {
  margin-bottom: var(--space-6); /* 24px */
}

.form-group--submit {
  margin-top: var(--space-10); /* 40px */
  text-align: center;
}

/* --- Label --- */
.form-label {
  display: block;
  margin-bottom: var(--space-2); /* 8px */
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
}

/* --- Required badge --- */
.form-required {
  display: inline-block;
  margin-left: var(--space-2);
  padding: 1px 8px;
  font-size: var(--font-size-xs); /* 1.2rem */
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  color: var(--color-white);
  background-color: var(--color-error);
  border-radius: var(--radius-sm);
  vertical-align: middle;
}

/* --- Inputs --- */
.form-input {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  color: var(--color-primary);
  background-color: var(--color-white);
  border: var(--border-width) solid var(--color-border);
  border-left: 3px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-image: linear-gradient(var(--color-secondary), var(--color-secondary));
  background-size: 0% 2px;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: border-color var(--duration-fast) var(--ease-default),
              border-left-color var(--duration-fast) var(--ease-default),
              box-shadow var(--duration-fast) var(--ease-default),
              background-size var(--duration-normal) var(--ease-default);
}

.form-input:focus {
  border-color: var(--color-secondary);
  border-left-color: var(--color-secondary);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
  background-size: 100% 2px;
  outline: none;
}

.form-group:has(.form-input:focus) .form-label,
.form-group:has(.form-textarea:focus) .form-label {
  color: var(--color-secondary-dark);
}

.form-label {
  transition: color var(--duration-fast) var(--ease-default);
}

/* --- Select arrow --- */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23707070' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

/* --- Textarea --- */
.form-textarea {
  min-height: 160px;
  resize: vertical;
}

/* --- Checkbox --- */
.form-group--checkbox {
  margin-top: var(--space-8);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3); /* 12px */
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__indicator {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--color-gray-300);
  border-radius: 3px;
  background-color: var(--color-white);
  transition: var(--transition-base);
}

.form-checkbox input:checked + .form-checkbox__indicator {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.form-checkbox input:checked + .form-checkbox__indicator::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
}

.form-checkbox input:focus-visible + .form-checkbox__indicator {
  box-shadow: var(--shadow-focus);
}

.form-checkbox__text {
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
}

.form-checkbox__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) {
  .form-checkbox__text a:hover {
    color: var(--color-secondary-light);
  }
}

/* --- Error state --- */
.form-group.has-error .form-input {
  border-color: var(--color-error);
}

.form-group.has-error .form-input:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.3);
}

.form-error {
  margin-top: var(--space-1); /* 4px */
  font-size: var(--font-size-small);
  color: #f5a8a0; /* light red on dark bg */
}

/* --- Success message --- */
.form-thanks {
  max-width: var(--container-max-narrow);
  margin-right: auto;
  margin-left: auto;
  padding: var(--space-8);
  border-left: 4px solid var(--color-secondary);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.form-thanks__title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
}

.form-thanks__message {
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

/* --- Error message (submission failure) --- */
.form-error-message {
  max-width: var(--container-max-narrow);
  margin-right: auto;
  margin-left: auto;
  padding: var(--space-6);
  border-left: 4px solid var(--color-error);
  background-color: rgba(192, 57, 43, 0.15);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}


/* ================================================================
   16. ARCHIVE / SINGLE / PAGE TEMPLATES
   ================================================================ */

.page-header {
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-12);
  background-color: var(--color-secondary-pale);
}

@media screen and (max-width: 767px) {
  .page-header {
    padding-top: calc(var(--header-height-sp) + var(--space-10));
    padding-bottom: var(--space-8);
  }
}

.page-header__title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-wide);
}

@media screen and (max-width: 767px) {
  .page-header__title {
    font-size: 7.4666666667vw; /* 28px@375 */
  }
}

/* --- Article content --- */
.article-content {
  padding-top: var(--space-16);
  padding-bottom: var(--space-30);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.article-meta__date {
  font-family: var(--font-family-en);
  font-size: var(--font-size-small);
  color: var(--color-gray-700);
}

.article-meta__category {
  display: inline-block;
  padding: 2px 10px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  border-radius: var(--radius-pill);
}

/* --- Prose (the_content) --- */
.prose h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-secondary-light);
}

.prose h3 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
}

.prose p {
  margin-bottom: var(--space-5);
  line-height: var(--line-height-relaxed);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: var(--space-2);
  line-height: var(--line-height-relaxed);
}

.prose a {
  color: var(--color-secondary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) {
  .prose a:hover {
    color: var(--color-secondary);
  }
}

.prose blockquote {
  margin-bottom: var(--space-5);
  padding: var(--space-4) var(--space-6);
  border-left: 4px solid var(--color-secondary-light);
  background-color: var(--color-secondary-pale);
  font-style: italic;
}

.prose img {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
}

.prose table {
  width: 100%;
  margin-bottom: var(--space-5);
  border-top: 2px solid var(--color-primary);
}

.prose th,
.prose td {
  padding: var(--space-3) var(--space-4);
  border-bottom: var(--border-width) solid var(--color-border);
  text-align: left;
}

.prose th {
  font-weight: var(--font-weight-medium);
  background-color: var(--color-secondary-pale);
}

/* --- Post navigation --- */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-10);
  border-top: var(--border-width) solid var(--color-border);
}

.post-nav a {
  color: var(--color-secondary-dark);
  font-size: var(--font-size-small);
}

@media (hover: hover) {
  .post-nav a:hover {
    color: var(--color-secondary);
  }
}

.post-nav__back {
  margin-top: var(--space-10);
  text-align: center;
}

/* --- Archive news list --- */
.archive-news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* --- Pagination --- */
.pagination {
  margin-top: var(--space-16);
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-2);
  font-size: var(--font-size-small);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.pagination .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

@media (hover: hover) {
  .pagination .page-numbers:not(.current):hover {
    background-color: var(--color-secondary-pale);
    border-color: var(--color-secondary-light);
  }
}

/* --- 404 page --- */
.error-404 {
  padding-top: calc(var(--header-height) + var(--space-30));
  padding-bottom: var(--space-30);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .error-404 {
    padding-top: calc(var(--header-height-sp) + var(--space-16));
  }
}

.error-404__code {
  font-family: var(--font-family-en);
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-none);
  color: var(--color-secondary-light);
}

.error-404__title {
  margin-top: var(--space-4);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
}

.error-404__message {
  margin-top: var(--space-4);
  font-size: var(--font-size-body);
  color: var(--color-gray-700);
  line-height: var(--line-height-relaxed);
}

.error-404__action {
  margin-top: var(--space-10);
}


/* ================================================================
   17. FOOTER LINK STYLES
   ================================================================ */

.site-footer__links a {
  position: relative;
  font-size: var(--font-size-small);
  transition: var(--transition-base);
}

/* ⚡ Hover underline animation */
.site-footer__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-secondary-light);
  transition: width var(--duration-fast) var(--ease-default);
}

@media (hover: hover) {
  .site-footer__links a:hover {
    color: var(--color-secondary-light);
  }

  .site-footer__links a:hover::after {
    width: 100%;
  }
}

.site-footer__policy-link {
  position: relative;
}

.site-footer__policy-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-secondary-light);
  transition: width var(--duration-fast) var(--ease-default);
}

@media (hover: hover) {
  .site-footer__policy-link:hover {
    color: var(--color-secondary-light);
  }

  .site-footer__policy-link:hover::after {
    width: 100%;
  }
}


/* ================================================================
   18. NEW ANIMATION UTILITIES (⚡ modernization)
   ================================================================ */

/* --- Text reveal with clip-path --- */
.js-text-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--duration-reveal, 1s) var(--ease-out);
}

.js-text-reveal.is-revealed {
  clip-path: inset(0 0 0 0);
}

/* --- Scale reveal --- */
.js-scale-reveal {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-default);
}

.js-scale-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Stagger children --- */
.js-stagger-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-default);
}

.js-stagger-reveal > .is-stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-text-reveal {
    clip-path: none;
  }

  .js-scale-reveal,
  .js-stagger-reveal > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ================================================================
   19. GLOBAL REFINEMENTS (⚡ modernization)
   ================================================================ */

/* ⚡ Alternate section background texture */
.section-services::before,
.section-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-gray-200) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.2;
  pointer-events: none;
}

/* ⚡ Section gradient transition for members section */
.section-members::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-white));
  pointer-events: none;
}


/* ================================================================
   18. PRINT (placeholder — full print.css loaded via media="print")
   ================================================================ */

@media print {
  .site-header,
  .site-header__hamburger,
  .site-header__drawer,
  .site-header__overlay,
  .section-contact,
  .page-top {
    display: none;
  }

  .section-hero {
    min-height: auto;
  }

  .section-hero__bg::after {
    display: none;
  }

  .js-fade-in,
  .js-fade-left,
  .js-fade-right,
  .js-fade-scale,
  .js-scale-reveal,
  .js-text-reveal,
  .js-stagger-reveal > * {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .about-layout__photo img {
    clip-path: none;
  }

  .section-hero__deco {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
