/*
Theme Name: TAYWA Life & Business Partners
Theme URI: https://www.taywa-partners.com/
Author: TAYWA Life & Business Partners
Description: TAYWA official site theme
Version: 1.0.0
License: Private
Text Domain: taywa
*/

:root {
--base:    #0C442B;
--mid:     #0F5C3A;
--bright:  #178A51;
--teal:    #0E6B5E;
--teal-lt: #1A9080;
--accent:  #D4A830;
--pale:    #E6F4EC;
--pale2:   #EFF8F3;
--cream:   #F7F5F0;
--white:   #FFFFFF;
--ink:     #111A14;
--ink-mid: #3D5244;
--ink-lt:  #6B8070;
--border:  rgba(12,68,43,0.12);
--border2: rgba(12,68,43,0.22);
--serif-en: 'Cormorant Garamond', serif;
--serif-jp: 'Noto Serif JP', serif;
--sans:     'Noto Sans JP', sans-serif;
--mono:     'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
background: var(--white);
color: var(--ink);
font-weight: 400;
line-height: 1.75;
-webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
/* 
nav {
position: sticky;
top: 0;
z-index: 300;
background: rgba(255,255,255,0.96);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 48px;
height: 68px;
}
*/ 

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name { font-family: var(--serif-en); font-size: 18px; font-weight: 600; letter-spacing: .12em; color: var(--base); line-height: 1; }
.nav-logo-sub { font-size: 9px; letter-spacing: .13em; color: var(--ink-lt); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 12px; letter-spacing: .1em; color: var(--ink-mid); text-decoration: none; transition: color .2s; font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--base); }
.nav-cta { padding: 9px 22px; background: var(--base); color: #fff !important; border-radius: 3px; transition: background .2s !important; }
.nav-cta:hover { background: var(--bright) !important; }

/* ─── ハンバーガー ─── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 400; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
display: none;
position: fixed;
inset: 68px 0 0 0;
background: rgba(255,255,255,0.98);
backdrop-filter: blur(12px);
z-index: 250;
padding: 40px 32px;
flex-direction: column;
opacity: 0;
transform: translateY(-8px);
transition: opacity .25s, transform .25s;
pointer-events: none;
}
.nav-drawer.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drawer a { display: block; font-size: 18px; font-family: var(--serif-jp); font-weight: 500; color: var(--ink); text-decoration: none; padding: 18px 0; border-bottom: 1px solid var(--border); letter-spacing: .08em; transition: color .2s; }
.nav-drawer a:hover { color: var(--base); }
.nav-drawer-cta { margin-top: 28px; padding: 16px 24px; background: var(--base); color: #fff !important; border-radius: 4px; text-align: center; font-size: 14px !important; border-bottom: none !important; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 92vh; display: flex;  align-items: center; overflow: hidden; background: var(--cream); }
.hero::before { content: none; }

.hero-deco {
	position: absolute; 
	right: -15%; top: 50%;
	transform: translateY(-50%);
	width: clamp(600px, 80vw, 1100px); height: 80%;

	background-image: url('images/TAYWA_logo_color.jpg'); 
	background-repeat: no-repeat; 
	background-position: center right; 
	background-size: contain;
    
    opacity: 0.1;
    filter: grayscale(0.2) contrast(0.9);
    
    pointer-events: none;
    z-index: 1;
}
.hero-deco::before,
.hero-deco::after {
    display: none;
}

.hero-content { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 100px 48px; width: 100%; }
.hero-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; color: var(--teal); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--teal); }
.hero-catchcopy { font-family: var(--serif-jp); font-size: clamp(18px, 2.2vw, 26px); font-weight: 500; color: var(--teal); letter-spacing: .18em; margin-bottom: 20px; line-height: 1.9; }
.hero-title { font-family: var(--serif-jp); font-size: clamp(30px, 4.5vw, 54px); font-weight: 600; line-height: 1.5; color: var(--ink); margin-bottom: 32px; max-width: 580px; }
.hero-title em { font-style: normal; color: var(--base); }
.hero-desc { font-size: 14px; color: var(--ink-mid); line-height: 2.1; max-width: 460px; margin-bottom: 44px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 3px; font-size: 13px; font-family: var(--sans); font-weight: 500; letter-spacing: .08em; text-decoration: none; cursor: pointer; border: none; transition: all .25s; }
.btn-primary { background: var(--base); color: #fff; }
.btn-primary:hover { background: var(--bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(12,68,43,0.2); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--border2); }
.btn-secondary:hover { border-color: var(--base); color: var(--base); }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 10px; letter-spacing: .07em; color: var(--ink-mid); background: rgba(255,255,255,0.8); backdrop-filter: blur(4px); white-space: nowrap; }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--bright); flex-shrink: 0; }

/* ─── MEANING STRIP ─── */
.meaning-strip { background: var(--base); color: rgba(255,255,255,0.92); padding: 64px 48px; }
.meaning-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: left; }

/* 左カラム：TAYWAと対話を中央揃え */
.meaning-left { display: flex; flex-direction: column; align-items: center; }
.meaning-label { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,0.45); margin-bottom: 20px; align-items: left; }
.meaning-title { font-family: var(--serif-en); font-size: clamp(42px, 5.5vw, 68px); font-weight: 600; letter-spacing: .1em; color: #fff; line-height: 1; margin-bottom: 14px; }
.meaning-title-jp { font-family: var(--serif-jp); font-size: clamp(16px, 1.8vw, 22px); font-weight: 300; color: rgba(255,255,255,0.55); letter-spacing: .35em; margin-bottom: 28px; }
.meaning-desc { font-size: 13px; line-height: 2.2; color: rgba(255,255,255,0.7); text-align: left; max-width: 340px; }

.meaning-right { display: flex; flex-direction: column; gap: 16px; }
.meaning-pill { display: flex; align-items: flex-start; gap: 18px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 22px 24px; transition: background .2s; }
.meaning-pill:hover { background: rgba(255,255,255,0.11); }
.meaning-pill-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.meaning-pill-icon img { width: 52px; height: 52px; margin-bottom: 18px; padding: 6px; background: var(--white); border-radius: 10px; object-fit: contain; display: block; }

.meaning-pill-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 5px; letter-spacing: .05em; font-family: var(--serif-jp); }
.meaning-pill-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* ─── SECTION BASE ─── */
section { padding: 100px 48px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.section-no { font-family: var(--mono); font-size: 11px; letter-spacing: .24em; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-no::after { content: ''; flex: 0 0 28px; height: 1px; background: var(--teal); }
.section-title { font-family: var(--serif-jp); font-size: clamp(22px, 2.8vw, 34px); font-weight: 1000; line-height: 1.5; color: var(--ink); }
.section-lead { margin-top: 18px; font-size: 14px; color: var(--ink-mid); line-height: 2; max-width: 660px; }

/* ─── STRENGTHS ─── */
#strengths { background: var(--pale2); }
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.str-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 8px 32px 43px 32px; position: relative; overflow: hidden; }
.str-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--base), var(--teal-lt)); }
.str-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.str-icon-img { width: 72px; height: 72px; margin-top: 12pt; margin-bottom: 8px; padding: 10px; background: var(--pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.str-icon-img img { width: 72px; height: 72px; object-fit: contain; }
.str-title { font-family: var(--serif-jp); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.6; }
.str-subtitle { font-size: 13px; font-weight: 400; color: var(--ink-lt); letter-spacing: .04em; }
.str-desc { font-size: 13px; color: var(--ink-mid); line-height: 2; margin-top: 26px}

/* ─── SERVICES ─── */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.svc-card { padding: 40px 34px; background: var(--white); transition: background .2s; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--base), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.svc-card:hover { background: var(--pale2); }
.svc-card:hover::after { transform: scaleX(1); }

/* 顧問カード（フル幅） */
.svc-card.full-width {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 52px 52px 220px 1fr auto;
align-items: center;
column-gap: 24px;
padding: 32px 40px;
background: var(--white);
}
.svc-card.full-width::after { display: none; }
.svc-card.full-width .svc-num { margin-bottom: 0; }
.svc-card.full-width .svc-icon-wrap { margin-bottom: 0; }
.svc-card.full-width .svc-name { margin-bottom: 0; white-space: nowrap; }
.svc-card.full-width .svc-desc { margin-bottom: 0; }
.svc-card.full-width .svc-tags { flex-wrap: nowrap; }

.svc-card.full-width:hover { background: var(--pale2); }
.svc-card.full-width:hover::after { transform: scaleX(1); }

.svc-num { font-family: var(--mono); font-size: 10px; color: var(--teal); letter-spacing: .12em; margin-bottom: 20px; display: block; }
/* .svc-icon-wrap { width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; background: var(--pale2); } */

.svc-icon-wrap svg { width: 22px; height: 22px; stroke: var(--base); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; } 

.svc-icon-wrap {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: var(--teal);
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-icon-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.svc-name { font-family: var(--serif-jp); font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.55; }
.svc-desc { font-size: 13px; color: var(--ink-mid); line-height: 2; margin-bottom: 22px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag { font-size: 10px; padding: 3px 10px; border-radius: 3px; background: var(--pale); color: var(--base); letter-spacing: .04em; white-space: nowrap; }

/* ─── PRICING ─── */
#pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 36px 32px; position: relative; }
.pricing-card.featured { border-color: var(--base); border-width: 2px; }
.featured-label { position: absolute; top: -12px; left: 24px; background: var(--base); color: #fff; font-size: 10px; letter-spacing: .12em; padding: 3px 14px; border-radius: 20px; }
.price-plan { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; color: var(--teal); margin-bottom: 12px; }
.price-name { font-family: var(--serif-jp); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.price-amount { font-family: var(--serif-en); font-size: 32px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.price-amount span { font-size: 13px; font-weight: 400; color: var(--ink-lt); font-family: var(--sans); }
.price-note { font-size: 11px; color: var(--ink-lt); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-items li { font-size: 13px; color: var(--ink-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 1.7; }
.price-items li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--bright); margin-top: 7px; flex-shrink: 0; }

/* ─── PROFILE ─── */
#profile { background: var(--white); }
.profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.profile-left { position: sticky; top: 88px; }
.profile-photo { width: 260px; height: 260px; border-radius: 50%; overflow: hidden; background: var(--pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 64px; }

.profile-photo img { width: 100%; height: 100%; object-fit: cover; }

.profile-photo-name { font-family: var(--serif-jp); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.profile-photo-en { font-family: var(--mono); font-size: 14px; letter-spacing: .1em; color: var(--ink-lt); margin-bottom: 24px; }
.qual-list { display: flex; flex-direction: column; gap: 10px; }
.qual-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-mid); padding: 8px 12px; background: var(--pale2); border-radius: 4px; border-left: 3px solid var(--base); }
.profile-section { margin-bottom: 40px; }
.profile-section-label { font-family: var(--mono); font-size: 9px; letter-spacing: .22em; color: var(--teal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.profile-text { font-size: 13px; color: var(--ink-mid); line-height: 2.1; }
.career-list { display: flex; flex-direction: column; gap: 20px; }
.career-item { display: flex; gap: 20px; }
.career-year { font-family: var(--mono); font-size: 11px; color: var(--teal); white-space: nowrap; padding-top: 3px; flex-shrink: 0; width: 48px; }
.career-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.9; }

/* ─── CONTACT ─── */
#contact { background: var(--pale2); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-meta { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-meta-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-meta-icon { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; background: var(--white); flex-shrink: 0; }
.contact-meta-icon svg { width: 16px; height: 16px; stroke: var(--base); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.contact-meta-label { font-size: 9px; letter-spacing: .14em; color: var(--ink-lt); margin-bottom: 2px; font-family: var(--mono); }
.contact-meta-val { font-size: 13px; color: var(--ink); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 44px 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; letter-spacing: .1em; color: var(--ink-mid); margin-bottom: 8px; }
.form-label span { color: var(--bright); margin-left: 4px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; font-family: var(--sans); color: var(--ink); background: var(--white); transition: border-color .2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--base); box-shadow: 0 0 0 3px rgba(12,68,43,0.07); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.8; }
.form-select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; padding: 15px; background: var(--base); color: #fff; border: none; border-radius: 4px; font-size: 13px; font-family: var(--sans); font-weight: 500; letter-spacing: .1em; cursor: pointer; transition: all .25s; }
.form-submit:hover { background: var(--bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(12,68,43,0.2); }
.form-note { font-size: 11px; color: var(--ink-lt); margin-top: 12px; text-align: center; line-height: 1.9; }


/* =========================
   WPForms リセット＆統一
========================= */

/* フォーム全体：ベース継承 */
.contact-form .wpforms-form {
  font-family: inherit;
  font-size: 14px;
  color: inherit;
}

/* 全要素フォント統一 */
.contact-form .wpforms-form * {
  font-family: inherit;
  box-sizing: border-box;
}

/* =========================
   フィールド
========================= */

/* 各項目 */
.contact-form .wpforms-field {
  margin-bottom: 20px;
}

/* ラベル */
.contact-form .wpforms-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* 必須 */
.contact-form .wpforms-required-label {
  margin-left: 4px;
  color: #0C442B;
  font-size: 12px;
}

/* =========================
   入力系（超重要：統一）
========================= */

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  appearance: none; /* ← select対策 */
}

/* テキストエリア */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* フォーカス */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0C442B;
  box-shadow: 0 0 0 2px rgba(12,68,43,0.1);
}

/* =========================
   セレクト（ドロップダウン問題解決）
========================= */

.contact-form select {
  font-size: 14px !important; /* ← 効かない対策 */
  line-height: 1.4;
}

/* カスタム矢印 */
.contact-form select {
  background:
    #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%230C442B' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  background-size: 10px;
}

/* =========================
   ボタン
========================= */

.contact-form .wpforms-submit {
  width: 100%;
  background: #0C442B;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: .2s;
}

.contact-form .wpforms-submit:hover { opacity: 0.9; }

/* =========================
   補足・メッセージ
========================= */

.contact-form .wpforms-description { font-size: 12px; color: #666; margin-top: 10px; }
.contact-form .wpforms-error { font-size: 12px; margin-top: 4px; color: #d63638; }
.contact-form .wpforms-has-error input,
.contact-form .wpforms-has-error textarea,
.contact-form .wpforms-has-error select { border-color: #d63638; }

/* =========================
   余計な余白リセット
========================= */

.contact-form .wpforms-field-container { margin: 0; padding: 0; }

/* =========================
   レスポンシブ
========================= */

@media (max-width: 768px) {
  .contact-form .wpforms-form { font-size: 13px; }

  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 13px; padding: 10px; }

  .contact-form .wpforms-submit { font-size: 14px; padding: 12px; }
}

/* ===== WPForms 微調整（追加） ===== */

/* ラベルを軽くする */
.contact-form .wpforms-field-label {  font-weight: 400; }

/* プレースホルダーを薄く */
.contact-form ::placeholder { color: #bbb; opacity: 1; }

.contact-form select { color: #333; }
.contact-form select:invalid { color: #ccc; }
.contact-form select:focus { color: #333; }

/* 入力テキストの重さ調整 */
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-weight: 400;
}

/* フォーカスを柔らかく */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  box-shadow: 0 0 0 2px rgba(12,68,43,0.08);
}

/* 送信後メッセージ全体 */
.contact-form .wpforms-confirmation-container {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;

  padding: 16px;
  border-radius: 8px;
  background: #f8faf8; /* 薄い緑系でもOK */
  border: 1px solid var(--border);
}

/* 確認メッセージのフォントをベースに統一 */
.wpforms-confirmation-container {
  font-family: 'Noto Sans JP', sans-serif; /* 既存コンテンツに合わせる */
  font-size: 14px; /* ベースに合わせる */
  color: #0C442B; /* ベースカラーに合わせる */
  margin-top: 16px;
}

/* フォーム入力欄・ラベルなどの基本スタイル */
.wpforms-form input,
.wpforms-form select,
.wpforms-form textarea,
.wpforms-form label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #333;
}

/* ドロップダウン初期表示の色調整 */
.wpforms-form select option[disabled] {
  color: #aaa;
}

/* 確認メッセージの余白調整 */
.wpforms-confirmation-container p {
  margin: 0;
}


/* ─── HEADER ─── */
.main-nav { position: sticky; top: 0; z-index: 300; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 68px; }

/* ─── FOOTER ─── */
footer { background: var(--ink); color: rgba(255,255,255,0.45); padding: 52px 48px 36px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo-img { height: 42px; filter: brightness(1) invert(1); opacity: 0.6; object-fit: contain; }
.footer-brand { display: flex; flex-direction: column; gap: 3px; }
.footer-brand-name { font-family: var(--serif-en); font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: .1em; }
.footer-brand-sub { font-size: 10px; letter-spacing: .1em; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11px; flex-wrap: wrap; gap: 8px; }

/* ─── FAQ ─── */
#faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 22px 28px;
background: none;
border: none;
cursor: pointer;
text-align: left;
font-family: var(--serif-jp);
font-size: 15px;
font-weight: 500;
color: var(--ink);
line-height: 1.6;
transition: background .2s;
}
.faq-q:hover { background: var(--pale2); }
.faq-q[aria-expanded="true"] { background: var(--pale2); color: var(--base); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-lt); transition: transform .3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--base); }
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height .35s ease, padding .35s ease;
padding: 0 28px;
}
.faq-a.open {
max-height: 300px;
padding: 4px 28px 22px;
}
.faq-a p { font-size: 14px; color: var(--ink-mid); line-height: 2.1; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
nav { padding: 0 24px; }
.nav-links { display: none; }
.nav-hamburger { display: flex; }
.nav-drawer { display: flex; }

section { padding: 72px 24px; }
.hero-content { padding: 80px 24px; }
.hero-deco { right: -10%; width: 90%; opacity: 0.05; }
.hero-title { max-width: 100%; }
.hero-desc { max-width: 100%; }

.meaning-strip { padding: 48px 24px; }
.meaning-inner { grid-template-columns: 1fr; gap: 20px; }

.strengths-grid { grid-template-columns: 1fr; gap: 16px; }

.services-grid { grid-template-columns: 1fr; background: none; border: 1px solid var(--border); gap: 0; }
.services-grid .svc-card { border-bottom: 1px solid var(--border); }
.svc-card.full-width { grid-template-columns: 1fr; grid-column: 1; }
.svc-card.full-width .svc-num,
.svc-card.full-width .svc-icon-wrap { display: none; }
.svc-card.full-width .svc-name,
.svc-card.full-width .svc-desc { margin-bottom: 12px; }
.svc-card.full-width .svc-tags { flex-wrap: wrap; }

.pricing-grid { grid-template-columns: 1fr; }

.profile-layout { grid-template-columns: 1fr; gap: 40px; }
.profile-left { position: static; display: flex; flex-direction: column; align-items: center; text-align: center; }
.qual-list { align-items: center; }

.contact-layout { grid-template-columns: 1fr; }
.contact-form { padding: 32px 24px; }

footer { padding: 40px 24px 28px; }
.footer-top { flex-direction: column; }
.footer-nav { gap: 16px; }
}

@media (max-width: 768px) {
.hero { padding: 80px 24px; min-height: 70vh; }
.hero::before { content: none; }
.hero-deco { right: -10%; top: 60%; width: 120%; height: 60%; opacity: 0.04; background-position: center right; filter: blur(1px); }

.profile-layout { grid-template-columns: 1fr; gap: 32px; }
.profile-img-frame { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 480px) {
.hero-catchcopy { font-size: 16px; letter-spacing: .12em; }
.hero-badges { gap: 6px; }
.badge { font-size: 9px; padding: 5px 10px; }
.meaning-pill { flex-direction: column; gap: 12px; }
.btn { padding: 12px 22px; font-size: 12px; }
	
.hero-deco { right: -5%; top: 65%; width: 110%; opacity: 0.04; }
.profile-layout { grid-template-columns: 1fr; gap: 24px; }
.profile-img-frame { max-width: 200px; margin: 0 auto; }
}
