/* ============================================================
   行政書士事務所なごみ
   柔らかく、敷居の低い、信頼感のあるデザイン
   ============================================================ */

:root {
  --ivory: #faf7f1;
  --cream: #f3ecdd;
  --white: #ffffff;
  --ink: #464034;
  --ink-soft: #6f6757;
  --green: #5d8a5e;
  --green-dark: #41684a;
  --green-deep: #324c39;
  --green-pale: #e9f1e4;
  --accent: #dd8a4e;
  --accent-dark: #c4733a;
  --gold: #e8b04b;
  --line-green: #06c755;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 22px rgba(95, 78, 50, 0.10);
  --shadow-soft: 0 2px 10px rgba(95, 78, 50, 0.07);
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-dark); transition: opacity .2s; }
a:hover { opacity: .8; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.5; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e0d0;
}

.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { display: flex; }
.brand-text { display: flex; flex-direction: column; }
.brand-sub { font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; }
.brand-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 20px; color: var(--ink); letter-spacing: .05em;
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav a {
  display: block; padding: 8px 12px; text-decoration: none;
  color: var(--ink); font-size: 14.5px; font-weight: 500;
  border-radius: 999px; transition: background .2s;
}
.site-nav a:hover { background: var(--green-pale); opacity: 1; }
.site-nav a[aria-current="page"] { color: var(--green-dark); font-weight: 700; }

.nav-contact a {
  background: var(--green); color: #fff !important; font-weight: 700;
  padding: 9px 18px;
}
.nav-contact a:hover { background: var(--green-dark); }

.nav-tel { display: none; }

.header-tel {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; line-height: 1.4; white-space: nowrap;
}
.header-tel-number {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
  color: var(--accent-dark);
}
.header-tel-note { font-size: 10.5px; color: var(--ink-soft); }

.nav-toggle { display: none; }

/* ---------- パンくず ---------- */
.breadcrumb { max-width: 1180px; margin: 0 auto; padding: 12px 20px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; list-style: none; font-size: 12.5px; color: var(--ink-soft); }
.breadcrumb li + li::before { content: "›"; margin: 0 8px; color: #b9ad97; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-dark); }

/* ---------- 共通レイアウト ---------- */
main { display: block; }

.section { padding: 64px 20px; }
.section-alt { background: var(--cream); }
.section-white { background: var(--white); }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-inner-narrow { max-width: 820px; margin: 0 auto; }

.section-title {
  text-align: center; font-size: 30px; color: var(--ink);
  margin-bottom: 14px; letter-spacing: .06em;
}
.section-title::before {
  content: ""; display: block; width: 34px; height: 34px; margin: 0 auto 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><g fill="%235d8a5e"><ellipse cx="20" cy="9" rx="5.5" ry="7"/><ellipse cx="20" cy="31" rx="5.5" ry="7"/><ellipse cx="9" cy="20" rx="7" ry="5.5"/><ellipse cx="31" cy="20" rx="7" ry="5.5"/></g><circle cx="20" cy="20" r="5" fill="%23e8b04b"/></svg>') no-repeat center / contain;
}
.section-lead { text-align: center; color: var(--ink-soft); margin-bottom: 44px; }

/* ---------- ページタイトル(下層ページ) ---------- */
.page-hero {
  background: linear-gradient(130deg, var(--green-pale), var(--cream));
  padding: 52px 20px;
  text-align: center;
}
.page-hero h1 { font-size: 31px; letter-spacing: .05em; }
.page-hero .page-hero-lead { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }

/* ---------- ホーム ヒーロー ---------- */
.hero {
  background: linear-gradient(125deg, var(--ivory) 30%, var(--green-pale) 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1080px; margin: 0 auto; padding: 64px 20px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; background: var(--gold); color: #fff;
  font-weight: 700; font-size: 13.5px; padding: 5px 16px;
  border-radius: 999px; margin-bottom: 18px; letter-spacing: .08em;
}
.hero h1 {
  font-size: 36px; letter-spacing: .04em; margin-bottom: 18px; color: var(--ink);
}
.hero h1 .hero-accent { color: var(--green-dark); }
.hero-copy { color: var(--ink-soft); margin-bottom: 28px; font-size: 15.5px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo img {
  border-radius: 38% 62% 55% 45% / 45% 48% 52% 55%;
  box-shadow: var(--shadow);
  object-fit: cover; aspect-ratio: 4 / 3; width: 100%;
}
.hero-notes { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-note {
  background: var(--white); border: 1.5px solid var(--green-pale);
  color: var(--green-dark); font-size: 13px; font-weight: 700;
  border-radius: 999px; padding: 4px 14px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; text-decoration: none; font-weight: 700;
  padding: 14px 28px; font-size: 15.5px; line-height: 1.3;
  transition: transform .15s, box-shadow .15s;
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity: 1; }

.btn-phone { background: var(--accent); color: #fff; flex-direction: column; padding: 12px 30px; }
.btn-phone .btn-phone-num { font-size: 21px; font-family: var(--font-head); display: inline-flex; align-items: center; gap: 7px; }
.btn-phone small { font-size: 11.5px; font-weight: 500; opacity: .92; }
.btn-phone svg { width: 20px; height: 20px; }

.btn-line { background: var(--line-green); color: #fff; }
.btn-mail { background: var(--green); color: #fff; }
.btn-ghost { background: var(--white); color: var(--green-dark); border: 1.5px solid var(--green); }

.btn-more {
  display: inline-block; color: var(--green-dark); font-weight: 700;
  text-decoration: none; border-bottom: 2px solid var(--green);
  padding-bottom: 2px; font-size: 14.5px;
}

/* ---------- 特徴 ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-soft); text-align: center;
}
.feature-icon { font-size: 38px; line-height: 1; margin-bottom: 14px; }
.feature h3 { font-size: 18px; margin-bottom: 10px; color: var(--green-dark); }
.feature p { font-size: 14px; color: var(--ink-soft); text-align: left; }

/* ---------- サービスカード ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); opacity: 1; }
.card-img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 18px; color: var(--green-dark); margin-bottom: 8px; }
.card p { font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.card-arrow { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--accent-dark); }

/* テキストのみのカード */
.card-plain { padding: 24px 24px 26px; }

/* ---------- ごあいさつ(ホーム) ---------- */
.greeting { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.greeting-photo img {
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.greeting-photo figcaption { text-align: center; font-size: 13px; margin-top: 10px; color: var(--ink-soft); }
.greeting h3 { font-size: 21px; color: var(--green-dark); margin-bottom: 14px; }
.greeting p { margin-bottom: 14px; font-size: 15px; }

/* ---------- お知らせリスト・ブログカード ---------- */
.post-list { display: grid; gap: 18px; }
.post-card {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center;
  background: var(--white); border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-soft); text-decoration: none; color: var(--ink);
  transition: transform .2s;
}
.post-card:hover { transform: translateY(-3px); opacity: 1; }
.post-card img { border-radius: 8px; aspect-ratio: 16/10; object-fit: cover; }
.post-meta { font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; margin-bottom: 4px; }
.post-tag {
  background: var(--green-pale); color: var(--green-dark);
  border-radius: 999px; padding: 1px 12px; font-weight: 700; font-size: 11.5px;
}
.post-card h3 { font-size: 16.5px; color: var(--ink); }
.post-card p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- 記事ページ ---------- */
.article { max-width: 780px; margin: 0 auto; padding: 48px 20px 72px; }
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: 28px; margin: 10px 0; }
.article-body h2 {
  font-size: 22px; margin: 40px 0 16px; padding: 10px 16px;
  background: var(--green-pale); border-radius: var(--radius-sm);
  border-left: 6px solid var(--green); color: var(--green-deep);
}
.article-body h3 {
  font-size: 18.5px; margin: 32px 0 12px; padding-bottom: 6px;
  border-bottom: 2px dashed #cfc4ab; color: var(--green-dark);
}
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--green-deep); background: linear-gradient(transparent 65%, #f4e3b2 65%); }
.article-body img { border-radius: var(--radius); margin: 24px auto; box-shadow: var(--shadow-soft); }

/* ---------- コンテンツページ共通(サービス詳細など) ---------- */
.content-page { max-width: 880px; margin: 0 auto; padding: 48px 20px 72px; }
.content-page > p { margin-bottom: 16px; }
.content-page h2 {
  font-size: 23px; margin: 48px 0 18px; padding: 12px 18px;
  background: var(--green-pale); border-radius: var(--radius-sm);
  border-left: 6px solid var(--green); color: var(--green-deep);
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-size: 18.5px; margin: 32px 0 12px; padding-bottom: 6px;
  border-bottom: 2px dashed #cfc4ab; color: var(--green-dark);
}
.content-page ul, .content-page ol { margin: 0 0 18px 24px; }
.content-page li { margin-bottom: 7px; }
.content-page strong { color: var(--green-deep); background: linear-gradient(transparent 65%, #f4e3b2 65%); }
.content-page img { border-radius: var(--radius); margin: 26px auto; box-shadow: var(--shadow-soft); }

.note { font-size: 13.5px; color: var(--ink-soft); }

/* リードボックス */
.lead-box {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 30px; box-shadow: var(--shadow-soft); margin-bottom: 36px;
}
.lead-box p:last-child { margin-bottom: 0; }

/* 吹き出し風の悩みリスト */
.worries { list-style: none; margin: 0 0 24px !important; display: grid; gap: 10px; }
.worries li {
  background: var(--white); border-radius: 14px; padding: 12px 20px;
  box-shadow: var(--shadow-soft); position: relative; padding-left: 46px;
}
.worries li::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="11" fill="%23e9f1e4"/><path d="M7 12.5l3.2 3.2L17 9" stroke="%235d8a5e" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
}

/* メリット・デメリット */
.merit-box, .demerit-box {
  border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 20px;
}
.merit-box { background: var(--green-pale); }
.demerit-box { background: #f7ece2; }
.merit-box h4, .demerit-box h4 { margin-bottom: 8px; font-size: 16px; }
.merit-box h4 { color: var(--green-dark); }
.demerit-box h4 { color: var(--accent-dark); }
.merit-box ul, .demerit-box ul { margin: 0 0 0 22px; }

/* ---------- 流れ(ステップ) ---------- */
.steps { list-style: none; margin: 24px 0 !important; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft); padding: 18px 22px 18px 74px;
  margin-bottom: 26px;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 18px; top: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 36px; bottom: -22px;
  border: 8px solid transparent; border-top: 10px solid #c5d6bd;
}
.steps li h4 { font-size: 16.5px; color: var(--green-dark); margin-bottom: 4px; }
.steps li p { font-size: 14px; margin: 0; color: var(--ink-soft); }

/* ---------- 表 ---------- */
.table-scroll { overflow-x: auto; margin: 20px 0 8px; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
table { border-collapse: collapse; width: 100%; background: var(--white); font-size: 14px; min-width: 560px; }
th, td { padding: 12px 16px; border: 1px solid #e6decd; text-align: left; vertical-align: top; }
thead th, th.row-head { background: var(--green); color: #fff; font-weight: 700; }
tbody tr:nth-child(even) { background: #f7f3ea; }
td.price { white-space: nowrap; font-weight: 700; color: var(--green-deep); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; margin: 24px 0; }
.faq details {
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 48px 16px 52px;
  font-weight: 700; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 16px; top: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.faq summary::after {
  content: "＋"; position: absolute; right: 18px; top: 16px; color: var(--green);
  font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq .faq-a { padding: 0 20px 18px 52px; position: relative; font-size: 14.5px; color: var(--ink-soft); }
.faq .faq-a::before {
  content: "A"; position: absolute; left: 16px; top: 2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* ---------- 料金ページ ---------- */
.price-section h2 { scroll-margin-top: 90px; }
.price-simple { list-style: none; margin: 16px 0 !important; }
.price-simple li {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  background: var(--white); padding: 13px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft); margin-bottom: 10px;
}
.price-simple .price { font-weight: 700; color: var(--green-deep); white-space: nowrap; }

/* ---------- 事務所概要 表 ---------- */
.office-table th { width: 30%; background: var(--green-pale); color: var(--green-deep); }

/* ---------- お問い合わせ ---------- */
.contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.contact-channel {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow-soft); text-align: center;
}
.contact-channel h3 { color: var(--green-dark); font-size: 17px; margin-bottom: 10px; }
.contact-channel p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }

.form {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow-soft); max-width: 680px; margin: 0 auto;
}
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 14.5px; }
.form-row .required {
  background: var(--accent); color: #fff; font-size: 11px;
  border-radius: 4px; padding: 1px 8px; margin-left: 8px; font-weight: 700;
}
.form-row input, .form-row textarea {
  width: 100%; border: 1.5px solid #ddd3bd; border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 15px; font-family: inherit; background: #fdfcf9;
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--green); border-color: var(--green);
}
.form-submit { text-align: center; margin-top: 28px; }
.form-submit button {
  border: none; cursor: pointer; font-family: inherit;
}
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* ---------- CTAバンド ---------- */
.cta-band {
  background: linear-gradient(130deg, var(--green-dark), var(--green));
  color: #fff; padding: 56px 20px; text-align: center;
}
.cta-inner { max-width: 860px; margin: 0 auto; }
.cta-lead {
  display: inline-block; background: rgba(255,255,255,.16);
  border-radius: 999px; padding: 4px 20px; font-size: 13.5px; font-weight: 700;
  margin-bottom: 14px; letter-spacing: .05em;
}
.cta-title { font-size: 26px; margin-bottom: 12px; letter-spacing: .05em; }
.cta-copy { font-size: 14.5px; opacity: .95; margin-bottom: 28px; }
.cta-copy strong { color: #ffe9a8; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-band .btn-mail { background: var(--white); color: var(--green-dark); }

/* ---------- フッター ---------- */
.site-footer { background: var(--green-deep); color: #e7eee3; }
.footer-inner {
  max-width: 1080px; margin: 0 auto; padding: 56px 20px 32px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff;
  margin-bottom: 14px;
}
.footer-col p { font-size: 14px; margin-bottom: 12px; }
.footer-heading {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 8px; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 13.5px; }
.site-footer a { color: #e7eee3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-area {
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 1080px; margin: 0 auto; padding: 20px; font-size: 12.5px; opacity: .85;
}
.copyright { text-align: center; font-size: 12px; padding: 14px 0 22px; opacity: .7; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1020px) {
  .header-tel { display: none; }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 20px; }
  .hero h1 { font-size: 28px; }
  .features, .cards, .contact-channels { grid-template-columns: 1fr 1fr; }
  .greeting { grid-template-columns: 1fr; }
  .greeting-photo { max-width: 240px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .section { padding: 44px 16px; }
  .section-title { font-size: 24px; }
  .page-hero h1 { font-size: 23px; }
  .features, .cards, .contact-channels { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 96px 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .article-header h1 { font-size: 22px; }
  .content-page h2 { font-size: 19px; }
  .cta-title { font-size: 21px; }
  .btn { width: 100%; }
  .hero-buttons .btn, .cta-buttons .btn { width: 100%; }

  /* モバイルナビ */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; margin-left: auto;
    background: var(--green-pale); border: none; border-radius: 12px;
    cursor: pointer; padding: 12px 11px;
  }
  .nav-toggle-bar {
    display: block; height: 2.5px; width: 100%;
    background: var(--green-dark); border-radius: 2px; transition: transform .25s, opacity .25s;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid #e8e0d0;
    box-shadow: var(--shadow); padding: 16px 20px 24px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 13px 16px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav-contact { margin-top: 10px; }
  .nav-contact a { text-align: center; border-radius: 999px; }
  .nav-tel {
    display: flex; flex-direction: column; align-items: center;
    margin-top: 18px; padding-top: 16px; border-top: 1px dashed #d8cdb4;
  }
  .nav-tel-number {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-head); font-weight: 700; font-size: 22px;
    color: var(--accent-dark); text-decoration: none;
  }
  .nav-tel-note { font-size: 12px; color: var(--ink-soft); }
}
