@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap");

:root {
  --bg: #f4efe7;
  --paper: #fffaf4;
  --surface: rgba(255, 250, 244, 0.8);
  --surface-strong: #fff9f2;
  --surface-dark: #0f2a38;
  --ink: #18232b;
  --ink-soft: #53606c;
  --ink-inverse: #f6f2eb;
  --line: rgba(24, 35, 43, 0.1);
  --line-strong: rgba(24, 35, 43, 0.18);
  --accent: #d85d2a;
  --accent-strong: #b8481a;
  --accent-soft: rgba(216, 93, 42, 0.12);
  --sea: #1f6d78;
  --sea-soft: rgba(31, 109, 120, 0.12);
  --ok: #2a7b51;
  --shadow: 0 20px 50px rgba(23, 31, 37, 0.12);
  --shadow-soft: 0 12px 30px rgba(23, 31, 37, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(31, 109, 120, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(216, 93, 42, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf6ef 0%, #f2ebe2 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-shell {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--sea);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-head {
  display: grid;
  gap: 18px;
  align-items: end;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  margin-bottom: 32px;
}

.section-head h2,
.page-hero h1,
.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-head h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.section-head p,
.lead,
.page-hero p,
.hero-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.lead {
  font-size: 1.08rem;
}

.page-shell {
  padding-top: 108px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 244, 236, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(15, 42, 56, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #12394b, #1f6d78);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-soft);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.3;
}

.site-header .brand {
  flex: 0 0 48px;
  max-width: 48px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(216, 93, 42, 0.12);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary svg {
  transform: rotate(180deg);
}

.nav-dropdown summary:hover,
.nav-dropdown summary.is-current,
.nav-dropdown[open] summary {
  color: var(--ink);
  background: rgba(216, 93, 42, 0.12);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  font-weight: 800;
  white-space: nowrap;
}

.phone-note {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.btn.mobile-call-btn {
  display: none;
}

.mobile-call-label-short {
  display: none;
}

.mobile-call-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--ink-inverse);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 30px rgba(216, 93, 42, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-tonal {
  background: rgba(31, 109, 120, 0.12);
  color: var(--sea);
}

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

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(216, 93, 42, 0.22), transparent 70%);
}

.hero::after {
  bottom: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 109, 120, 0.22), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: stretch;
}

.hero-copy {
  padding: 42px;
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid rgba(15, 42, 56, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(31, 109, 120, 0.1), transparent 30%);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 6vw, 6rem);
  margin-bottom: 22px;
}

.hero-copy p {
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.chip-row,
.pill-grid,
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip,
.pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.chip-row {
  margin-top: 28px;
}

.mini-badge {
  background: rgba(31, 109, 120, 0.08);
  color: var(--sea);
}

.chip-icon,
.pill-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink-inverse);
  background: var(--sea);
  font-size: 0.8rem;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-grid > *,
.hero-side > *,
.hero-side-bottom > *,
.split-layout > *,
.stack > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.info-band > *,
.process-grid > *,
.faq-list > *,
.article-grid > *,
.review-grid > *,
.service-grid > *,
.issue-grid > *,
.brand-grid > *,
.area-grid > *,
.info-grid > *,
.footer-shell > * {
  align-self: start;
}

.visual-card,
.quote-panel,
.cta-panel,
.metric-card,
.person-card,
.note-card,
.price-card,
.faq-card,
.contact-panel,
.article-card,
.review-card,
.service-card,
.issue-card,
.brand-card,
.area-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-soft);
}

.visual-card {
  overflow: hidden;
  padding: 26px;
}

.visual-stage {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(216, 93, 42, 0.15), transparent 30%),
    radial-gradient(circle at bottom left, rgba(31, 109, 120, 0.14), transparent 28%),
    linear-gradient(180deg, #f8f0e7 0%, #f4fbfb 100%);
}

.visual-stage img {
  width: min(380px, 100%);
  margin: 0 auto;
}

.visual-copy {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.visual-copy strong {
  font-size: 1.05rem;
}

.visual-copy span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero-side-bottom {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card,
.quote-panel,
.cta-panel,
.person-card,
.note-card,
.contact-panel {
  padding: 26px;
}

.metric-card strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.metric-card span,
.quote-panel span,
.cta-panel span,
.person-card span,
.note-card span,
.contact-panel span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.quote-panel {
  background:
    linear-gradient(180deg, rgba(15, 42, 56, 0.96), rgba(21, 60, 77, 0.96)),
    linear-gradient(180deg, rgba(255, 250, 244, 0.2), transparent);
  color: var(--ink-inverse);
}

.quote-panel span {
  color: rgba(246, 242, 235, 0.78);
}

.quote-panel strong {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.issue-card,
.brand-card,
.review-card,
.article-card,
.price-card,
.area-card,
.info-card,
.faq-card {
  padding: 26px;
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--sea);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3,
.issue-card h3,
.brand-card h3,
.review-card h3,
.price-card h3,
.area-card h3,
.article-card h3,
.info-card h3,
.faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.service-card p,
.issue-card p,
.brand-card p,
.review-card p,
.price-card p,
.area-card p,
.article-card p,
.info-card p,
.faq-card p,
.person-card p,
.note-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.card-list,
.detail-list,
.price-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card-list li,
.detail-list li,
.price-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.card-list li::before,
.detail-list li::before,
.price-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--sea));
}

.info-band {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.band-item {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.band-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.band-item span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 249, 242, 0.76));
  box-shadow: var(--shadow-soft);
}

.process-step strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(216, 93, 42, 0.12);
  color: var(--accent);
  font-size: 1rem;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.price-table thead th {
  text-align: left;
  background: rgba(15, 42, 56, 0.94);
  color: var(--ink-inverse);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table td:nth-child(2) {
  font-weight: 800;
  white-space: nowrap;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.identity-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at top right, rgba(31, 109, 120, 0.08), transparent 28%);
  box-shadow: var(--shadow-soft);
}

.identity-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.identity-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.brand-pill,
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  text-decoration: none;
}

.area-pill {
  background: rgba(31, 109, 120, 0.08);
  color: var(--sea);
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-trigger span:last-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 93, 42, 0.12);
  color: var(--accent);
  flex-shrink: 0;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-content > div {
  overflow: hidden;
}

.faq-content p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-trigger span:last-child {
  transform: rotate(45deg);
}

.page-hero {
  padding: 28px 0 48px;
}

.page-hero-shell {
  padding: 40px;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(216, 93, 42, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(31, 109, 120, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}

.crumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.crumbs a {
  color: var(--sea);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.split-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.stack {
  display: grid;
  gap: 18px;
}

.cta-banner {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(15, 42, 56, 0.1);
  background:
    linear-gradient(135deg, rgba(15, 42, 56, 0.98), rgba(31, 109, 120, 0.98)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 26%);
  color: var(--ink-inverse);
  box-shadow: var(--shadow);
}

.cta-banner p {
  margin: 10px 0 0;
  color: rgba(246, 242, 235, 0.76);
  line-height: 1.72;
}

.cta-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-banner-compact {
  grid-template-columns: 1fr;
  align-items: start;
  padding: 26px;
}

.cta-banner-compact .stack {
  gap: 12px;
}

.article-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  align-items: start;
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body h2,
.article-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.article-body h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.article-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.article-body p,
.article-body li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.article-body strong {
  color: var(--ink);
}

.article-aside {
  display: grid;
  gap: 18px;
}

.article-cta {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(15, 42, 56, 0.1);
  background:
    linear-gradient(135deg, rgba(15, 42, 56, 0.98), rgba(31, 109, 120, 0.98)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 28%);
  color: var(--ink-inverse);
  box-shadow: var(--shadow);
}

.article-cta p,
.article-cta li {
  color: rgba(246, 242, 235, 0.78);
}

.article-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.18);
}

.related-links {
  display: grid;
  gap: 12px;
}

.related-link {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.related-link strong {
  display: block;
  margin-bottom: 6px;
}

.related-link span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.article-grid,
.review-grid,
.service-grid,
.issue-grid,
.brand-grid,
.area-grid,
.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-weight: 800;
}

.filter-btn.is-active {
  background: rgba(216, 93, 42, 0.12);
  color: var(--accent);
  border-color: rgba(216, 93, 42, 0.22);
}

.muted {
  color: var(--ink-soft);
}

.accent {
  color: var(--accent);
}

.sea {
  color: var(--sea);
}

.site-footer {
  padding: 34px 0 112px;
}

.footer-shell {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(180deg, rgba(15, 42, 56, 0.98), rgba(20, 52, 66, 0.98)),
    radial-gradient(circle at top right, rgba(216, 93, 42, 0.18), transparent 26%);
  color: var(--ink-inverse);
  box-shadow: var(--shadow);
}

.footer-shell .brand-copy span,
.footer-note,
.footer-links a,
.footer-contact p {
  color: rgba(246, 242, 235, 0.72);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-contact p {
  margin: 0;
  line-height: 1.68;
}

.mobile-bar {
  position: fixed;
  z-index: 45;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(15, 42, 56, 0.08);
  border-radius: 24px;
  background: rgba(15, 42, 56, 0.94);
  color: var(--ink-inverse);
  box-shadow: 0 24px 38px rgba(15, 42, 56, 0.24);
}

.mobile-bar small {
  display: block;
  color: rgba(246, 242, 235, 0.72);
}

.mobile-bar strong {
  display: block;
  font-size: 0.98rem;
}

.mobile-bar .btn {
  padding: 13px 18px;
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero-grid,
  .article-layout,
  .split-layout,
  .section-head,
  .cta-banner,
  .footer-shell,
  .identity-panel {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-band,
  .service-grid,
  .article-grid,
  .review-grid,
  .brand-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 12px;
  }

  .page-shell {
    padding-top: 92px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 48px;
  }

  .btn.mobile-call-btn {
    display: inline-flex;
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    max-width: calc(100% - 120px);
    height: 48px;
    padding: 0 16px;
    font-size: 0.92rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(216, 93, 42, 0.2);
  }

  .nav-wrap {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 180ms ease;
  }

  body.menu-open .nav-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav {
    display: grid;
    gap: 6px;
    padding: 6px;
    border-radius: 22px;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    border-radius: 18px;
    background: rgba(31, 109, 120, 0.06);
    box-shadow: none;
  }

  .header-contact {
    justify-content: space-between;
    gap: 16px;
  }

  .header-contact .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 760px) {
  .section,
  .section-tight {
    padding: 64px 0;
  }

  .section-shell,
  .hero-copy,
  .visual-card,
  .metric-card,
  .quote-panel,
  .cta-panel,
  .person-card,
  .note-card,
  .price-card,
  .faq-card,
  .contact-panel,
  .article-card,
  .review-card,
  .service-card,
  .issue-card,
  .brand-card,
  .area-card,
  .info-card,
  .page-hero-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .hero {
    padding: 34px 0 56px;
  }

  .hero-copy h1,
  .page-hero h1 {
    line-height: 0.98;
  }

  .hero-side-bottom,
  .grid-2,
  .grid-3,
  .grid-4,
  .process-grid,
  .info-band,
  .service-grid,
  .issue-grid,
  .brand-grid,
  .review-grid,
  .article-grid,
  .area-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .price-table,
  .price-table thead,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .price-table tr:last-child {
    border-bottom: 0;
  }

  .price-table td {
    border-bottom: 0;
    padding: 10px 0;
  }

  .price-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-bar {
    display: none;
  }

  .footer-shell {
    padding-bottom: 34px;
  }
}

@media (max-width: 540px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .hero-copy,
  .visual-card,
  .page-hero-shell,
  .section-shell,
  .cta-banner,
  .identity-panel {
    padding: 22px;
  }

  .btn,
  .filter-btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-copy span {
    max-width: 160px;
  }

  .phone-link {
    font-size: 0.95rem;
  }

  .btn.mobile-call-btn {
    width: 0;
    padding: 0 14px;
    font-size: 0.86rem;
    overflow: hidden;
  }

}

@media (max-width: 480px) {
  .mobile-call-label-full {
    display: none;
  }

  .mobile-call-label-short {
    display: inline;
  }

  .btn.mobile-call-btn {
    width: 0;
    padding: 0 12px;
    font-size: 0.84rem;
  }

}
