:root {
  --paper: #f7f1ea;
  --paper-2: #eee4da;
  --surface: #fffaf5;
  --ink: #21161b;
  --muted: #6f6266;
  --line: rgba(58, 36, 44, 0.16);
  --plum: #351827;
  --plum-2: #4b2338;
  --coral: #d84f2d;
  --ember: #ed7a30;
  --rose: #ca486d;
  --white: #fffdf9;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 72px rgba(46, 25, 33, 0.12);
  --radius: 10px;
  --shell: min(1220px, calc(100vw - 56px));
  --header-h: 78px;
  --section-y: clamp(54px, 5vw, 68px);
  --section-y-compact: clamp(44px, 4vw, 58px);
}

:root[data-theme="dark"] {
  --paper: #1a1316;
  --paper-2: #24191e;
  --surface: #21171b;
  --ink: #f8eee7;
  --muted: #c8b7bd;
  --line: rgba(255,255,255,.12);
  --plum: #2c1420;
  --plum-2: #492338;
  --white: #fff8f1;
  --shadow: 0 24px 72px rgba(0,0,0,.28);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #1a1316;
    --paper-2: #24191e;
    --surface: #21171b;
    --ink: #f8eee7;
    --muted: #c8b7bd;
    --line: rgba(255,255,255,.12);
    --plum: #2c1420;
    --plum-2: #492338;
    --white: #fff8f1;
    --shadow: 0 24px 72px rgba(0,0,0,.28);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a, summary, select { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: 16px; transform: translateY(-200%); z-index: 1000; padding: 10px 14px; background: var(--ink); color: var(--paper); border-radius: 6px; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-width: max-content; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.desktop-nav { display: flex; justify-content: center; gap: 26px; }
.desktop-nav a, .footer-nav a { text-decoration: none; font-size: 14px; font-weight: 650; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--coral); transition: right 150ms ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.phone-link svg { width: 20px; fill: none; stroke: var(--coral); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 7px; font-weight: 760; font-size: 14px; text-decoration: none; cursor: pointer; transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease; }
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid color-mix(in srgb, var(--ember) 65%, white); outline-offset: 3px; }
.button-primary { background: var(--coral); color: #fff; }
.button-primary:hover { background: #c94223; }
.button-secondary { border-color: color-mix(in srgb, var(--plum) 55%, transparent); color: var(--ink); background: transparent; }
.button-secondary:hover { border-color: var(--coral); color: var(--coral); }
.button-small { min-height: 42px; padding-inline: 18px; }
.mobile-menu { display: none; }

.eyebrow { margin: 0 0 10px; color: var(--coral); font-size: 11.5px; line-height: 1.25; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.display { margin: 0; font-family: var(--serif); font-size: clamp(46px, 4.9vw, 70px); line-height: 1.035; font-weight: 500; letter-spacing: -.022em; text-wrap: pretty; }
.display .accent, .accent { color: var(--coral); }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(32px, 3vw, 46px); line-height: 1.09; font-weight: 500; letter-spacing: -.018em; text-wrap: pretty; }
.page-title { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.1vw, 58px); line-height: 1.075; font-weight: 500; letter-spacing: -.02em; text-wrap: pretty; }
.lede { max-width: 62ch; color: var(--muted); font-size: clamp(16.5px, 1.35vw, 18px); line-height: 1.64; }
.kicker-line { width: 38px; height: 2px; background: var(--coral); margin-top: 18px; }

.hero { min-height: 560px; display: grid; grid-template-columns: 1.08fr 1.12fr; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-copy { position: relative; padding: clamp(48px, 5vw, 68px) clamp(32px, 3.5vw, 54px) clamp(48px, 5vw, 62px) max(28px, calc((100vw - 1220px)/2)); display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.hero-copy::before { content: ""; position: absolute; inset: auto auto -55px -85px; width: 360px; aspect-ratio: 1; background: url('/static/images/brand-mark.png') center/contain no-repeat; opacity: .035; filter: grayscale(1); pointer-events: none; }
.hero-copy .display { max-width: 13.5ch; }
.hero-copy .lead { max-width: 520px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.64; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-media { position: relative; min-height: 480px; background: var(--plum); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 88%, transparent) 0%, transparent 18%, transparent 75%, rgba(28, 12, 21, .12) 100%); pointer-events: none; }


.services-editorial { padding: var(--section-y) 0; }
.services-layout { display: grid; grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr); gap: clamp(40px, 5vw, 64px); align-items: start; }
.services-intro { position: static; }
.services-intro .section-title { max-width: 12.5ch; }
.services-photo { margin-top: 24px; aspect-ratio: 16/11; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.services-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.service-row .num { font-family: var(--serif); font-size: 19px; color: var(--muted); }
.service-row h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 19.5px; line-height: 1.3; font-weight: 650; letter-spacing: -.008em; }
.service-row p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.58; max-width: 62ch; }

.more-than { display: grid; grid-template-columns: 1fr 1.12fr; min-height: 460px; background: var(--plum); color: var(--white); }
.more-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: var(--section-y-compact) max(40px, calc((100vw - 1220px)/2)) var(--section-y-compact) max(28px, calc((100vw - 1220px)/2)); overflow: hidden; }
.more-copy::after { content: ""; position: absolute; width: 330px; height: 330px; left: -125px; bottom: -85px; background: url('/static/images/brand-mark.png') center/contain no-repeat; opacity: .08; filter: grayscale(1) brightness(4); }
.more-copy .section-title { max-width: 13.5ch; color: var(--white); }
.more-copy .copy { max-width: 50ch; color: rgba(255,255,255,.82); margin: 15px 0 0; font-size: 15.5px; line-height: 1.64; }
.more-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 30px; position: relative; z-index: 1; }
.more-point { border-top: 1px solid rgba(255,255,255,.2); padding-top: 14px; }
.more-point strong { display: block; font-size: 14px; line-height: 1.4; }
.more-point span { display: block; color: rgba(255,255,255,.7); font-size: 13px; margin-top: 5px; line-height: 1.55; }
.more-media { min-height: 420px; }
.more-media img { width: 100%; height: 100%; object-fit: cover; }

.steps { padding: var(--section-y-compact) 0; border-bottom: 1px solid var(--line); }
.steps-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 42px; align-items: center; }
.steps-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { position: relative; padding: 4px 18px 4px 22px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; }
.step .num { font-family: var(--serif); font-size: 22px; line-height: 1; }
.step h3 { margin: 10px 0 5px; font-family: var(--serif); font-size: 18px; line-height: 1.32; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.58; }

.contact-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper-2); }
.contact-details { padding: var(--section-y-compact) max(40px, calc((100vw - 1220px)/2)) var(--section-y-compact) max(28px, calc((100vw - 1220px)/2)); position: relative; overflow: hidden; }
.contact-details::after { content: ""; position: absolute; left: -90px; bottom: -120px; width: 340px; aspect-ratio: 1; background: url('/static/images/brand-mark.png') center/contain no-repeat; opacity: .045; filter: grayscale(1); }
.contact-details .section-title { max-width: 13ch; }
.contact-meta { display: grid; gap: 14px; margin-top: 24px; position: relative; z-index: 1; }
.contact-meta a, .contact-meta span { display: block; text-decoration: none; }
.contact-meta strong { font-size: 15.5px; }
.contact-meta small { display: block; color: var(--muted); margin-top: 2px; }
.hours { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 15px; max-width: 430px; }
.hours-row { display: flex; justify-content: space-between; gap: 24px; padding: 5px 0; font-size: 13.5px; }
.contact-form-wrap { background: var(--plum); color: var(--white); padding: var(--section-y-compact) max(28px, calc((100vw - 1220px)/2)) var(--section-y-compact) clamp(32px, 4vw, 58px); }
.contact-form-wrap h2 { margin: 0 0 6px; font-family: var(--serif); font-size: 30px; line-height: 1.15; }
.contact-form-wrap > p { margin: 0 0 20px; color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.55; }
.contact-form { display: grid; gap: 14px; max-width: 700px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-size: 12.5px; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: #fffaf5; color: #24161c; min-height: 45px; padding: 11px 12px; }
.contact-form textarea { min-height: 116px; resize: vertical; }
.contact-form .button { justify-self: start; }
.form-note { margin: 0; color: rgba(255,255,255,.62); font-size: 11px; max-width: 68ch; }
.form-status { min-height: 0; font-size: 13px; }
.form-status.success { padding: 10px 12px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.form-status.error { padding: 10px 12px; border: 1px solid rgba(255,120,120,.35); background: rgba(140,0,0,.18); }
.hp-field { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

.page-hero { padding: var(--section-y) 0 var(--section-y-compact); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(36px, 4vw, 52px); align-items: end; }
.page-hero .lede { margin: 0; }
.content-section { padding: var(--section-y) 0; }
.content-section.alt { background: var(--paper-2); }
.two-col { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(36px, 4vw, 52px); align-items: start; }
.prose { max-width: 68ch; font-size: 16px; line-height: 1.68; }
.prose h2, .prose h3 { font-family: var(--serif); }
.prose h2 { font-size: 32px; line-height: 1.16; margin: 0 0 18px; letter-spacing: -.015em; }
.prose h3 { margin: 30px 0 8px; font-size: 21px; line-height: 1.25; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--ink); }
.simple-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.simple-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { background: var(--paper); padding: 24px; }
.feature h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.feature p { margin: 0; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { min-width: 0; }
.team-photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; background: var(--paper-2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-photo img.team-photo-elmer { object-position: 85% top; }
.team-card h3 { margin: 12px 0 2px; font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.team-card p { margin: 0; color: var(--muted); font-size: 13px; }
.resource-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.resource-item { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.resource-item strong { font-family: var(--serif); font-size: 20px; line-height: 1.3; }
.resource-item p { margin: 0; max-width: 72ch; color: var(--muted); }
.notice { padding: 18px 20px; border-left: 3px solid var(--coral); background: var(--paper-2); color: var(--muted); font-size: 14px; }

.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-top { min-height: 98px; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.footer-brand .brand-copy strong { font-size: 19px; }
.footer-nav { justify-self: center; display: flex; gap: 26px; }
.footer-contact { text-align: right; font-size: 12px; display: grid; gap: 4px; }
.footer-contact a { font-weight: 750; text-decoration: none; }
.footer-contact span { color: var(--muted); }
.footer-bottom { min-height: 56px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 24px; font-size: 11px; color: var(--muted); }
.legal-links { display: flex; gap: 18px; }
.legal-links a { color: inherit; }
.theme-control { display: flex; align-items: center; gap: 8px; }
.theme-control select { border: 1px solid var(--line); background: var(--surface); color: var(--ink); border-radius: 5px; padding: 5px 8px; }

@media (min-width: 981px) and (max-width: 1240px) {
  :root { --shell: calc(100vw - 48px); }
  .desktop-nav { gap: 20px; }
  .header-actions { gap: 12px; }
  .phone-link { font-size: 14px; }
  .hero-copy { padding-left: 28px; padding-right: 28px; }
  .hero-copy .display { font-size: clamp(46px, 5.1vw, 62px); max-width: 13.5ch; }
  .services-layout { grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 44px; }
  .more-copy, .contact-details { padding-left: 28px; padding-right: 36px; }
  .contact-form-wrap { padding-left: 42px; padding-right: 28px; }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 800px); --header-h: 70px; }
  .desktop-nav, .header-actions { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { list-style: none; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; cursor: pointer; border-radius: 6px; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 22px; height: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu-panel { position: fixed; left: 0; right: 0; top: var(--header-h); background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px; box-shadow: var(--shadow); }
  .mobile-menu-panel nav { display: grid; }
  .mobile-menu-panel nav a { display: flex; justify-content: space-between; padding: 15px 2px; border-bottom: 1px solid var(--line); text-decoration: none; font-family: var(--serif); font-size: 23px; }
  .mobile-phone { display: inline-block; margin: 20px 0 12px; font-weight: 800; text-decoration: none; }
  .mobile-menu-panel .button { width: 100%; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; min-height: 290px; max-height: 400px; }
  .hero-media::after { background: linear-gradient(0deg, var(--paper) 0%, transparent 20%); }
  .hero-copy { padding: 38px max(20px, calc((100vw - 800px)/2)) 44px; }
  .hero-copy .display { font-size: clamp(42px, 8vw, 58px); line-height: 1.045; max-width: 14ch; }
  .services-layout, .steps-layout, .page-hero-grid, .two-col { grid-template-columns: 1fr; gap: 30px; }
  .services-intro { position: static; }
  .services-photo { max-width: 520px; }
  .more-than { grid-template-columns: 1fr; }
  .more-copy { padding: 48px max(20px, calc((100vw - 800px)/2)); }
  .more-media { min-height: 380px; }
  .steps-list { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--line); padding: 22px 0; display: grid; grid-template-columns: 44px 1fr; column-gap: 18px; }
  .step:first-child { border-top: 0; }
  .step h3 { margin: 2px 0 5px; }
  .step p { grid-column: 2; }
  .contact-band { grid-template-columns: 1fr; }
  .contact-details, .contact-form-wrap { padding-inline: max(20px, calc((100vw - 800px)/2)); }
  .page-hero { padding: 50px 0 42px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; padding: 32px 0; gap: 24px; }
  .footer-nav { justify-self: start; flex-wrap: wrap; }
  .footer-contact { text-align: left; }
  .footer-bottom { grid-template-columns: 1fr; padding: 20px 0 28px; gap: 14px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 36px); }
  .site-header .brand img { width: 44px; height: 44px; }
  .site-header .brand-copy strong { font-size: 19px; }
  .site-header .brand-copy small { font-size: 8px; }
  .hero-media { min-height: 240px; }
  .hero-copy { padding-top: 28px; }
  .hero-copy .display { font-size: clamp(40px, 10.5vw, 50px); line-height: 1.055; }
  .hero-copy .lead { margin-top: 16px; font-size: 15.5px; line-height: 1.6; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .services-editorial { padding: 44px 0; }
  .services-photo { display: none; }
  .service-row { grid-template-columns: 32px 1fr; padding: 16px 0; gap: 10px; }
  .service-row h3 { font-size: 18px; line-height: 1.3; }
  .service-row p { font-size: 14px; line-height: 1.55; }
  .more-copy { padding-block: 44px; }
  .more-points { grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
  .more-point { padding-top: 14px; }
  .more-media { min-height: 260px; }
  .steps { padding: 44px 0; }
  .contact-details, .contact-form-wrap { padding-block: 44px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 42px 0 36px; }
  .content-section { padding: 46px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 22px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .team-card h3 { font-size: 17px; }
  .resource-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 0; }
  .footer-nav a { padding: 10px 0; border-bottom: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
.mobile-contact-actions { display: none; }
@media (max-width: 600px) {
  .home-contact .contact-form-wrap { display: none; }
  .mobile-contact-actions { display: grid; gap: 10px; margin-top: 28px; }
  .mobile-contact-actions .button { width: 100%; }
}

/* Service information architecture: homepage rows are informational; detail CTAs live on /services. */
.service-list-action { display: flex; justify-content: flex-end; padding-top: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--coral); font-weight: 700; text-decoration: none; line-height: 1.35; }
.text-link span { transition: transform 150ms ease; }
.text-link:hover span { transform: translateX(4px); }

.services-page { padding-top: 0; }
.service-detail-list { border-top: 1px solid var(--line); }
.service-detail { display: grid; grid-template-columns: 56px minmax(0, 1.4fr) minmax(250px, .6fr); gap: clamp(26px, 3.5vw, 52px); padding: 46px 0; border-bottom: 1px solid var(--line); align-items: start; scroll-margin-top: calc(var(--header-h) + 24px); }
.service-detail-number { font-family: var(--serif); font-size: 21px; color: var(--muted); padding-top: 5px; }
.service-detail-main h2 { margin: 0; font-family: var(--serif); font-size: clamp(27px, 2.25vw, 35px); line-height: 1.16; letter-spacing: -.014em; text-wrap: pretty; }
.service-detail-main p { max-width: 64ch; color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.service-detail-main .service-detail-summary { margin: 12px 0 8px; color: var(--ink); font-size: 16.5px; line-height: 1.55; }
.service-detail-aside { border-left: 1px solid var(--line); padding-left: clamp(24px, 3vw, 42px); }
.service-detail-aside h3 { margin: 1px 0 14px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.service-detail-aside ul { margin: 0 0 24px; padding: 0; list-style: none; }
.service-detail-aside li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.45; }
.service-detail-aside li:first-child { border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .service-detail { grid-template-columns: 42px 1fr; gap: 16px 22px; padding: 38px 0; }
  .service-detail-aside { grid-column: 2; border-left: 0; padding-left: 0; max-width: 520px; }
}

@media (max-width: 600px) {
  .service-list-action { justify-content: flex-start; padding-top: 18px; }
  .service-row { grid-template-columns: 32px 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .service-detail-number, .service-detail-aside { grid-column: 1; }
  .service-detail-number { font-size: 17px; }
  .service-detail-main h2 { font-size: 27px; }
  .service-detail-main .service-detail-summary { font-size: 16px; }
  .service-detail-aside { margin-top: 8px; }
}

/* v1.0.6 site-wide rhythm and typography refinement */
.contact-form.is-success > :not(.form-status) { display: none; }
.contact-form.is-success .form-status { margin: 0; padding: 22px; border: 1px solid var(--line); background: var(--surface); }
.form-success-call { display: inline-block; margin-top: 12px; color: var(--coral); font-weight: 750; }
