@charset "UTF-8";
/* =========================
   Animation system
========================= */
/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity .5s ease .2s, visibility .5s ease .2s;
}
.page-loader__inner {
  text-align: center;
  width: min(280px, 60%);
}
.page-loader__logo {
  width: 180px;
  margin: 0 auto 24px;
  animation: walyo-loader-pulse 1.6s ease-in-out infinite;
}
.page-loader__bar {
  height: 2px;
  width: 100%;
  background: rgba(163, 200, 52, .15);
  overflow: hidden;
  border-radius: 2px;
}
.page-loader__bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: #a3c834;
  animation: walyo-loader-bar 1.4s ease-in-out infinite;
}
@keyframes walyo-loader-pulse {
  0%, 100% { opacity: .4; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes walyo-loader-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}
body.is-loading {
  overflow: hidden;
}

/* Scroll reveal — subtle fade-up. JS adds .is-visible via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 { transition-delay: .04s; }
.reveal--d2 { transition-delay: .14s; }
.reveal--d3 { transition-delay: .24s; }
.reveal--d4 { transition-delay: .34s; }

/* Page intro fade-in. site-header opacity-only so it doesn't create a containing block (would break drawer) */
body.is-loaded .site-header { animation: walyo-fade 1s cubic-bezier(.22, .61, .36, 1) both; }
body.is-loaded .hero { animation: walyo-intro 1s cubic-bezier(.22, .61, .36, 1) .15s both; }
@keyframes walyo-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes walyo-intro {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SERVICE: number subtly scales up when in view */
.service .service__num {
  opacity: 0;
  transform: translateY(8px) scale(.94);
  transition: opacity .8s ease .12s, transform .8s cubic-bezier(.22, .61, .36, 1) .12s;
}
.service.is-visible .service__num {
  opacity: 1;
  transform: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible,
  .page-loader, .page-loader__logo, .page-loader__bar span,
  body.is-loaded .site-header, body.is-loaded .hero {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/*
Theme Name: Walyo
Theme URI: https://futsu-design.jp/
Author: 株式会社FUTSU
Author URI: https://futsu-design.jp/
Description: 和稜株式会社オリジナルテーマ。フルスクラッチ／レスポンシブ／Contact Form 7対応。
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: walyo
*/

/* =========================
   Reset / Base
========================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Serif JP", "Times New Roman", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  line-height: 1.95;
  color: #231815;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .7; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

:root {
  --color-accent: #8dc21f;
  --color-accent-dark: #76a614;
  --color-text: #231815;
  --color-muted: #6b6b6b;
  --color-bg-soft: #eff7f0;
  --color-bg-mission: #eff7f0;
  --color-line: #231815;
  --container: 1320px;
  --container-wide: 1600px;
  --container-narrow: 960px;
  --serif: "Goudy Old Style", "goudy old style", "Sorts Mill Goudy", "Times New Roman", "游明朝", "Yu Mincho", "YuMincho", serif;
  --serif-jp: "Noto Serif JP", "Times New Roman", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* =========================
   Layout helpers
========================= */
.container { width: min(92%, var(--container)); margin: 0 auto; }
.container-wide { width: min(94%, var(--container-wide)); margin: 0 auto; }
.container-narrow { width: min(92%, var(--container-narrow)); margin: 0 auto; }
.section { padding: 120px 0px 50px 0px; }
.section--soft { background: var(--color-bg-soft); }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.outline__grid .section-head { margin-bottom: 0; }
.section-head__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: .04em;
  font-weight: 500;
  line-height: 1.1;
}
.section-head__sub {
  margin-top: 0;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--color-muted);
}

/* =========================
   Header
========================= */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 31px 50px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo img { height: 32px; width: auto; }
.global-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.global-nav a {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
}
.global-nav a:hover { opacity: 1; }
.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 50%;
  transition: background .3s ease;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  margin-left: -11px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), top .45s cubic-bezier(.22,.61,.36,1), opacity .25s ease, background .3s ease, width .4s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; width: 16px; margin-left: -8px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle:hover span:nth-child(2) { width: 22px; margin-left: -11px; }
.nav-toggle.is-open { background: rgba(141, 194, 31, .08); }
.nav-toggle.is-open span { background: var(--color-accent-dark); }
.nav-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Page header (sub pages) */
.page-header {
  padding: 200px 0 120px;
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.page-header__title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
}

/* =========================
   Hero (TOP)
========================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  padding: 160px 0 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .5;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .35);
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.hero__logo { max-width: 300px; margin: 0 auto; transform: translateX(-12%); }
.hero__logo img { display: block; margin: 0 auto; width: 100%; height: auto; }
.hero__copy {
  margin-top: 28px;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.4;
  color: var(--color-accent-dark);
  font-family: var(--serif-jp);
  font-weight: 400;
  text-align: center;
}

/* =========================
   Mission
========================= */
.mission {
  background: var(--color-bg-mission);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}
.mission__body {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .04em;
  color: #231815;
}
.mission__body p { margin-bottom: 1.6em; }
.mission__body p:last-child { margin-bottom: 0; }

/* =========================
   Strengths
========================= */
.strengths {
  position: relative;
  background: url(assets/img/strengths-bg.jpg) center/cover no-repeat, #d6f4d4;
  padding: 140px 0 160px;
}
.strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .55);
  pointer-events: none;
}
.strengths > .container { position: relative; z-index: 1; }
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.strength-card {
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
}
.strength-card__img {
  background: #fff;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.strength-card__img img {
  max-height: 76%;
  max-width: 60%;
  object-fit: contain;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.strength-card:hover .strength-card__img img {
  transform: scale(1.06);
}
.strength-card__title {
  font-family: var(--serif-jp);
  font-size: clamp(56px, 6.6vw, 70px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  margin-top: -.55em;
  margin-bottom: 28px;
  color: #231815;
  text-align: center;
}
.strength-card__desc {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .04em;
  color: #231815;
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

/* =========================
   Service
========================= */
.services { background: #fff; padding: 120px 0; }
.services > .container { width: min(94%, var(--container-wide)); }
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 0;
}
.service:last-child { margin-bottom: 0; }
.service--reverse .service__img { order: 2; }
.service__img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}
.service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}
.service:hover .service__img img {
  transform: scale(1.05);
}
.service__body { text-align: center; padding: 0 16px; }
.service__num {
  font-family: var(--serif);
  font-size: 72px;
  letter-spacing: .04em;
  color: var(--color-accent);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1;
}
.service__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 24px;
  color: #231815;
}
.service__desc {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .04em;
  color: #231815;
}

/* =========================
   News
========================= */
.news { background: var(--color-bg-soft); }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.news-card {
  background: transparent;
  display: block;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
}
a.news-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}
a.news-card:hover .news-card__title {
  color: var(--color-accent-dark);
}
.news-card__title {
  transition: color .3s ease;
}
.news-card__date {
  font-family: var(--serif);
  font-size: 14px;
  color: #231815;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.news-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: #231815;
}
.news-card__excerpt {
  font-size: 13px;
  color: #444;
  line-height: 1.9;
  letter-spacing: .03em;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__more {
  display: inline-block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .28em;
  padding-bottom: 4px;
  border-bottom: 1px solid #231815;
  color: #231815;
}
.news-list { display: grid; gap: 32px; }
.news-list .news-card { border-bottom: 1px solid var(--color-line); padding-bottom: 24px; }

/* =========================
   Contact
========================= */
.contact { background: #fff; padding: 120px 0 160px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.contact__info {
  padding-top: 8px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .08em;
  color: #231815;
}
.contact__info p { margin-bottom: 8px; }

/* CF7 styling */
.wpcf7-form { display: grid; gap: 24px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #231815;
  background: #fff;
  padding: 18px 20px;
  font: inherit;
  font-family: var(--serif-jp);
  border-radius: 0;
  color: var(--color-text);
  letter-spacing: .04em;
}
.wpcf7-form textarea { min-height: 200px; resize: vertical; }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-dark);
}
.wpcf7-form label { font-size: 13px; color: #231815; letter-spacing: .08em; }
.contact__interest-label {
  font-size: 13px;
  color: #231815;
  letter-spacing: .08em;
  margin-bottom: 8px;
  display: block;
}
.wpcf7-checkbox .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 28px 4px 0;
  font-size: 14px;
  letter-spacing: .04em;
}
.contact__submit-wrap { text-align: center; margin-top: 16px; }
.wpcf7-submit {
  background: var(--color-accent) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 18px 88px !important;
  font-size: 14px !important;
  letter-spacing: .6em;
  cursor: pointer;
  border-radius: 0;
  text-indent: .3em;
  width: auto !important;
  display: inline-block !important;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease !important;
}
.wpcf7-submit:hover {
  background: var(--color-accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(141, 194, 31, .35);
}
.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(141, 194, 31, .25);
}
.btn-line {
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-line:hover {
  background: #231815;
  color: #fff;
  opacity: 1;
}

/* =========================
   About — message / member / outline
========================= */
.message__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 88px;
  align-items: start;
}
.message__body { font-size: 14px; line-height: 2.2; letter-spacing: .04em; color: #231815; }
.message__body p { margin-bottom: 1.6em; }
.message__sign { margin-top: 24px; font-size: 16px; letter-spacing: .08em; color: #231815; }
.message__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.member {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  text-align: left;
  align-items: center;
}
.member__photo {
  overflow: hidden;
  width: 240px;
}
.member__photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}
.member:hover .member__photo img {
  transform: scale(1.08);
}
.member__role { font-size: 13px; color: #231815; letter-spacing: .12em; }
.member__name-ja { font-size: 18px; font-weight: 600; margin: 0 0 8px; letter-spacing: .12em; color: #231815; }
.member__name-en { font-family: var(--serif); font-size: 28px; letter-spacing: 0; color: #6b6b6b; font-weight: 500; }

.outline__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.7fr;
  gap: 32px;
  align-items: start;
}
.outline__heading { text-align: left; }
.outline__heading .section-head__title { text-align: left; }
.outline__heading .section-head__sub { text-align: left; }
.outline-table { border-collapse: collapse; width: 100%; }
.outline-table th, .outline-table td {
  border: 0;
  border-bottom: 1px solid #231815;
  padding: 22px 12px;
  font-size: 15px;
  background: transparent;
  letter-spacing: .04em;
  color: #231815;
}
.outline-table tr:first-child th,
.outline-table tr:first-child td { border-top: 1px solid #231815; }
.outline-table th {
  width: 140px;
  font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  white-space: nowrap;
  background: #ededed;
}
.outline__logo {
  text-align: center;
  padding: 0;
  align-self: center;
}
.outline__logo img { max-width: 180px; margin: 0 auto; }

/* =========================
   Single (news detail)
========================= */
.single-news { padding: 160px 0 96px; }
.single-news__date { font-size: 13px; color: var(--color-muted); letter-spacing: .08em; }
.single-news__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin: 8px 0 32px;
}
.single-news__body { font-size: 15px; line-height: 2.1; }
.single-news__body p { margin-bottom: 1.4em; }
.single-news__back {
  margin-top: 56px;
  text-align: center;
}
.btn-line {
  display: inline-block;
  border: 1px solid #333;
  padding: 12px 36px;
  font-size: 12px;
  letter-spacing: .2em;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: var(--color-bg-mission);
  padding: 72px 0 40px;
  text-align: center;
}
.site-footer__logo img { max-width: 170px; margin: 0 auto 28px; }
.footer-nav ul {
  display: inline-flex;
  gap: 40px;
}
.footer-nav a { font-family: var(--serif); font-size: 13px; letter-spacing: .2em; color: #231815; }
.site-footer__copy {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 12px;
  color: #6b6b6b;
  letter-spacing: .12em;
}

/* =========================
   Responsive — Tablet
========================= */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .mission__grid,
  .news__grid,
  .contact__grid,
  .message__grid,
  .outline__grid { grid-template-columns: 1fr; gap: 40px; }
  .mission__grid { gap: 20px; }
  .strengths__grid { grid-template-columns: 1fr; gap: 56px; }
  .members { grid-template-columns: 1fr; gap: 24px; }

  /* SP: テキスト先 → 写真の順 / サービス間の余白を確保 */
  .service {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 72px;
  }
  .service:last-child { margin-bottom: 0; }
  .service__body { order: 1; }
  .service__img,
  .service--reverse .service__img { order: 2; }
  .services > .container { width: min(92%, var(--container)); }
  .services { padding: 80px 0; }
  .strength-card__img { height: 220px; }
  .strength-card__title { font-size: clamp(56px, 16vw, 96px); }
  .strength-card__desc { padding: 0 8px; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-head__title { font-size: clamp(40px, 9vw, 64px); }

  /* Hero */
  .hero { min-height: 100vh; padding: 120px 0 56px; }
  .hero__logo { max-width: 56%; transform: translateX(-4%); }
  .hero__copy {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .12em;
  }

  /* Header */
  .site-header { padding: 18px 20px; }
  .site-logo img { height: 28px; }

  /* Sub-page header */
  .page-header { padding: 140px 0 64px; }
  .page-header__title { font-size: clamp(56px, 14vw, 96px); }

  /* Outline */
  .outline__grid { text-align: center; gap: 32px; }
  .outline__heading .section-head__title,
  .outline__heading .section-head__sub { text-align: center; }
  .outline-table th { width: 96px; }

  /* Member */
  .member { grid-template-columns: 180px 1fr; gap: 20px; }
  .member__photo { width: 180px; }
  .member__name-ja { font-size: 17px; }
  .member__name-en { font-size: 16px; }

  /* Mission */
  .mission__body { font-size: 15px; line-height: 2; }

  /* Strengths */
  .strengths { padding: 96px 0 110px; }

  /* News */
  .news__grid { gap: 36px; }

  /* Contact */
  .contact { padding: 80px 0 100px; }

  /* Footer */
  .site-footer { padding: 56px 0 32px; }
  .footer-nav ul { gap: 24px; }

  /* Global nav (mobile menu overlay) */
  .global-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s cubic-bezier(.22,.61,.36,1), visibility .5s;
    z-index: 55;
    padding: 96px 24px 48px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .global-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .global-nav li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1);
  }
  .global-nav.is-open li { opacity: 1; transform: none; }
  .global-nav.is-open li:nth-child(1) { transition-delay: .14s; }
  .global-nav.is-open li:nth-child(2) { transition-delay: .2s; }
  .global-nav.is-open li:nth-child(3) { transition-delay: .26s; }
  .global-nav.is-open li:nth-child(4) { transition-delay: .32s; }
  .global-nav a {
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: .32em;
    text-indent: .32em;
    padding: 22px 0;
    text-align: center;
    border-bottom: 1px solid rgba(35, 24, 21, .08);
    color: var(--color-text);
  }
  .global-nav li:last-child a { border-bottom: 0; }
  .global-nav a::after { display: none; }

  /* Hamburger toggle */
  .nav-toggle { display: inline-block; z-index: 60; }
}

/* =========================
   Responsive — Smartphone
========================= */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero__logo { max-width: 64%; transform: translateX(-5%); }
  .hero__copy { font-size: 24px; letter-spacing: .1em; }
  .strength-card__img { height: 200px; }
  .strength-card__title { font-size: 64px; }
  .strengths { padding: 72px 0 88px; }
  .strengths__grid { gap: 48px; }
  .news__grid { gap: 28px; }
  .member { grid-template-columns: 140px 1fr; gap: 16px; }
  .member__photo { width: 140px; }
  .section-head__title { font-size: clamp(34px, 11vw, 56px); }
  .page-header { padding: 120px 0 48px; }
  .page-header__title { font-size: clamp(48px, 16vw, 80px); }
  .wpcf7-submit { padding: 16px 56px !important; letter-spacing: .5em; }
  .outline-table th, .outline-table td { padding: 16px 8px; font-size: 14px; }
}
