:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f4efe8;
  --text: #2e2b28;
  --muted: #706a64;
  --line: #ddd5cb;
  --accent: #9a705f;
  --accent-dark: #765246;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(72, 58, 48, 0.08);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--accent-dark); }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #c59478; outline-offset: 4px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 8px 14px; background: var(--text); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(221,213,203,.9); background: rgba(251,250,247,.94); backdrop-filter: blur(12px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 1.22rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; white-space: nowrap; }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); padding: 9px 15px; color: var(--text); font: inherit; }
.site-nav ul { display: flex; gap: 22px; align-items: center; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: block; padding-block: 9px; color: var(--muted); font-size: .82rem; font-weight: 650; letter-spacing: .04em; text-decoration: none; white-space: nowrap; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent-dark); }

main { min-height: 60vh; }
.hero { padding: clamp(72px, 12vw, 150px) 0 clamp(64px, 9vw, 112px); background: radial-gradient(circle at 86% 12%, #f0e4dc 0, transparent 34%), linear-gradient(180deg,#fff 0,var(--bg) 100%); }
.eyebrow { margin: 0 0 18px; color: var(--accent-dark); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero h1, .page-hero h1 { margin: 0 0 28px; font-size: clamp(2.1rem, 6vw, 4.5rem); line-height: 1.25; letter-spacing: .03em; }
.hero-copy { max-width: 720px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.page-hero { padding: clamp(58px, 9vw, 100px) 0 56px; border-bottom: 1px solid var(--line); background: #fff; }
.page-hero p { max-width: 720px; margin-bottom: 0; color: var(--muted); }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-soft { background: var(--surface-soft); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head h2, .content h2 { margin: 0; font-size: clamp(1.7rem, 3.8vw, 2.5rem); line-height: 1.35; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.content h2 { margin-top: 2.5em; margin-bottom: .8em; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin-top: 2em; font-size: 1.25rem; line-height: 1.5; }
.content h4 { margin-top: 1.7em; font-size: 1.05rem; }
.content p, .content li { color: #48433e; }
.content ul, .content ol { padding-left: 1.35em; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.card h2, .card h3 { margin-top: 0; line-height: 1.5; }
.card p:last-child { margin-bottom: 0; }
.number { color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .14em; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid var(--accent-dark); border-radius: 999px; padding: 10px 22px; background: var(--accent-dark); color: #fff; font-weight: 650; text-decoration: none; }
.button:hover { background: #5f4036; color: #fff; }
.button-secondary { background: transparent; color: var(--accent-dark); }
.button-secondary:hover { background: #f3e8e1; color: var(--accent-dark); }

.work-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.work-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.work-card img { width: 100%; aspect-ratio: 8/5; object-fit: cover; }
.work-card figcaption { padding: 12px 15px; color: var(--muted); font-size: .86rem; }
.voice-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.voice-grid img { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fff; }

.price-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.price { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.price strong { display: block; margin-top: 12px; font-size: clamp(1.5rem,4vw,2.1rem); color: var(--accent-dark); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f7f2ec; font-size: .9rem; }
tr:last-child td { border-bottom: 0; }
.legal-table th { width: 28%; }

.steps { counter-reset: step; display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; padding: 22px 24px 22px 72px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.steps li::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 22px; top: 22px; color: var(--accent); font-weight: 700; }
.steps strong { display: block; margin-bottom: 4px; }

.faq-group + .faq-group { margin-top: 46px; }
.faq-group h2 { margin-bottom: 18px; }
.faq { border-top: 1px solid var(--line); }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 20px 48px 20px 4px; cursor: pointer; font-weight: 650; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 10px; top: 18px; font-size: 1.3rem; font-weight: 400; }
.faq[open] summary::after { content: "−"; }
.faq-answer { padding: 0 42px 20px 4px; color: var(--muted); }

.notice { margin-bottom: 30px; border: 1px solid #d6a35f; border-radius: 12px; padding: 16px 20px; background: #fff7e8; color: #65461c; font-weight: 650; }
.sitemap-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.sitemap-list a { display: block; height: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: #fff; text-decoration: none; }
.sitemap-list strong { display: block; margin-bottom: 4px; }
.sitemap-list span { color: var(--muted); font-size: .9rem; }

.site-footer { border-top: 1px solid var(--line); background: #f2ede7; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; }
.footer-brand { font-size: 1.2rem; font-weight: 700; letter-spacing: .12em; }
.footer-nav { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px 20px; margin: 0; padding: 0; list-style: none; }
.footer-nav a { color: var(--muted); font-size: .9rem; text-decoration: none; }
.copyright { margin-top: 42px; color: var(--muted); font-size: .78rem; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; border-bottom: 1px solid var(--line); background: var(--bg); padding: 12px 20px 22px; }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2px 18px; }
  .site-nav a { padding: 11px 5px; }
  .grid-3, .work-grid, .voice-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; line-height: 1.85; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 66px; }
  .site-nav { top: 66px; }
  .hero { padding-top: 68px; }
  .hero h1, .page-hero h1 { font-size: clamp(2rem,11vw,3rem); }
  .hero-actions .button { width: 100%; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .grid-2, .grid-3, .price-grid, .work-grid, .voice-grid, .sitemap-list { grid-template-columns: 1fr; }
  .work-card img { aspect-ratio: 8/5; }
  .voice-grid { gap: 14px; }
  .table-wrap { margin-inline: -2px; }
  table { min-width: 0; }
  .service-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .service-table, .service-table tbody, .service-table tr, .service-table td { display: block; width: 100%; }
  .service-table tr { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .service-table tr:last-child { border-bottom: 0; }
  .service-table td { padding: 3px 0; border: 0; }
  .service-table td:last-child { color: var(--accent-dark); font-weight: 700; }
  .legal-table { min-width: 560px; }
  .steps li { padding-left: 62px; }
  .steps li::before { left: 18px; }
  .footer-nav { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Design refinement: varied editorial rhythm without changing content */
.home-hero { padding: clamp(64px, 9vw, 116px) 0; overflow: hidden; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); align-items: center; gap: clamp(42px, 7vw, 96px); }
.home-hero h1 { color: #554a43; font-size: clamp(2rem, 4.4vw, 3.55rem); font-weight: 520; letter-spacing: .045em; }
.home-hero-visual { position: relative; margin: 0; }
.home-hero-visual::before { content: ""; position: absolute; inset: -26px 24px 30px -28px; z-index: -1; border-radius: 50% 46% 54% 44%; background: #eadfd5; transform: rotate(-4deg); }
.home-hero-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 46% 46% 18px 18px; box-shadow: 28px 32px 0 #f4eee7; }

.section-head h2 { font-weight: 560; letter-spacing: .025em; }
.section-head::before { content: ""; width: 34px; height: 1px; background: var(--accent); align-self: center; flex: none; }
.section-head > :first-child { flex: 1; }
.grid-2 > .card { box-shadow: none; border-radius: 4px 28px 4px 28px; }
.grid-2 > .card:nth-child(2) { margin-top: 36px; border-radius: 28px 4px 28px 4px; }

.work-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; }
.work-card { grid-column: span 4; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.work-card:nth-child(2), .work-card:nth-child(5) { margin-top: 54px; }
.work-card:nth-child(4) { grid-column: 2 / span 4; }
.work-card img { border-radius: 5px; box-shadow: 0 16px 40px rgba(72,58,48,.12); }
.work-card figcaption { padding: 12px 2px; border-bottom: 1px solid var(--line); }

.home-profile { border-top: 0 !important; background: #fff; }
.profile-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 110px); padding: clamp(42px, 7vw, 78px); border: 1px solid var(--line); border-radius: 2px 48px 2px 48px; background: linear-gradient(135deg,#fff,#f7f1ea); }
.profile-panel h2 { margin: 6px 0 0; font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 520; }
.profile-name { margin: 0; color: #544940; font-size: clamp(2.2rem,5vw,3.8rem); line-height: 1.2; letter-spacing: .08em; }
.profile-summary { align-self: end; }
.inline-links { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; margin-top: 28px; }
.inline-links > a:not(.button) { color: var(--accent-dark); font-size: .9rem; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(58px, 8vw, 92px); background: linear-gradient(105deg,#fff 0 70%,#f0e5dc 70%); }
.page-hero::after { content: ""; position: absolute; right: 7%; bottom: -70px; width: 180px; height: 180px; border: 1px solid #d9c8bb; border-radius: 50%; }
.page-hero h1 { color: #514740; font-size: clamp(2.1rem, 5vw, 3.7rem); font-weight: 520; }
.consultation-hero { background: linear-gradient(105deg,#fff 0 67%,#eee1d7 67%); }
.profile-hero { min-height: 360px; display: grid; align-items: center; background: linear-gradient(110deg,#fff 0 62%,#ede2da 62%); }
.lead-text { position: relative; font-size: clamp(1.08rem,2vw,1.25rem); line-height: 2.05; }
.lead-text::before { content: "“"; position: absolute; left: -42px; top: -24px; color: #e0d0c4; font-size: 5rem; line-height: 1; }
.feature-list { margin-top: 34px; }
.feature-list .card { position: relative; padding-top: 52px; border: 0; border-top: 1px solid var(--accent); border-radius: 0; box-shadow: none; }
.feature-list .number { position: absolute; top: 14px; right: 4px; font-size: 1rem; }
.price-grid .price { border-radius: 2px 26px 2px 26px; box-shadow: 0 12px 32px rgba(72,58,48,.06); }
.voice-grid img:nth-child(even) { margin-top: 34px; }

.profile-story .content { border-left: 1px solid var(--line); padding-left: clamp(24px,5vw,62px); }
.profile-experience ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 34px; padding: 0; list-style: none; }
.profile-experience li { padding: 18px 4px 18px 26px; border-top: 1px solid var(--line); position: relative; }
.profile-experience li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.contact-section { min-height: 56vh; background: linear-gradient(180deg,var(--bg),#f2eae3); }
.contact-panel { padding: clamp(38px,8vw,76px); border: 1px solid var(--line); border-radius: 2px 40px 2px 40px; background: #fff; text-align: center; box-shadow: 0 18px 52px rgba(72,58,48,.07); }
.contact-panel h2 { font-size: clamp(1.65rem,4vw,2.5rem); font-weight: 560; }

/* Product page sections read as distinct chapters. */
body:has(a[href="/product/"][aria-current="page"]) main > .section:nth-of-type(1) { background: #fff; }
body:has(a[href="/product/"][aria-current="page"]) .content h2 { padding-top: .7em; border-top: 1px solid var(--line); }
body:has(a[href="/product/"][aria-current="page"]) .content h2:first-child { border-top: 0; }

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr .72fr; gap: 34px; }
  .work-card { grid-column: span 6; }
  .work-card:nth-child(4) { grid-column: span 6; }
  .profile-panel { gap: 42px; }
}

@media (max-width: 640px) {
  .home-hero { padding-top: 48px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero h1 { max-width: 100%; font-size: clamp(1.75rem,7.5vw,2.2rem); line-height: 1.5; letter-spacing: 0; }
  .home-hero-visual { width: 82%; margin: 10px 0 0 auto; }
  .section-head::before { display: none; }
  .grid-2 > .card:nth-child(2) { margin-top: 0; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
  .work-card, .work-card:nth-child(4) { grid-column: auto; }
  .work-card:nth-child(2), .work-card:nth-child(5) { margin-top: 32px; }
  .work-card img { aspect-ratio: 4/5; }
  .profile-panel { grid-template-columns: 1fr; padding: 34px 24px; border-radius: 2px 30px 2px 30px; }
  .page-hero { background: linear-gradient(170deg,#fff 0 78%,#eee3db 78%); }
  .profile-hero { min-height: 300px; }
  .lead-text::before { left: -12px; top: -34px; }
  .feature-list .card { padding-inline: 4px; }
  .voice-grid img:nth-child(even) { margin-top: 0; }
  .profile-story .content { padding-left: 20px; }
  .profile-experience ul { grid-template-columns: 1fr; }
  .contact-panel { padding-inline: 22px; }
}

/* Third design refinement: polished, calm and conversion-focused. */
:root {
  --surface-warm: #f8f4ef;
  --surface-rose: #f5eeea;
  --accent-soft: #d8c2b5;
}

.section h2 { color: #3f3833; letter-spacing: .02em; }
.button { box-shadow: 0 8px 20px rgba(118,82,70,.12); transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 11px 24px rgba(118,82,70,.17); }
.button-secondary { box-shadow: none; }

/* HOME */
.home-service { background: linear-gradient(180deg,#fff 0,var(--surface-warm) 100%); }
.home-service .card { display: flex; flex-direction: column; min-height: 330px; padding: clamp(30px,4vw,44px); background: rgba(255,255,255,.9); }
.home-service .card .button { align-self: flex-start; margin-top: auto; }
.home-portfolio { background: #f1ebe4; }
.home-profile { position: relative; background: linear-gradient(180deg,#fff 0,#faf7f3 100%); }
.home-profile::before { content: ""; position: absolute; left: 0; top: 18%; width: 10%; height: 1px; background: var(--accent-soft); }
.profile-panel { box-shadow: 0 22px 60px rgba(72,58,48,.055); }
.home-contact { background: linear-gradient(180deg,#faf7f3,#fff); }
.home-contact .card { position: relative; max-width: 800px; padding: clamp(38px,6vw,62px); border-radius: 34px 4px 34px 4px; box-shadow: 0 18px 44px rgba(72,58,48,.07); }
.home-contact .card::after { content: ""; position: absolute; top: 30px; right: 34px; width: 70px; height: 70px; border: 1px solid #e3d6cc; border-radius: 50%; }

/* Consultation */
.consultation-hero { min-height: 440px; display: grid; align-items: center; background: linear-gradient(108deg,#fff 0 66%,#eaded5 66%); }
.consultation-overview { background: #fff; }
.consultation-overview > .narrow { width: min(calc(100% - 40px), 940px); }
.consultation-overview .content > p:first-child { max-width: 760px; margin: 0 auto clamp(62px,8vw,92px); padding: 28px 34px; border-left: 2px solid var(--accent-soft); background: var(--surface-warm); font-size: 1.06rem; }
.feature-list { gap: 24px; }
.feature-list .card { min-height: 300px; padding: 58px 28px 30px; border: 1px solid #e4d9d0; border-radius: 28px 3px 28px 3px; background: linear-gradient(145deg,#fff,#faf6f2); }
.feature-list .number { top: 18px; right: 24px; }
.consultation-topics { background: #f1ebe5; }
.consultation-topics .content { position: relative; padding: clamp(34px,6vw,58px); border: 1px solid #e0d3c9; border-radius: 3px 38px 3px 38px; background: rgba(255,255,255,.74); }
.consultation-topics ul { columns: 2; column-gap: 52px; margin-top: 30px; padding-left: 0; list-style: none; }
.consultation-topics li { position: relative; break-inside: avoid; padding: 13px 0 13px 24px; border-bottom: 1px solid #e5dbd3; }
.consultation-topics li::before { content: ""; position: absolute; left: 2px; top: 25px; width: 8px; height: 1px; background: var(--accent); }
.consultation-pricing { background: linear-gradient(180deg,#fff,#faf7f3); }
.consultation-pricing .price-grid { margin-bottom: 18px; }
.consultation-pricing .price { display: flex; flex-direction: column; min-height: 265px; padding: 34px; border-color: #dfd1c7; background: #fff; }
.consultation-pricing .price strong { margin-top: auto; }
.consultation-cta { position: relative; margin-top: clamp(54px,8vw,82px); padding: clamp(38px,6vw,62px); overflow: hidden; border: 1px solid #d5bfb2; border-radius: 4px 42px 4px 42px; background: linear-gradient(135deg,#8b6152,#6f493f); color: #fff; box-shadow: 0 22px 52px rgba(91,60,50,.16); }
.consultation-cta::after { content: ""; position: absolute; right: -44px; top: -54px; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.consultation-cta h2, .consultation-cta p, .consultation-cta .eyebrow { position: relative; z-index: 1; color: #fff; }
.consultation-cta h2 { margin: 0 0 12px; }
.consultation-cta .button { position: relative; z-index: 1; margin-top: 14px; border-color: #fff; background: #fff; color: var(--accent-dark); }
.consultation-cta .button:hover { background: #f7f0eb; color: var(--accent-dark); }
.consultation-voices { background: #eee6df; }
.voice-grid { align-items: stretch; gap: 24px; }
.voice-card { display: flex; min-width: 0; height: 100%; flex-direction: column; margin: 0; overflow: hidden; border: 1px solid #ded1c7; border-radius: 18px; background: #fff; box-shadow: 0 14px 34px rgba(72,58,48,.08); }
.voice-grid .voice-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border: 0; border-radius: 0; background: #f5f1ed; }
.voice-card figcaption { margin-top: auto; padding: 14px 17px; border-top: 1px solid #eee5de; color: var(--muted); font-size: .78rem; letter-spacing: .08em; }
.voice-grid .voice-card:nth-child(even) { margin-top: 0; }
.consultation-instagram { background: linear-gradient(180deg,#fff,var(--surface-warm)); }
.consultation-instagram-card { padding: clamp(34px,6vw,54px); border-radius: 30px 3px 30px 3px; box-shadow: none; background: #fff; }

/* Product */
.product-menu { background: linear-gradient(180deg,#fff,#faf7f3); }
.product-menu .table-wrap { margin-block: 28px 18px; border-color: #d9cbc0; box-shadow: 0 14px 36px rgba(72,58,48,.055); }
.product-menu th { background: #eee4dc; color: #554940; }
.product-menu tr:nth-child(even) td { background: #fcfaf8; }
.product-flow { background: #eee7e0; }
.product-flow .steps { gap: 0; overflow: hidden; border: 1px solid #dbcec4; border-radius: 26px 4px 26px 4px; }
.product-flow .steps li { border: 0; border-bottom: 1px solid #e4d9d0; border-radius: 0; padding-block: 25px; }
.product-flow .steps li:last-child { border-bottom: 0; }
.product-flow .button { margin-top: 22px; }
.product-notes { background: linear-gradient(180deg,#fff,var(--surface-warm)); }
.product-notes .content > ul { padding: 24px 24px 24px 46px; border: 1px solid #e0d4ca; border-radius: 3px 24px 3px 24px; background: #fff; }

/* Profile */
.profile-story { background: linear-gradient(180deg,#fff,#faf7f4); }
.profile-story .content { position: relative; padding: clamp(34px,6vw,62px); border: 1px solid #e3d8cf; border-left: 3px solid var(--accent-soft); border-radius: 3px 36px 3px 36px; background: rgba(255,255,255,.82); box-shadow: 0 18px 46px rgba(72,58,48,.045); }
.profile-experience { background: #eee7e0; }
.profile-experience .content { padding: clamp(34px,6vw,56px); border-radius: 34px 3px 34px 3px; background: rgba(255,255,255,.7); }
.profile-experience li { min-height: 78px; display: flex; align-items: center; }
.profile-instagram { background: linear-gradient(180deg,#fff,#faf6f2); }
.profile-instagram-card { padding: clamp(36px,6vw,56px); border-radius: 3px 34px 3px 34px; box-shadow: 0 16px 42px rgba(72,58,48,.06); }

/* Shared image grids */
.work-card:nth-child(2), .work-card:nth-child(5) { margin-top: 0; }
.work-card img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; object-position: center; }

@media (max-width: 900px) {
  .feature-list .card { min-height: 0; }
  .consultation-topics ul { columns: 1; }
  .voice-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .home-service .card { min-height: 0; }
  .home-profile::before, .home-contact .card::after { display: none; }
  .consultation-hero { min-height: 340px; }
  .consultation-overview .content > p:first-child { margin-bottom: 54px; padding: 22px 20px; }
  .feature-list { gap: 18px; }
  .feature-list .card { padding: 52px 24px 26px; }
  .consultation-topics .content { padding: 30px 22px; }
  .consultation-pricing .price { min-height: 230px; }
  .consultation-cta { padding: 34px 24px; border-radius: 3px 30px 3px 30px; }
  .consultation-cta .button { width: 100%; }
  .voice-grid { grid-template-columns: 1fr; gap: 18px; }
  .voice-card { width: 100%; }
  .work-grid { align-items: stretch; }
  .work-card:nth-child(2), .work-card:nth-child(5) { margin-top: 0; }
  .work-card img { aspect-ratio: 8 / 5; }
  .profile-story .content { padding: 32px 22px; }
  .profile-experience .content { padding: 30px 22px; }
}

/* Fourth draft: lightweight reproduction of the current WordPress design. */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7eff1;
  --text: #55504e;
  --muted: #6e6866;
  --line: #e5dadd;
  --accent: #c4a2ac;
  --accent-dark: #a77f8b;
  --radius: 0;
  --shadow: none;
  --max: 1110px;
}

body { background: #fff; color: var(--text); line-height: 1.85; }
.container { width: min(calc(100% - 40px), 1110px); }
.narrow { width: min(calc(100% - 40px), 860px); }
.site-header { position: relative; min-height: 94px; border-bottom: 1px solid #ece8e7; background: #fff; backdrop-filter: none; }
.header-inner { min-height: 94px; }
.brand { width: 180px; height: 60px; overflow: hidden; background: url('/assets/seo/ogp/140fcd89_ロゴ_整えシステム様-横.jpg') center / contain no-repeat; color: transparent; font-size: 0; }
.site-nav ul { gap: 34px; }
.site-nav a { position: relative; color: #2f2c2b; font-size: .86rem; font-weight: 600; }
.site-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -17px; height: 1px; background: var(--accent); }

.section { padding: clamp(68px,8vw,100px) 0; }
.section + .section { border-top: 0; }
.section-soft { background: #f8f2f3; }
.section-head { display: block; margin: 0 auto 46px; text-align: center; }
.section-head::before { display: none; }
.section-head h2, .content h2 { color: #5e5957; font-size: clamp(1.8rem,3.2vw,2.45rem); font-weight: 560; }
.section-head p { margin: 12px auto 0; color: var(--muted); }
.section-head .eyebrow { margin-bottom: 8px; }
.eyebrow { color: var(--accent-dark); font-size: .72rem; letter-spacing: .18em; }

.button, .button-secondary { min-width: 190px; min-height: 48px; border: 1px solid var(--accent); border-radius: 0; background: transparent; box-shadow: none; color: var(--accent-dark); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; transition: background-color .18s ease, color .18s ease; }
.button::after { content: " →"; margin-left: 12px; }
.button:hover, .button-secondary:hover { transform: none; background: var(--accent); box-shadow: none; color: #fff; }
.card { border: 0; border-radius: 0; background: transparent; padding: 0; box-shadow: none; }

/* HOME mirrors the image-led WordPress layout. */
.home-hero { min-height: 405px; display: grid; align-items: center; padding: 0; background: linear-gradient(90deg,rgba(68,58,53,.38),rgba(255,255,255,.05)), url('/assets/service/01d07400_1-1.png') center 53% / cover no-repeat; }
.home-hero-grid { display: block; }
.home-hero-copy { max-width: 660px; }
.home-hero .eyebrow { color: rgba(255,255,255,.88); }
.home-hero h1 { margin: 0; color: #fff; font-size: clamp(1.6rem,2.5vw,2.15rem); font-weight: 500; line-height: 1.5; text-shadow: 0 2px 9px rgba(39,31,27,.24); }
.home-intro { padding: clamp(62px,8vw,96px) 0; text-align: center; }
.home-intro .hero-copy { max-width: 650px; color: #615b59; }
.home-intro .hero-copy::before { content: "SNS発信と働き方を\Aあなたらしく整える"; display: block; margin-bottom: 26px; color: var(--accent-dark); font-size: clamp(1.45rem,3vw,2rem); line-height: 1.7; white-space: pre; }
.home-service { background: #fff; }
.home-service .grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.home-service .card { display: grid; grid-template-columns: 1fr 1fr; min-height: 0; align-items: stretch; }
.home-service .card:nth-child(2) { margin-top: 0; }
.home-service .card:nth-child(2) .service-image { order: 2; }
.service-image { margin: 0; min-height: 390px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px,7vw,78px); background: #f8f0f2; }
.home-service .card:nth-child(2) .service-copy { background: #f6f4f2; }
.service-copy h3 { margin: 4px 0 14px; color: #554f4d; font-size: clamp(1.35rem,2.2vw,1.75rem); font-weight: 520; }
.service-copy .button { align-self: flex-start; margin-top: 20px; }
.home-portfolio { background: #f7edef; }
.home-portfolio .work-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 22px; align-items: start; }
.home-portfolio .work-card { grid-column: span 2; margin: 0; }
.home-portfolio .work-card:nth-child(4) { grid-column: 2 / span 2; }
.home-portfolio .work-card:nth-child(5) { grid-column: 4 / span 2; }
.work-card { border: 0; background: transparent; }
.work-card img { border-radius: 0; box-shadow: none; }
.work-card figcaption { padding: 11px 0; border-bottom: 1px solid #dac7cd; color: #6c6563; text-align: center; }
.home-portfolio .hero-actions { justify-content: center; }
.home-profile { padding-block: clamp(72px,9vw,118px); background: #fff; }
.home-profile::before { display: none; }
.profile-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px,8vw,110px); padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.profile-panel > div:first-child { padding-right: 48px; border-right: 1px solid var(--accent); text-align: right; }
.profile-name { color: #655e5b; font-size: clamp(2.2rem,4vw,3.3rem); }
.profile-panel h2 { font-size: 1.15rem; font-weight: 500; }
.profile-summary { max-width: 560px; align-self: center; }
.home-contact { padding-block: clamp(70px,9vw,110px); border-top: 1px solid var(--accent) !important; background: #fff; text-align: center; }
.home-contact .card { max-width: 780px; padding: 0; border: 0; border-radius: 0; box-shadow: none; }
.home-contact .card::after { display: none; }
.home-contact h2 { padding-bottom: 18px; border-bottom: 1px solid #eee7e7; font-size: 2rem; }

/* Inner page header */
.page-hero, .consultation-hero, .profile-hero { min-height: 250px; display: grid; align-items: center; padding: 0; border: 0; background: #edd9de; text-align: center; }
.page-hero::after { display: none; }
.page-hero h1 { margin-bottom: 12px; color: #5f5755; font-size: clamp(2.1rem,4.5vw,3.3rem); font-weight: 500; }
.page-hero p { margin-inline: auto; color: #6e6664; }

/* Consultation: flat sections with WordPress-like spacing. */
.consultation-overview { background: #fff; }
.consultation-overview .content > p:first-child { max-width: 760px; margin: 0 auto 70px; padding: 0; border: 0; background: transparent; text-align: center; }
.feature-list { gap: 42px; }
.feature-list .card { min-height: 0; padding: 26px 0 0; border: 0; border-top: 2px solid #d7b8c1; border-radius: 0; background: transparent; }
.feature-list .card h3 { min-height: 3em; margin: 0 0 16px; font-size: 1.12rem; }
.feature-list .number { top: -34px; right: auto; left: 0; color: var(--accent-dark); }
.consultation-topics { background: #f8f0f2; }
.consultation-topics .content { padding: 0; border: 0; border-radius: 0; background: transparent; }
.consultation-topics ul { max-width: 760px; margin-inline: auto; }
.consultation-pricing { background: #fff; }
.consultation-pricing .price-grid { gap: 30px; }
.consultation-pricing .price { min-height: 240px; padding: 34px; border: 1px solid #d6bcc4; border-radius: 0; background: #fff; box-shadow: none; text-align: center; }
.consultation-cta { margin-top: 66px; padding: 58px 20px; border: 0; border-top: 1px solid var(--accent); border-bottom: 1px solid var(--accent); border-radius: 0; background: #faf7f7; box-shadow: none; color: var(--text); text-align: center; }
.consultation-cta::after { display: none; }
.consultation-cta h2, .consultation-cta p, .consultation-cta .eyebrow { color: inherit; }
.consultation-cta .button { background: transparent; color: var(--accent-dark); }
.consultation-voices { background: #f8f0f2; }
.voice-grid { gap: 20px; }
.voice-card { border: 1px solid #d9c6cc; border-radius: 0; box-shadow: none; }
.voice-card figcaption { border-top: 1px solid #e7dadd; text-align: center; }
.consultation-instagram { background: #fff; text-align: center; }
.consultation-instagram-card { padding: 54px 0; border-top: 1px solid var(--accent); border-bottom: 1px solid var(--accent); border-radius: 0; box-shadow: none; }

/* Product */
.product-menu { background: #fff; }
.product-menu .table-wrap { border: 1px solid #d9c8cd; border-radius: 0; box-shadow: none; }
.product-menu th { background: #eddde1; }
.product-menu tr:nth-child(even) td { background: #faf7f7; }
.product-flow { background: #f8f0f2; }
.product-flow .steps { border: 0; border-radius: 0; background: transparent; }
.product-flow .steps li { padding: 24px 20px 24px 72px; border: 0; border-bottom: 1px solid #ddcbd0; background: transparent; }
.product-flow .steps li:first-child { border-top: 1px solid #ddcbd0; }
.product-notes { background: #fff; }
.product-notes .content > ul { padding: 24px 24px 24px 46px; border: 0; border-top: 1px solid #ddcbd0; border-bottom: 1px solid #ddcbd0; border-radius: 0; background: transparent; }

/* Profile */
.profile-story { background: #fff; }
.profile-story .content { max-width: 760px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.profile-story .lead-text { color: var(--accent-dark); font-size: 1.18rem; text-align: center; }
.profile-story .lead-text::before { display: none; }
.profile-experience { background: #f8f0f2; }
.profile-experience .content { padding: 0; border-radius: 0; background: transparent; }
.profile-experience ul { gap: 0 42px; }
.profile-experience li { min-height: 74px; border-top: 1px solid #ddcbd0; }
.profile-instagram { background: #fff; text-align: center; }
.profile-instagram-card { padding: 54px 0; border-top: 1px solid var(--accent); border-bottom: 1px solid var(--accent); border-radius: 0; box-shadow: none; }

/* Footer */
.site-footer { padding: 0 0 28px; border-top: 1px solid var(--accent); background: #fff; }
.footer-grid { display: block; }
.footer-grid > div { display: none; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0; justify-content: center; padding: 10px 0; border-bottom: 1px solid #eee9e8; }
.footer-nav li { padding: 0 20px; border-right: 1px solid #e7e0df; }
.footer-nav li:last-child { border-right: 0; }
.footer-nav a { color: #4f4a48; font-size: .76rem; }
.copyright { margin: 24px 0 0; text-align: center; }

@media (max-width: 900px) {
  .site-header, .header-inner { min-height: 72px; }
  .brand { width: 145px; height: 48px; }
  .site-nav { top: 72px; }
  .home-service .card { grid-template-columns: 1fr 1fr; }
  .service-image { min-height: 330px; }
  .home-portfolio .work-grid { grid-template-columns: repeat(2,1fr); }
  .home-portfolio .work-card, .home-portfolio .work-card:nth-child(4), .home-portfolio .work-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 30px), 1110px); }
  .site-header, .header-inner { min-height: 66px; }
  .brand { width: 120px; height: 42px; }
  .site-nav { top: 66px; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .home-hero { min-height: 315px; background-position: 45% center; }
  .home-hero h1 { font-size: clamp(1.45rem,6.8vw,1.9rem); }
  .home-intro { padding-block: 56px; }
  .home-service .card { grid-template-columns: 1fr; }
  .home-service .card:nth-child(2) .service-image { order: 0; }
  .service-image { min-height: 270px; }
  .service-copy { padding: 38px 24px 46px; }
  .home-portfolio .work-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .home-portfolio .work-card:last-child { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
  .profile-panel { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .profile-panel > div:first-child { padding: 0 0 28px; border-right: 0; border-bottom: 1px solid var(--accent); text-align: center; }
  .profile-summary { margin-inline: auto; }
  .inline-links { justify-content: center; }
  .page-hero, .consultation-hero, .profile-hero { min-height: 205px; }
  .page-hero h1 { font-size: 2rem; }
  .feature-list { gap: 44px; }
  .feature-list .card h3 { min-height: 0; }
  .consultation-topics ul { columns: 1; }
  .consultation-pricing .price { min-height: 0; }
  .consultation-cta { padding-inline: 0; }
  .consultation-cta .button { width: auto; }
  .voice-grid { grid-template-columns: 1fr; }
  .profile-experience ul { grid-template-columns: 1fr; }
  .footer-nav { display: block; padding: 0 15px; }
  .footer-nav li { padding: 10px 0; border-right: 0; border-bottom: 1px solid #eee9e8; }
}

/* Fifth draft: page-by-page reproduction of the current WordPress layouts. */
:root {
  --wp-pink: #d2aebb;
  --wp-pink-pale: #f3edef;
  --wp-rule: #c9a4b0;
  --wp-ink: #5f5b59;
}

/* WordPress inner-page title band */
.page-hero,
.consultation-hero,
.profile-hero {
  min-height: 128px;
  background: var(--wp-pink);
}
.page-hero .eyebrow { display: none; }
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.35;
}

/* HOME Profile: same component used by SNS発信のヒント集. */
.home-profile { padding: 64px 0; background: #faf7f4; }
.home-profile .profile-panel {
  display: block;
  max-width: 1144px;
  margin: 0 auto;
  padding: 30px 32px;
  border: 1px solid #e2d7cf;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
}
.home-profile .profile-panel > .eyebrow { margin: 0 0 4px; }
.home-profile .profile-panel > h2 {
  margin: 0 0 24px;
  color: #403b38;
  font-size: clamp(1.35rem,2.5vw,1.7rem);
  font-weight: 700;
}
.home-profile .profile-content { display: flex; align-items: flex-start; gap: 22px; }
.home-profile .profile-placeholder {
  display: grid;
  flex: 0 0 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #f1e7de;
  color: #9b6e60;
  font-size: 1.35rem;
  font-weight: 700;
}
.home-profile .profile-copy h3 { margin: 0 0 10px; font-size: 1rem; }
.home-profile .profile-copy p { margin: 0 0 12px; color: #746b65; font-size: .85rem; }
.home-profile .profile-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; }
.home-profile .profile-links .button { min-width: 166px; min-height: 40px; }
.home-profile .profile-links > a:not(.button) { color: var(--accent-dark); font-size: .82rem; }

/* Consultation introduction and WordPress-style feature block. */
.consultation-overview { padding-top: 78px; }
.consultation-lead-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 24px;
  align-items: start;
  margin: 0 auto 92px;
}
.consultation-lead-copy { padding-right: 26px; }
.consultation-lead-copy h2,
.product-lead-copy h2 {
  margin: 0 0 28px;
  padding: 16px 0 15px;
  border-top: 2px solid var(--wp-rule);
  border-bottom: 1px solid #ece6e7;
  color: var(--wp-ink);
  font-size: clamp(1.45rem,2.3vw,1.9rem);
  line-height: 1.45;
}
.consultation-lead-copy p { margin-bottom: 25px; }
.consultation-lead-image,
.product-lead-image { margin: 0; }
.consultation-lead-image img,
.product-lead-image img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.consultation-overview .content > h2 {
  margin: 0 0 40px;
  padding: 17px 0 14px;
  border-top: 2px solid var(--wp-rule);
  border-bottom: 1px solid #ece6e7;
  text-align: center;
  font-size: clamp(1.55rem,2.5vw,2rem);
}
.feature-list { gap: 22px; }
.feature-list .card {
  display: flex;
  min-height: 390px;
  padding: 30px 25px 28px;
  flex-direction: column;
  border: 0;
  background: #fff;
  box-shadow: 3px 5px 10px rgba(85,75,72,.19);
  text-align: center;
}
.feature-list .number {
  position: static;
  margin: 0 0 28px;
  color: var(--wp-pink);
  font-size: 1.35rem;
  font-weight: 700;
}
.feature-list .card h3 {
  display: grid;
  min-height: 3.4em;
  margin: 0 0 24px;
  place-items: center;
  font-size: 1rem;
  line-height: 1.7;
}
.feature-list .card h3::after {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  margin-top: 20px;
  border-radius: 50%;
  background: #f1e8e6;
}
.feature-list .card p:last-child { margin: 0; text-align: left; }

.consultation-topics { background: #fff; }
.consultation-topics .content,
.consultation-pricing .narrow {
  width: min(calc(100% - 40px),1110px);
}
.consultation-topics .content {
  padding: 38px 42px;
  border: 1px solid var(--wp-rule);
  background: #fff;
}
.consultation-topics h2,
.consultation-pricing .section-head h2,
.product-flow h2,
.product-notes h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd5d5;
  text-align: left;
  font-size: clamp(1.45rem,2.2vw,1.85rem);
}
.consultation-topics ul { max-width: none; columns: 2; column-gap: 54px; }
.consultation-pricing { background: #faf9f9; }
.consultation-pricing .section-head { margin-bottom: 32px; text-align: left; }
.consultation-pricing .price-grid { gap: 24px; }
.consultation-pricing .price {
  min-height: 250px;
  padding: 34px 38px;
  border-color: var(--wp-rule);
  box-shadow: 3px 5px 10px rgba(85,75,72,.12);
}
.consultation-cta {
  margin-top: 52px;
  padding: 40px 36px;
  border: 1px solid var(--wp-rule);
  background: #fff;
}
.consultation-cta .button { background: #fff; }
.consultation-voices { background: #fff; }
.consultation-voices .section-head { margin-bottom: 38px; }
.voice-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 22px; }
.voice-grid .voice-card { grid-column: span 2; }
.voice-grid .voice-card:nth-child(4) { grid-column: 2 / span 2; }
.voice-grid .voice-card:nth-child(5) { grid-column: 4 / span 2; }
.voice-card { height: 100%; background: #fff; }
.consultation-instagram { padding-top: 38px; }

/* Product page mirrors the current WordPress page blocks. */
.product-menu { padding-top: 78px; }
.product-lead-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 68px;
}
.product-lead-copy { padding-right: 26px; }
.product-lead-copy h3 { margin: 26px 0 10px; color: var(--wp-ink); font-size: 1.1rem; }
.product-lead-copy ul { margin-bottom: 0; }
.product-panel {
  margin-top: 36px;
  padding: 30px 36px;
  border: 1px solid var(--wp-rule);
  background: #fff;
}
.product-panel h2 { margin-top: 0; padding-bottom: 11px; border-bottom: 1px solid #ded7d7; font-size: 1.55rem; }
.product-menu .table-wrap { margin: 22px 0 16px; }
.product-menu th { background: #f0e6e8; }
.product-flow { background: #fff; }
.product-flow .content { width: min(calc(100% - 40px),1110px); }
.product-flow .steps { border: 1px solid #ddd5d5; padding: 24px; }
.product-flow .steps li {
  margin: 0;
  padding: 24px 58px 24px 70px;
  border: 1px solid #ddd5d5;
  background: #fff;
}
.product-flow .steps li + li { margin-top: 34px; }
.product-flow .steps li:not(:last-child)::after {
  content: "⌄";
  position: absolute;
  left: 50%;
  bottom: -34px;
  color: #d2cdcb;
  font-size: 2rem;
  transform: translateX(-50%);
}
.product-notes { background: #fff; }
.product-notes .content { width: min(calc(100% - 40px),1110px); }
.product-notes .content > ul {
  margin-bottom: 48px;
  padding: 26px 34px 26px 54px;
  border: 1px solid #ddd5d5;
  box-shadow: 3px 5px 10px rgba(85,75,72,.12);
}

/* Profile page: the WordPress page's narrow, editorial flow. */
.profile-story { padding: 74px 0 82px; }
.profile-story .content { width: min(calc(100% - 40px),860px); }
.profile-story .content::before {
  content: "ちびかお";
  display: block;
  margin-bottom: 26px;
  padding: 16px 0 14px;
  border-top: 2px solid var(--wp-rule);
  border-bottom: 1px solid #ece6e7;
  color: var(--wp-ink);
  font-size: clamp(1.45rem,2.4vw,1.9rem);
  font-weight: 700;
}
.profile-story .lead-text { color: inherit; font-size: 1rem; text-align: left; }
.profile-story p { margin-bottom: 26px; }
.profile-experience { background: #f5f2f2; }
.profile-experience .content { width: min(calc(100% - 40px),860px); }
.profile-experience h2 { padding: 16px 0 14px; border-top: 2px solid var(--wp-rule); border-bottom: 1px solid #ddd5d5; }
.profile-experience ul { display: block; margin-top: 28px; }
.profile-experience li { min-height: 0; padding: 13px 0; border-top: 0; border-bottom: 1px solid #ddd5d5; }
.profile-instagram { padding-top: 54px; }

/* Exact grid balancing. */
.portfolio-social .work-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.portfolio-social .work-card,
.portfolio-web .work-card,
.portfolio-video .work-card { grid-column: auto; margin-top: 0; }
.portfolio-video .work-grid { grid-template-columns: repeat(6,minmax(0,1fr)); }
.portfolio-video .work-card { grid-column: span 2; }
.portfolio-video .work-card:first-child { grid-column: 2 / span 2; }
.portfolio-web .work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.portfolio-social .work-card img,
.portfolio-video .work-card img,
.portfolio-web .work-card img { aspect-ratio: 8 / 5; }

@media (max-width: 700px) {
  .container,
  .narrow,
  .consultation-topics .content,
  .consultation-pricing .narrow,
  .product-flow .content,
  .product-notes .content,
  .profile-story .content,
  .profile-experience .content { width: min(calc(100% - 30px),1110px); }
  .page-hero,
  .consultation-hero,
  .profile-hero { min-height: 112px; }
  .page-hero h1 { font-size: 1.7rem; }
  .section { padding: 58px 0; }

  .home-profile { padding: 46px 0; }
  .home-profile .profile-panel { margin-inline: 15px; padding: 24px 22px; }
  .home-profile .profile-content { gap: 16px; }
  .home-profile .profile-placeholder { flex-basis: 50px; height: 50px; }
  .home-profile .profile-links { align-items: flex-start; flex-direction: column; }

  .consultation-overview,
  .product-menu { padding-top: 52px; }
  .consultation-lead-grid,
  .product-lead-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 58px; }
  .consultation-lead-copy,
  .product-lead-copy { padding-right: 0; }
  .consultation-lead-copy h2,
  .product-lead-copy h2 { margin-bottom: 22px; padding: 13px 0; font-size: 1.45rem; }
  .consultation-lead-image,
  .product-lead-image { order: -1; }
  .consultation-overview .content > h2 { margin-bottom: 28px; font-size: 1.45rem; }
  .feature-list { grid-template-columns: 1fr; gap: 22px; }
  .feature-list .card { min-height: 0; padding: 28px 24px; }
  .feature-list .number { margin-bottom: 18px; }
  .feature-list .card h3 { min-height: 0; margin-bottom: 18px; }
  .feature-list .card h3::after { width: 58px; height: 58px; margin-top: 14px; }
  .consultation-topics .content { padding: 26px 22px; }
  .consultation-topics ul { columns: 1; }
  .consultation-pricing .price-grid { grid-template-columns: 1fr; }
  .consultation-cta { padding: 34px 22px; }
  .consultation-cta .button { width: 100%; }
  .voice-grid { grid-template-columns: 1fr; gap: 20px; }
  .voice-grid .voice-card,
  .voice-grid .voice-card:nth-child(4),
  .voice-grid .voice-card:nth-child(5) { grid-column: auto; }

  .product-panel { margin-top: 26px; padding: 24px 20px; }
  .product-panel h2 { font-size: 1.35rem; }
  .product-flow .steps { padding: 14px; }
  .product-flow .steps li { padding: 22px 18px 22px 56px; }
  .product-notes .content > ul { padding: 22px 18px 22px 38px; }

  .profile-story { padding: 52px 0 58px; }
  .profile-story .content::before { padding: 13px 0; font-size: 1.5rem; }
  .profile-story p { margin-bottom: 22px; }
  .profile-experience li { padding: 12px 0; }

  .portfolio-social .work-grid,
  .portfolio-video .work-grid,
  .portfolio-web .work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
  .portfolio-video .work-card,
  .portfolio-video .work-card:first-child { grid-column: auto; }
}

@media (max-width: 430px) {
  body { font-size: .95rem; line-height: 1.82; }
  .page-hero h1 { font-size: 1.55rem; }
  .button { min-width: 0; max-width: 100%; }
  .home-profile .profile-content { align-items: flex-start; }
  .home-profile .profile-copy { min-width: 0; }
  .work-card figcaption { font-size: .72rem; line-height: 1.5; }
}

/* Sixth draft: final WordPress-detail alignment. */

/* Consultation features use the three original WordPress images. */
.feature-list .card {
  min-height: 450px;
  padding: 30px 26px 32px;
}
.feature-list .card h3 {
  display: flex;
  min-height: 3.5em;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-list .card h3::after { display: none; }
.feature-image {
  width: 103px;
  height: 103px;
  margin: 0 auto 30px;
  overflow: hidden;
  flex: 0 0 103px;
  border-radius: 50%;
  background: #f1e8e6;
}
.feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.feature-list .card p:last-child { margin-top: 0; }

/* The WordPress support list is a single ruled column. */
.consultation-topics ul {
  max-width: 850px;
  margin: 18px auto 0;
  columns: 1;
}
.consultation-topics li {
  padding: 14px 10px 14px 27px;
  border-bottom: 1px solid #e3dcdc;
  line-height: 1.75;
}
.consultation-topics li:first-child { border-top: 1px solid #e3dcdc; }
.consultation-topics li::before {
  top: 27px;
  left: 8px;
  width: 7px;
  background: var(--wp-rule);
}

/* Pricing and reservation reproduce the original white support panel. */
.consultation-pricing { background: #fbfbfb; }
.consultation-pricing .price-grid { align-items: stretch; gap: 26px; }
.consultation-pricing .price {
  min-height: 270px;
  padding: 25px 28px 30px;
  border: 0;
  background: #fff;
  box-shadow: 3px 5px 10px rgba(85,75,72,.18);
  text-align: left;
}
.consultation-pricing .price > p:first-child {
  margin: 0 0 16px;
  color: #776f6d;
  font-size: .82rem;
}
.consultation-pricing .price h3 {
  margin: 0 0 28px;
  padding: 13px 16px;
  background: #f2ebeb;
  color: var(--wp-ink);
  font-size: 1.18rem;
  line-height: 1.65;
  text-align: center;
}
.consultation-pricing .price strong {
  display: block;
  margin-top: auto;
  color: #625d5b;
  font-size: clamp(1.25rem,2.1vw,1.55rem);
  font-weight: 400;
  letter-spacing: .015em;
  text-align: left;
}
.consultation-pricing .price strong span { font-size: .58em !important; font-weight: 400; }
.consultation-pricing .narrow > p { color: #77706e; font-size: .84rem; }
.consultation-cta {
  margin-top: 42px;
  padding: 26px 34px 40px;
  border: 0;
  background: #fff;
  box-shadow: 3px 5px 10px rgba(85,75,72,.18);
  text-align: center;
}
.consultation-cta .eyebrow { display: none; }
.consultation-cta h2 {
  margin: 0 0 26px;
  padding: 13px 16px;
  background: #f2ebeb;
  color: var(--wp-ink);
  font-size: 1.35rem;
}
.consultation-cta p { max-width: 690px; margin-inline: auto; }
.consultation-cta .button {
  width: min(100%,260px);
  min-width: 0;
  margin-top: 18px;
  border-color: #c49aa7;
  background: #c49aa7;
  color: #fff;
  font-size: .8rem;
}
.consultation-cta .button:hover { background: #b28794; color: #fff; }

/* Voice rows share identical image and caption geometry. */
.voice-grid { align-items: stretch; row-gap: 26px; }
.voice-card { min-height: 0; }
.voice-grid .voice-card img {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.voice-card figcaption {
  display: grid;
  min-height: 50px;
  padding: 11px 15px;
  place-items: center;
  line-height: 1.45;
}

/* Product flow: all seven steps retain the same ruled box; no arrow after 07. */
.product-flow .steps li,
.product-flow .steps li:last-child {
  min-height: 96px;
  border: 1px solid #ddd5d5;
  border-bottom: 1px solid #ddd5d5;
}
.product-flow .steps li strong {
  display: block;
  margin-bottom: 5px;
  line-height: 1.45;
}
.product-flow .steps li:last-child::after { display: none; }
.product-flow .content > p:last-child { margin: 32px 0 0; text-align: center; }
.product-panel { box-shadow: none; }

/* Profile keeps the original editorial hierarchy without cards or a timeline. */
.profile-story .lead-text {
  margin-bottom: 34px;
  color: #5e5856;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 2;
}
.profile-story p:not(.lead-text) { color: #686260; line-height: 2; }
.profile-experience .content { max-width: 860px; }
.profile-experience ul { border-top: 1px solid #d9cecf; }
.profile-experience li {
  padding: 17px 10px 17px 26px;
  border-bottom: 1px solid #d9cecf;
  line-height: 1.75;
}
.profile-experience li::before { top: 29px; left: 8px; }
.profile-instagram {
  padding-top: 64px;
  border-top: 1px solid #eadfe1;
  background: #fff;
}

/* Portfolio thumbnails and captions use fixed, even display areas. */
.portfolio-social .work-card,
.portfolio-video .work-card,
.portfolio-web .work-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.portfolio-social .work-card img,
.portfolio-video .work-card img,
.portfolio-web .work-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  object-position: center;
  background: #faf7f7;
}
.portfolio-social .work-card figcaption,
.portfolio-video .work-card figcaption,
.portfolio-web .work-card figcaption {
  display: grid;
  min-height: 50px;
  margin-top: auto;
  padding: 10px 8px;
  place-items: center;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .feature-list .card { min-height: 0; padding: 28px 24px 30px; }
  .feature-list .card h3 { min-height: 0; }
  .feature-image { width: 96px; height: 96px; margin-bottom: 24px; flex-basis: 96px; }
  .consultation-topics li { padding-block: 13px; }
  .consultation-pricing .price { min-height: 0; padding: 22px 20px 27px; }
  .consultation-pricing .price h3 { margin-bottom: 22px; font-size: 1.08rem; }
  .consultation-pricing .price strong { font-size: 1.3rem; }
  .consultation-cta { padding: 22px 20px 32px; }
  .consultation-cta h2 { font-size: 1.2rem; }
  .voice-card figcaption { min-height: 46px; }

  .product-flow .steps li,
  .product-flow .steps li:last-child { min-height: 0; padding: 21px 16px 21px 54px; }
  .product-flow .content > p:last-child .button { width: 100%; }

  .profile-story .lead-text { margin-bottom: 28px; font-size: 1.02rem; }
  .profile-story p:not(.lead-text) { line-height: 1.9; }
  .profile-experience li { padding: 14px 8px 14px 24px; }
  .profile-experience li::before { top: 26px; }
}

/* Seventh draft: WordPress pricing flow, profile identity, merged delivery and sticky header. */
html { scroll-padding-top: 110px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(94, 78, 82, .08);
}

/* Consultation: one continuous WordPress-style white information area. */
.consultation-pricing {
  padding-block: clamp(70px, 8vw, 96px);
  background: #f8f5f5;
}
.consultation-pricing .narrow { width: min(calc(100% - 40px), 920px); }
.consultation-guide {
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 5px 12px rgba(85, 75, 72, .15);
}
.consultation-guide > p:first-child {
  margin: 0;
  padding: 22px 34px 8px;
  color: #776f6d;
  font-size: .82rem;
}
.consultation-guide > h3 {
  margin: 0 34px 34px;
  padding: 16px 24px;
  background: #f2ebeb;
  color: var(--wp-ink);
  font-size: clamp(1.2rem, 2.2vw, 1.48rem);
  font-weight: 560;
  line-height: 1.6;
  text-align: center;
}
.consultation-guide-block { margin-inline: 34px; padding: 32px 0; border-top: 1px solid #e2d9da; }
.consultation-guide-block h2 {
  margin: 0 0 22px;
  color: #615a58;
  font-size: 1.25rem;
  font-weight: 560;
  text-align: left;
}
.consultation-price {
  margin: 0;
  color: #625d5b;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: .015em;
}
.consultation-price span { font-size: .62em; font-weight: 400; }
.consultation-guide .consultation-topics { padding-inline: 0; background: #fff; }
.consultation-guide .consultation-topics ul { margin: 0; }
.consultation-guide .consultation-cta {
  margin: 0 34px;
  padding: 34px 0 38px;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: #fff;
  box-shadow: none;
  text-align: left;
}
.consultation-guide .consultation-cta h2 { padding: 0; background: transparent; text-align: left; }
.consultation-guide .consultation-cta p { margin-inline: 0; }
.consultation-guide .consultation-cta .button { margin-top: 18px; }
.consultation-repeater { padding-bottom: 42px; }
.consultation-repeater > p:first-child { margin-top: 0; color: #776f6d; font-size: .82rem; }
.consultation-repeater h3 { margin: 0 0 20px; color: #625d5b; font-size: 1.13rem; font-weight: 560; line-height: 1.6; }

/* Product: delivery format is supporting information inside Other Production. */
.product-delivery { margin-top: 34px; padding-top: 26px; border-top: 1px solid #ddd5d5; }
.product-panel .product-delivery h3 { margin: 0 0 14px; color: #625c5a; font-size: 1.08rem; font-weight: 560; }
.product-delivery p:last-child { margin-bottom: 0; }

/* Profile: existing identity image and copy form one editorial introduction. */
.profile-story { padding: 76px 0 88px; }
.profile-intro-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  justify-content: center;
  gap: clamp(42px, 6vw, 76px);
  align-items: start;
}
.profile-avatar { margin: 8px 0 0; }
.profile-avatar img {
  width: 170px;
  height: 170px;
  border: 1px solid #e3d9da;
  border-radius: 50%;
  object-fit: cover;
}
.profile-intro-copy { width: auto; }
.profile-story .profile-intro-copy::before { display: none; }
.profile-intro-copy h2 {
  margin: 0 0 8px;
  padding: 0 0 14px;
  border-bottom: 1px solid #dfd4d5;
  font-size: 1.55rem;
}
.profile-role { margin: 0 0 30px; color: var(--accent-dark); font-size: .9rem; }
.profile-intro-copy .lead-text { margin-bottom: 26px; }
.profile-experience { border-top: 1px solid #eadfe1; }
.profile-instagram { padding-top: 68px; }

@media (max-width: 700px) {
  html { scroll-padding-top: 82px; }
  .site-header { min-height: 66px; }
  .site-nav { top: 66px; max-height: calc(100vh - 66px); overflow-y: auto; background: #fff; }

  .consultation-pricing .narrow { width: min(calc(100% - 30px), 920px); }
  .consultation-guide > p:first-child { padding: 18px 20px 7px; }
  .consultation-guide > h3 { margin: 0 20px 24px; padding: 13px 14px; font-size: 1.13rem; }
  .consultation-guide-block,
  .consultation-guide .consultation-cta { margin-inline: 20px; padding-block: 26px; }
  .consultation-guide-block h2 { margin-bottom: 18px; font-size: 1.12rem; }
  .consultation-price { font-size: 1.22rem; }
  .consultation-guide .consultation-cta .button { width: 100%; }
  .consultation-repeater { padding-bottom: 32px; }

  .product-delivery { margin-top: 28px; padding-top: 22px; }

  .profile-story { padding: 54px 0 62px; }
  .profile-intro-grid { grid-template-columns: 1fr; gap: 26px; width: min(calc(100% - 30px), 720px); }
  .profile-avatar { margin: 0 auto; }
  .profile-avatar img { width: 132px; height: 132px; }
  .profile-intro-copy h2 { text-align: center; }
  .profile-role { margin-bottom: 28px; text-align: center; }
  .profile-intro-copy .lead-text { font-size: 1rem; text-align: left; }
}

/* Eighth draft: only the consultation price and MOSH area. */
.consultation-pricing {
  padding-block: 20px;
  background: #fbfbfb;
}
.consultation-pricing .narrow {
  width: min(calc(100% - 40px), 1110px);
  padding: 20px 38px;
  background: #fbfbfb;
}
.consultation-guide {
  padding: 24px;
  overflow: visible;
  background: #fff;
  box-shadow: 6px 6px 9px rgba(0, 0, 0, .2);
  color: #706d6d;
  font-size: 16px;
  line-height: 1.7;
}
.consultation-guide-title {
  margin: 0 0 24px;
  padding: 14px 17px 12px;
  background: #f2ebeb;
  color: #706d6d;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.consultation-guide-description p { margin: 0 0 24px; }
.consultation-guide-price h3 {
  margin: 0 0 19px;
  padding: 0 0 7px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  color: #b18c96;
  font-size: 19.2px;
  font-weight: 600;
  line-height: 1.55;
}
.consultation-guide-price p {
  margin: 0 0 24px;
  color: #706d6d;
  font-size: 16px;
  font-weight: 400;
}
.consultation-apply { text-align: center; }
.consultation-apply > p {
  margin: 0 0 24px;
  color: #b18c96;
  line-height: 1.7;
}
.consultation-apply .button {
  width: auto;
  min-width: 168px;
  min-height: 45px;
  padding: 9px 20px;
  border: 1px solid #c49aa7;
  border-radius: 3px;
  background: #c49aa7;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: none;
}
.consultation-apply .button::after { display: none; }
.consultation-apply .button:hover { background: #b28794; color: #fff; }
.consultation-repeater {
  margin: 45px 0 0;
  padding: 0;
  border: 0;
}
.consultation-repeater p { margin: 0 0 24px; }
.consultation-repeater p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .consultation-pricing { padding-block: 20px; }
  .consultation-pricing .narrow {
    width: min(calc(100% - 54px), 1110px);
    padding: 20px 21px;
  }
  .consultation-guide {
    padding: 21px;
    font-size: 14px;
    line-height: 1.7;
  }
  .consultation-guide-title {
    margin-bottom: 21px;
    padding: 12px 14px 11px;
    font-size: 21px;
  }
  .consultation-guide-description p,
  .consultation-guide-price p,
  .consultation-apply > p,
  .consultation-repeater p { margin-bottom: 21px; }
  .consultation-guide-price h3 {
    margin-bottom: 17px;
    font-size: 16.8px;
  }
  .consultation-guide-price p { font-size: 14px; }
  .consultation-apply .button {
    width: auto;
    min-width: 156px;
    min-height: 40px;
    padding: 8px 16px;
  }
  .consultation-repeater { margin-top: 40px; }
}

/* Ninth draft: final profile-only spacing and alignment. */
.home-profile .profile-panel > .eyebrow { margin-bottom: 22px; }

@media (max-width: 700px) {
  .home-profile .profile-panel { text-align: left; }
  .home-profile .profile-content {
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }
  .home-profile .profile-copy { min-width: 0; text-align: left; }
  .home-profile .profile-copy h3 { margin: 2px 0 8px; text-align: left; }
  .home-profile .profile-copy p { line-height: 1.75; text-align: left; }
  .home-profile .profile-links { align-items: flex-start; gap: 12px; }

  .profile-intro-grid { gap: 18px; }
  .profile-intro-copy h2 {
    margin-bottom: 10px;
    padding-bottom: 12px;
    text-align: left;
  }
  .profile-role { margin-bottom: 26px; text-align: left; }
}

/* Final legal pages: readable long-form hierarchy. */
.legal-content { max-width: 860px; }
.legal-content h2 {
  margin-top: 3.2em;
  padding: 0 0 12px;
  border-bottom: 1px solid #dfd4d5;
  color: #5f5957;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 600;
}
.legal-content h2:first-of-type { margin-top: 2.5em; }
.legal-content h3 {
  margin-top: 2em;
  color: #716a68;
  font-size: 1.08rem;
  font-weight: 600;
}
.legal-content p,
.legal-content li { line-height: 1.9; }
.legal-content li + li { margin-top: .35em; }
.legal-content strong { color: #5f5957; }

@media (max-width: 700px) {
  .legal-content h2 { margin-top: 2.7em; font-size: 1.2rem; }
  .legal-content h2:first-of-type { margin-top: 2.2em; }
  .legal-content h3 { margin-top: 1.8em; font-size: 1.02rem; }
}
