:root {
  --bg: #faf7f3;
  --bg-soft: #f4eee7;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.72);
  --ink: #3b2f2f;
  --ink-soft: rgba(59, 47, 47, 0.76);
  --muted: rgba(59, 47, 47, 0.56);
  --line: rgba(59, 47, 47, 0.08);
  --line-strong: rgba(59, 47, 47, 0.14);
  --accent: #c84b31;
  --accent-deep: #433434;
  --accent-glow: rgba(200, 75, 49, 0.08);
  --shadow: 0 18px 40px rgba(59, 47, 47, 0.08);
  --shadow-soft: 0 10px 24px rgba(59, 47, 47, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(200, 75, 49, 0.06), transparent 32%),
    linear-gradient(180deg, #faf7f3 0%, #f7f2eb 100%);
}

body.modal-open {
  overflow: hidden;
}

body.legal-page {
  display: grid;
  place-items: center;
  padding: 24px 16px 40px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 243, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-deep);
  color: #faf7f3;
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1.12rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-copy span {
  display: none;
  color: rgba(59, 47, 47, 0.48);
  font-size: 0.77rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  z-index: 35;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(250, 247, 243, 0.98);
  box-shadow: 0 20px 40px rgba(59, 47, 47, 0.1);
  backdrop-filter: blur(16px);
}

.nav-link {
  display: none;
  color: rgba(59, 47, 47, 0.72);
  font-size: 0.98rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav.is-open .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 8px;
}

.site-nav.is-open .nav-cta {
  display: inline-flex;
  width: 100%;
  margin-top: 10px;
}

.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff7f1;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(200, 75, 49, 0.18);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(59, 47, 47, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(59, 47, 47, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 0;
}

.hero-glow {
  position: absolute;
  top: 72px;
  right: -88px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(22px);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: start;
  padding: 28px 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-rule {
  display: inline-block;
  width: 50px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 34px;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.legal-shell h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.5rem, 10vw, 4.4rem);
  line-height: 1.16;
}

.hero h1 span {
  color: rgba(59, 47, 47, 0.58);
  font-size: 0.84em;
}

.hero-lead,
.section-intro,
.contact-copy > p,
.issue-card p,
.process-card p,
.faq-list p,
.summary-item p,
.identity-card p,
.footer-grid p,
.legal-card p {
  color: var(--ink-soft);
  line-height: 1.84;
}

.hero-lead {
  margin: 26px 0 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.submit-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 74px;
  border-radius: 24px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.submit-btn:hover,
.submit-btn:focus-visible,
.ghost-btn:hover,
.ghost-btn:focus-visible {
  transform: translateY(-1px);
}

.submit-btn {
  border: 0;
  background: var(--accent-deep);
  color: #faf7f3;
  box-shadow: 0 18px 36px rgba(67, 52, 52, 0.18);
  cursor: pointer;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: #2f2525;
  box-shadow: 0 20px 38px rgba(47, 37, 37, 0.24);
}

.submit-btn:disabled {
  opacity: 0.74;
  cursor: wait;
}

.ghost-btn,
.submit-btn.ghost {
  border: 1px solid rgba(59, 47, 47, 0.1);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.ghost-btn:hover,
.ghost-btn:focus-visible,
.submit-btn.ghost:hover,
.submit-btn.ghost:focus-visible {
  background: var(--accent-deep);
  color: #faf7f3;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(67, 52, 52, 0.18);
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(59, 47, 47, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 75, 49, 0.18);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.hero-aside {
  display: grid;
  gap: 14px;
}

.aside-kicker,
.section-kicker,
.contact-meta span,
.eyebrow {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.aside-kicker {
  margin-bottom: 2px;
}

.aside-block,
.issue-card,
.faq-list details,
.contact-panel,
.identity-card,
.legal-card {
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: var(--shadow-soft);
}

.aside-block {
  padding: 22px 20px;
  border-radius: 22px;
}

.aside-block strong,
.issue-card h3,
.process-card h3,
.faq-list summary,
.summary-item strong,
.identity-card strong,
.legal-card h2 {
  display: block;
  color: var(--ink);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 600;
}

.aside-block strong {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.4;
}

.aside-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.76;
}

.section {
  padding: 76px 0;
}

.issues-section {
  position: relative;
  z-index: 4;
  margin-top: -20px;
  border-radius: 34px 34px 0 0;
  background: #fff;
  box-shadow: 0 -12px 32px rgba(59, 47, 47, 0.04);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  line-height: 1.18;
}

.section-intro,
.contact-copy > p {
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.issue-columns {
  display: grid;
  gap: 16px;
}

.issue-card {
  padding: 24px 20px 22px;
  border-radius: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-dot {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background:
    radial-gradient(circle at center, rgba(200, 75, 49, 0.86) 0 18%, transparent 18% 100%),
    rgba(200, 75, 49, 0.08);
}

.issue-index {
  color: rgba(59, 47, 47, 0.24);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1.55rem;
}

.issue-card h3 {
  margin: 0 0 12px;
  font-size: 1.72rem;
  line-height: 1.28;
}

.issue-card p {
  margin: 0;
  font-size: 1rem;
}

.issue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.issue-tags li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(59, 47, 47, 0.06);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(59, 47, 47, 0.76);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.issue-tags li::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.process-section {
  background: var(--bg);
}

.center-heading,
.center-heading .section-intro {
  text-align: center;
}

.center-heading.narrow {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.process-list {
  position: relative;
  display: grid;
  gap: 18px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(200, 75, 49, 0.16);
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #faf7f3;
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1.06rem;
  box-shadow: 0 10px 22px rgba(67, 52, 52, 0.15);
}

.process-body {
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.58rem;
  line-height: 1.28;
}

.process-card p {
  margin: 0;
  font-size: 1rem;
}

.process-card strong {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(250, 247, 243, 0.9);
  border: 1px solid rgba(59, 47, 47, 0.06);
  color: rgba(59, 47, 47, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 22px;
  padding: 0 18px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 0;
  font-size: 1.18rem;
  line-height: 1.5;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 75, 49, 0.1);
  border: 1px solid rgba(200, 75, 49, 0.16);
  color: var(--accent-deep);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--accent-deep);
  color: #faf7f3;
  border-color: transparent;
}

.faq-list p {
  margin: 0 0 20px;
  font-size: 1rem;
}

.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  gap: 22px;
}

.contact-summary {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.summary-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.summary-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 75, 49, 0.12);
  color: var(--accent);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1rem;
}

.summary-item strong {
  margin-bottom: 6px;
  font-size: 1.16rem;
  line-height: 1.42;
}

.summary-item p {
  margin: 0;
  font-size: 0.98rem;
}

.identity-card {
  margin-top: 18px;
  padding: 22px 20px;
  border-radius: 24px;
}

.identity-card strong {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.identity-card p {
  margin: 0;
  font-size: 0.98rem;
}

.identity-card p + p {
  margin-top: 8px;
}

.contact-panel {
  order: 1;
  padding: 24px 20px;
  border-radius: 28px;
}

.consult-form {
  display: grid;
  gap: 18px;
}

.consult-form label {
  display: grid;
  gap: 10px;
}

.consult-form label > span {
  color: rgba(59, 47, 47, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.consent span {
  color: rgba(59, 47, 47, 0.64);
  font-size: 0.98rem;
  line-height: 1.55;
}

.phone-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 22px;
  background: rgba(250, 247, 243, 0.92);
  color: var(--ink);
  padding: 18px 18px;
  font-size: 1.04rem;
  line-height: 1.72;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(59, 47, 47, 0.28);
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: rgba(200, 75, 49, 0.26);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 75, 49, 0.06);
}

.consult-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(59, 47, 47, 0.5) 50%),
    linear-gradient(135deg, rgba(59, 47, 47, 0.5) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.consult-form textarea {
  min-height: 150px;
  resize: vertical;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.consent input {
  margin-top: 4px;
}

.consent a,
.back-link {
  color: var(--accent);
}

.inline-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  cursor: pointer;
}

.form-submit {
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(59, 47, 47, 0.66);
  font-size: 0.95rem;
}

.trap-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  padding: 0 0 40px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-grid > div {
  display: grid;
  gap: 8px;
}

.footer-profile p {
  line-height: 1.72;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.footer-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.footer-grid a,
.footer-inline-link {
  justify-self: start;
  color: rgba(59, 47, 47, 0.72);
}

.footer-note {
  justify-self: start;
}

.footer-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-note p {
  color: rgba(59, 47, 47, 0.52);
  letter-spacing: 0.04em;
}

.reveal-item {
  opacity: 1;
  transform: none;
}

body.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

body.reveal-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item[data-reveal-kind="cards"] {
  transition-duration: 700ms, 700ms;
}

.reveal-item[data-reveal-kind="copy"] {
  transition-duration: 560ms, 560ms;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px 16px;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(59, 47, 47, 0.38);
  backdrop-filter: blur(6px);
}

.privacy-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 28px 22px 24px;
  border-radius: 28px;
  background: rgba(250, 247, 243, 0.98);
  box-shadow: 0 24px 60px rgba(59, 47, 47, 0.22);
}

.privacy-dialog h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  line-height: 1.2;
}

.privacy-copy {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.privacy-copy section {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.privacy-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1.16rem;
}

.privacy-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.privacy-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(59, 47, 47, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.legal-shell {
  width: min(720px, 100%);
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
}

.eyebrow {
  margin-bottom: 10px;
}

.legal-shell h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.18;
}

.legal-card {
  margin-top: 18px;
  padding: 24px 20px;
  border-radius: 24px;
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.legal-card p {
  margin: 0;
  font-size: 1rem;
}

.legal-card p + h2,
.legal-actions {
  margin-top: 18px;
}

@media (min-width: 780px) {
  :root {
    --container: min(1120px, calc(100vw - 64px));
  }

  .header-inner {
    min-height: 88px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    font-size: 1.28rem;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .brand-copy span {
    display: block;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
    gap: 56px;
    padding: 48px 0 88px;
  }

  .hero-lead {
    max-width: 720px;
    font-size: 1.24rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 260px));
    align-items: start;
  }

  .hero-points {
    max-width: 700px;
  }

  .issues-section {
    margin-top: -28px;
    border-radius: 44px 44px 0 0;
  }

  .section {
    padding: 94px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .issue-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .issue-card {
    padding: 28px 24px 24px;
  }

  .process-list {
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
    gap: 34px;
    align-items: start;
  }

  .contact-panel {
    order: 0;
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.7fr 1.1fr;
    gap: 22px;
  }
}

@media (min-width: 980px) {
  :root {
    --container: min(1160px, calc(100vw - 88px));
  }

  .site-nav {
    position: static;
    gap: 34px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-link {
    display: inline-flex;
    position: relative;
    transition: color 180ms ease;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .footer-grid a:hover,
  .footer-grid a:focus-visible {
    color: var(--ink);
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .nav-link:hover::after,
  .nav-link:focus-visible::after {
    transform: scaleX(1);
  }

  .nav-cta {
    min-height: 52px;
    padding: 0 26px;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(200, 75, 49, 0.22);
  }

  .hero-shell {
    gap: 72px;
    padding: 62px 0 104px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.3rem, 5vw, 5.05rem);
  }

  .hero-lead {
    font-size: 1.28rem;
  }

  .hero-aside {
    gap: 18px;
    padding-top: 10px;
  }

  .aside-block {
    padding: 24px 22px;
  }

  .issues-section {
    box-shadow: 0 -18px 40px rgba(59, 47, 47, 0.04);
  }

  .issue-card h3 {
    font-size: 1.92rem;
  }

  .issue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 75, 49, 0.18);
    box-shadow: 0 20px 38px rgba(59, 47, 47, 0.1);
  }

  .issue-tags li:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 75, 49, 0.18);
    background: rgba(200, 75, 49, 0.08);
    color: var(--ink);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .process-list::before {
    display: none;
  }

  .process-card {
    grid-template-columns: 56px 1fr;
  }

  .process-step {
    margin-top: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .process-body {
    padding: 24px 22px;
  }

  .process-card:hover .process-body,
  .process-card:focus-within .process-body {
    transform: translateY(-5px);
    border-color: rgba(200, 75, 49, 0.18);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 38px rgba(59, 47, 47, 0.1);
  }

  .process-card:hover .process-step,
  .process-card:focus-within .process-step {
    background: #2f2525;
    box-shadow: 0 18px 34px rgba(47, 37, 37, 0.18);
  }

  .faq-list {
    gap: 14px;
  }

  .faq-list details:hover,
  .faq-list details:focus-within {
    transform: translateY(-4px);
    border-color: rgba(200, 75, 49, 0.18);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 34px rgba(59, 47, 47, 0.09);
  }

  .faq-list details:hover summary,
  .faq-list details:focus-within summary {
    color: var(--accent-deep);
  }

  .faq-list details:hover summary::after,
  .faq-list details:focus-within summary::after {
    transform: translateY(-50%) scale(1.06);
    background: var(--accent-deep);
    color: #faf7f3;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(67, 52, 52, 0.18);
  }

  .contact-summary {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .submit-btn,
  .ghost-btn,
  .issue-card,
  .process-body,
  .faq-list details,
  .faq-list summary::after,
  .reveal-item {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  body.reveal-enabled .reveal-item,
  body.reveal-enabled .reveal-item.is-visible {
    opacity: 1;
  }
}
