/* =========================================================
   Sanmei Consulting - 経営者のための算命学
   Color: Navy / Gold / Cream
   ========================================================= */

:root {
  /* メイン：ロイヤルネイビー（くすみのない深い青、信頼感） */
  --c-navy:        #1e3a5f;
  --c-navy-dark:   #142a47;
  --c-navy-light:  #355683;
  /* 金：シャンパンゴールド（上品で控えめ） */
  --c-gold:        #b89557;
  --c-gold-light:  #d4b88a;
  --c-gold-dark:   #9d7e48;
  /* hover用：白文字でも読める温かみのあるリッチシャンパン */
  --c-gold-hover:  #c2a26b;
  /* 強め：数字や見出し用の少し深めの金（読みやすさUP） */
  --c-gold-strong: #a4854c;
  /* 背景：清潔感ある白基調 */
  --c-white:       #ffffff;
  --c-cream-soft:  #fdfbf5;
  --c-cream:       #faf6ec;
  --c-line:        #ede6d3;
  --c-text:        #1a1f2e;
  --c-text-body:   #3f4458;
  --c-text-muted:  #7a7d88;

  --ff-serif:  "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --ff-sans:   "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --ff-en:     "Cormorant Garamond", "Noto Serif JP", serif;

  --radius:    4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 12px rgba(26, 40, 73, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 40, 73, 0.10);

  --container-max: 1120px;
  --header-h: 76px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-body);
  background: var(--c-cream-soft);
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

/* この単語を途中で改行させたくない箇所に付ける */
.nobr { display: inline-block; }

/* スマホのみで改行する／PCのみで改行する */
.br-sp { display: none; }
.br-pc { display: inline; }
@media (max-width: 760px) {
  .br-sp { display: inline; }
  .br-pc { display: none; }
}

/* 日本語を文節単位で自然改行（「お問い合わせく/ださい」のような途中改行を防止） */
h1, h2, h3, h4, h5, p, li, a, span, .btn, .contact-btn-label, .contact-btn-sub {
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: anywhere;
}
@supports not (word-break: auto-phrase) {
  /* Safari等のフォールバック：単語内（漢字・カナ・かな）で改行しない */
  h1, h2, h3, h4, h5, .hero-title, .hero-lead, .section-title, .section-desc,
  .about-lead, .about-points li, .exec-card h3, .exec-card p, .executive-note,
  .service-card h3, .service-sub, .service-name, .service-note,
  .profile-name, .profile-text p, .contact-btn-label {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--c-gold-dark); }
button { font: inherit; cursor: pointer; background: none; border: 0; }

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

/* ---------- Typography utility ---------- */
.section-eyebrow {
  font-family: var(--ff-en);
  font-size: 15px;
  letter-spacing: 0.28em;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.section-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--c-navy);
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 1.5;
}
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  margin-top: 22px;
}
.section-head--center { text-align: center; }
.section-head--center .section-title::after { margin-left: auto; margin-right: auto; }
.section-desc {
  margin: 22px auto 0;
  max-width: 640px;
  color: var(--c-text-body);
}

.accent { color: var(--c-gold-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand-jp {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--c-navy);
}
.brand-sub {
  font-family: var(--ff-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gold-dark);
  margin-top: 4px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-family: var(--ff-serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--c-navy);
  position: relative;
  padding: 6px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.nav-desktop a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--c-navy);
  color: var(--c-cream-soft) !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  border: 1px solid var(--c-navy);
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--c-gold-hover); border-color: var(--c-gold-hover); }

/* mobile nav */
.nav-toggle { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 1.5px; background: var(--c-navy); width: 22px; margin: 0 auto; transition: transform .3s ease, opacity .25s ease; }
.nav-mobile { display: none; flex-direction: column; padding: 8px 0 16px; border-top: 1px solid var(--c-line); background: var(--c-cream-soft); }
.nav-mobile a { padding: 14px 28px; font-family: var(--ff-serif); letter-spacing: 0.18em; color: var(--c-navy); border-bottom: 1px solid var(--c-line); }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-open .nav-mobile { display: flex; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(72px, 10vw, 140px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(216, 184, 120, 0.08), transparent 55%),
    linear-gradient(180deg, var(--c-cream-soft) 0%, var(--c-white) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 88%, rgba(201, 169, 97, 0.06), transparent 35%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}
.hero-eyebrow {
  font-family: var(--ff-en);
  letter-spacing: 0.32em;
  color: var(--c-gold-dark);
  margin: 0 0 22px;
  font-size: 13px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--c-navy);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
}
.hero-lead {
  font-size: 17px;
  line-height: 2.1;
  color: var(--c-text-body);
  margin: 0 0 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-primary {
  background: var(--c-navy);
  color: var(--c-cream-soft);
  border-color: var(--c-navy);
}
.btn-primary:hover {
  background: var(--c-gold-hover);
  border-color: var(--c-gold-hover);
  color: var(--c-white);
}
.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn-ghost:hover {
  background: var(--c-navy);
  color: var(--c-cream-soft);
}

/* ---------- Hero visual: orbit decoration ---------- */
.hero-visual { display: flex; justify-content: center; }
.orbit {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1 / 1;
}
.orbit-ring {
  position: absolute; inset: 0;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  opacity: 0.35;
}
.orbit-ring--inner {
  inset: 12%;
  border-color: var(--c-gold-light);
  opacity: 0.45;
  border-style: dashed;
}
.illust {
  background-color: var(--c-cream);
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(216, 184, 120, 0.18) 60%, rgba(26, 40, 73, 0.08) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  box-shadow: var(--shadow-md), inset 0 0 0 6px var(--c-white);
}
.illust--hero {
  position: absolute;
  inset: 18%;
  box-shadow: var(--shadow-md), inset 0 0 0 8px var(--c-white);
}
.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
}
.orbit-dot--1 { top: 4%; left: 50%; transform: translateX(-50%); }
.orbit-dot--2 { top: 50%; right: -2px; transform: translateY(-50%); width: 6px; height: 6px; }
.orbit-dot--3 { bottom: 8%; left: 18%; width: 5px; height: 5px; opacity: .7; }

/* ---------- Sections (shared) ---------- */
.section {
  padding: clamp(72px, 9vw, 120px) 0;
}
.section--about     { background: var(--c-white); }
.section--executive { background: var(--c-cream); position: relative; }
.section--service   { background: var(--c-white); }
.section--profile   { background: var(--c-cream-soft); }
.section--contact   {
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-soft) 100%);
}
.section-head { margin-bottom: 56px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 64px;
}
.about-lead {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 2;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  margin: 0 0 28px;
  font-weight: 400;
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-points li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 2;
  color: var(--c-text-body);
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--c-gold-dark);
}
.about-points strong {
  color: inherit;
  font-weight: 400;
}
.about-visual { display: flex; justify-content: center; }
.illust--circle {
  width: min(340px, 90%);
  aspect-ratio: 1 / 1;
}

/* ---------- Executive cards ---------- */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.exec-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.exec-card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.exec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold-light);
}
.exec-card:hover::before { transform: scaleX(1); }
.exec-num {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--c-gold-strong);
  margin-bottom: 14px;
}
.exec-card h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--c-navy);
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  line-height: 1.6;
}
.exec-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 2;
}
.executive-note {
  text-align: center;
  font-size: 16px;
  color: var(--c-text-body);
  margin: 8px auto 0;
  max-width: 760px;
  line-height: 2;
}

/* ---------- Service ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-grid--two { grid-template-columns: 1fr 1fr; }

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card--solo {
  max-width: 720px;
  margin: 0 auto 56px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--c-gold-light);
}

/* イベント鑑定・出張鑑定の親ブロック */
.service-block {
  margin-top: 16px;
  padding: 56px 48px 48px;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
}
.service-block-head { text-align: center; margin-bottom: 36px; }
.service-block-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.16em;
  color: var(--c-navy);
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 16px;
}
.service-block-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 36px; height: 1px;
  background: var(--c-gold);
}
.service-block-lead {
  margin: 0;
  font-size: 15.5px;
  line-height: 2;
  color: var(--c-text-body);
}
.service-block-head .service-block-lead + .service-block-lead {
  margin-top: 10px;
}

/* イベント鑑定の各カード */
.service-card--event {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}
/* 横並び時、見出し・説明部分を伸ばして「用途」の開始位置を揃える */
.service-card--event > .service-card-head {
  flex: 1 0 auto;
}
.service-card--event h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--c-navy);
  margin: 0 0 12px;
}
.service-tag {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-gold-strong);
  background: var(--c-cream);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  margin: 0 0 16px;
}

.service-points-title {
  font-family: var(--ff-serif);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-gold-strong);
  margin: 16px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
}
.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-points li {
  position: relative;
  padding-left: 18px;
  font-size: 15.5px;
  line-height: 1.9;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 1px;
  background: var(--c-gold-dark);
}

.service-note--center {
  text-align: center;
  margin-top: 28px;
}
.service-card-head { margin-bottom: 24px; }
.service-card h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0.12em;
  color: var(--c-navy);
  margin: 0 0 10px;
}
.service-sub {
  font-size: 14.5px;
  color: var(--c-text-muted);
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.service-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
}
.service-list li:last-child { border-bottom: 0; }
.service-name {
  font-family: var(--ff-serif);
  font-size: 16.5px;
  letter-spacing: 0.08em;
  color: var(--c-navy);
}
.service-meta {
  font-family: var(--ff-en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-gold-strong);
}
.service-price {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-navy);
  white-space: nowrap;
}
.service-note {
  font-size: 13.5px;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.85;
}

/* Featured (navy) card overrides — defined after base for higher cascade priority */
.service-card.service-card--feature {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-cream-soft);
}
.service-card.service-card--feature h3,
.service-card.service-card--feature .service-name,
.service-card.service-card--feature .service-meta { color: var(--c-cream-soft); }
.service-card.service-card--feature .service-price { color: var(--c-gold-light); }
.service-card.service-card--feature .service-sub,
.service-card.service-card--feature .service-note { color: rgba(250, 246, 237, 0.72); }
.service-card.service-card--feature .service-list li { border-bottom-color: rgba(216, 184, 120, 0.25); }

/* ---------- Profile ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.profile-visual { display: flex; justify-content: center; }
.illust--profile {
  width: min(300px, 80%);
  aspect-ratio: 1 / 1;
}
.profile-name {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 8px;
  flex-wrap: wrap;
}
.profile-name-jp {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.18em;
  color: var(--c-navy);
}
.profile-name-en {
  font-family: var(--ff-en);
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--c-gold-dark);
}
.profile-role {
  font-family: var(--ff-serif);
  letter-spacing: 0.2em;
  font-size: 13.5px;
  color: var(--c-gold-dark);
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.profile-text p { margin: 0 0 18px; line-height: 2.1; font-size: 16.5px; }
.profile-text p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 48px auto 0;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  line-height: 1.4;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.contact-btn:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--c-navy);
}
.contact-btn-label {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-navy);
}
.contact-btn-sub {
  font-family: var(--ff-en);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-gold-strong);
  text-transform: uppercase;
}
.contact-btn--primary {
  background: var(--c-navy);
  border-color: var(--c-navy);
}
.contact-btn--primary .contact-btn-label { color: var(--c-cream-soft); }
.contact-btn--primary .contact-btn-sub { color: var(--c-gold-light); }
.contact-btn--primary:hover { background: var(--c-gold-hover); border-color: var(--c-gold-hover); }
.contact-btn--primary:hover .contact-btn-label,
.contact-btn--primary:hover .contact-btn-sub { color: var(--c-white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
  text-align: center;
}
.footer-brand {
  font-family: var(--ff-serif);
  font-size: 13.5px;
  letter-spacing: 0.16em;
  color: var(--c-white);
  margin: 0;
}
.footer-copy {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 0;
  opacity: 0.8;
}

/* ---------- Image slot helpers (when user adds real images) ---------- */
.illust[data-slot="hero"][style*="background-image"],
.illust[data-slot="about"][style*="background-image"],
.illust[data-slot="profile"][style*="background-image"] {
  background-color: transparent;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .orbit { width: min(320px, 70%); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-text { text-align: center; }
  .about-points { display: inline-flex; align-items: flex-start; }
  .about-points li { text-align: left; }
  .executive-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-grid,
  .service-grid--two { grid-template-columns: 1fr; }
  .service-block { padding: 36px 24px 32px; }
  .service-card--solo { margin-bottom: 32px; }
  .br-pc { display: none; }
  .profile-grid { grid-template-columns: 1fr; gap: 36px; }
  .profile-visual { order: -1; }
  .contact-actions { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 22px; }
  .header-inner { height: 64px; }
  :root { --header-h: 64px; }
  .brand-en { font-size: 17px; }
  .brand-jp { font-size: 10px; }
  .hero { padding: 56px 0 64px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; padding: 14px 24px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .service-card { padding: 32px 24px 24px; }
  .service-list li { grid-template-columns: 1fr auto; row-gap: 4px; }
  .service-meta { grid-column: 1 / 2; }
  .service-price { grid-column: 2 / 3; grid-row: 1 / 3; align-self: center; }
  .profile-name-jp { font-size: 24px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
