:root {
  --bg: #f6f7f7;
  --surface: #ffffff;
  --surface-soft: #edf1f3;
  --surface-warm: #f8f8f6;
  --ink: #171c22;
  --muted: #5c6670;
  --brand: #2f4c63;
  --brand-2: #526f82;
  --accent: #1b232c;
  --accent-soft: #c7ced3;
  --line: #d8dde0;
  --shadow: 0 18px 44px rgba(23, 28, 34, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: var(--brand);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.container {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100vw - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
  overflow: hidden;
}

.brand-wordmark {
  display: block;
  width: clamp(300px, 25vw, 390px);
  height: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.brand-signet {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--brand), #123b37);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.brand-logo {
  width: min(340px, 100%);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 20px);
  font-weight: 700;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav a,
.phone-link {
  color: var(--ink);
  text-decoration: none;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover,
.phone-link:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-actions .btn {
  white-space: nowrap;
  padding-inline: 16px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(82, 111, 130, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(27, 35, 44, 0.22);
}

.btn-primary:hover {
  color: #fff;
  background: #2f4c63;
}

.btn-secondary {
  color: var(--brand);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(15, 79, 70, 0.28);
  box-shadow: 0 10px 20px rgba(23, 32, 38, 0.08);
}

.text-link {
  font-weight: 800;
}

.breadcrumbs {
  padding: 18px 0 0;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa5ad;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  background:
    linear-gradient(115deg, rgba(47, 76, 99, 0.12), rgba(199, 206, 211, 0.22) 48%, rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, #ffffff 0%, #eef2f4 100%),
    var(--bg);
  border-bottom: 1px solid rgba(23, 32, 38, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 76, 99, 0.28), transparent);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  color: #35434a;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-row li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.74);
  color: #334047;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 22px;
  z-index: -1;
  width: min(360px, 84%);
  height: calc(100% - 34px);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(82, 111, 130, 0.16), rgba(199, 206, 211, 0.22));
  border: 1px solid rgba(47, 76, 99, 0.16);
}

.hero-visual img {
  width: min(430px, 100%);
  margin-left: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(23, 32, 38, 0.12);
  box-shadow: 0 26px 58px rgba(23, 32, 38, 0.16);
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(260px, 58%);
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 20px 42px rgba(23, 32, 38, 0.13);
  backdrop-filter: blur(12px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: linear-gradient(180deg, var(--surface-soft), #f7f9f6);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.split-heading > p {
  color: var(--muted);
}

.occasion-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.occasion-card,
.service-card,
.info-box {
  display: block;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(23, 32, 38, 0.055);
}

a.occasion-card {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.occasion-card-rich {
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.occasion-card-rich::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.occasion-card-rich span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.occasion-card-rich h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.occasion-card-rich p {
  margin-bottom: 0;
  color: var(--muted);
}

.occasion-card:hover,
.service-card:hover {
  border-color: rgba(47, 76, 99, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(23, 32, 38, 0.09);
}

.service-card {
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(47, 76, 99, 0.82), rgba(82, 111, 130, 0.76));
  opacity: 0;
  transition: opacity 160ms ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  font-weight: 850;
}

.service-finder {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-finder > div:first-child p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.finder-panel {
  display: grid;
  gap: 16px;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.finder-option {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: #f8fafb;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.finder-option:hover,
.finder-option.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.finder-result {
  padding: 20px;
  border-radius: 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.finder-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.finder-result p {
  color: var(--muted);
}

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

.region-card {
  display: block;
  min-height: 100%;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 28, 34, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.region-card:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 76, 99, 0.34);
  box-shadow: 0 16px 34px rgba(23, 28, 34, 0.09);
}

.region-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-weight: 900;
  font-size: 1.08rem;
}

.region-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.comparison-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 28, 34, 0.055);
}

.comparison-card h2 {
  font-size: 1.25rem;
}

.comparison-card p {
  color: var(--muted);
}

.comparison-card a {
  font-weight: 850;
}

.region-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.region-link-row a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.region-link-row.compact {
  gap: 8px;
}

.credential-section {
  background:
    linear-gradient(135deg, rgba(47, 76, 99, 0.08), transparent 48%),
    #fff;
}

.credential-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(460px, 1fr);
  gap: 42px;
  align-items: center;
}

.credential-copy p {
  color: var(--muted);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credential-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.07);
}

.credential-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-card strong {
  display: block;
  font-size: 1.08rem;
}

.credential-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.credential-card-badge {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  grid-column: span 2;
}

.credential-card-badge img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 34px;
  align-items: center;
}

.about-detail-grid p {
  color: var(--muted);
}

.qualification-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.qualification-panel img {
  display: block;
  width: min(150px, 60%);
  height: auto;
  margin-bottom: 18px;
}

.qualification-panel strong {
  display: block;
  font-size: 1.16rem;
}

.qualification-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

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

.qualification-grid-rich .service-card h2 {
  font-size: 1.2rem;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 32, 38, 0.06);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 950;
  font-size: 0.9rem;
}

.process-step h2 {
  font-size: 1.35rem;
}

.process-step p {
  color: var(--muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
}

.proof-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(82, 111, 130, 0.28), transparent 42%),
    #151b22;
}

.proof-section .eyebrow {
  color: #c7d4dc;
}

.proof-section p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

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

.proof-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-list strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #151b22;
  background: #c7d4dc;
}

.contact-band {
  background: linear-gradient(135deg, var(--surface-warm), #edf1f3);
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 32, 38, 0.06);
}

.faq-block details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 28, 34, 0.045);
}

.faq-block details + details {
  margin-top: 10px;
}

.faq-block summary {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-block details p {
  padding: 0 18px 18px;
  margin: 0;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-form .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd8d3;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 76, 99, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 76, 99, 0.08);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-success {
  display: none;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  color: #2f4c63;
  background: #edf4f7;
  border: 1px solid #cbd9e0;
  font-weight: 750;
}

.form-success.show {
  display: block;
}

.form-success.is-error {
  color: #7a2c1d;
  background: #fff1ed;
  border-color: #f0c6bb;
}

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

.page-hero {
  padding: 64px 0 42px;
  background:
    linear-gradient(110deg, rgba(47, 76, 99, 0.11), rgba(199, 206, 211, 0.22)),
    var(--surface-soft);
  border-bottom: 1px solid rgba(23, 32, 38, 0.08);
}

.subpage h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.legal-page {
  padding: 54px 0 80px;
  background: #fff;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 1.35rem;
}

.site-footer {
  padding: 44px 0 72px;
  color: #3f4a54;
  background: #eef1f3;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 32px;
}

.footer-grid-wide {
  grid-template-columns: 1.28fr 0.72fr 0.72fr 0.95fr 1.42fr;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--ink);
}

.footer-brand .brand-logo {
  width: min(340px, 100%);
  max-height: none;
  border-radius: 8px;
  background: transparent;
}

.footer-brand small {
  color: var(--muted);
}

.site-footer h2 {
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 9px;
}

.contact-checklist {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-checklist h3 {
  margin-bottom: 12px;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.mobile-sticky a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.mobile-sticky a:nth-child(3) {
  background: var(--brand-2);
}

@media (max-width: 980px) {
  .header-actions .phone-link,
  .nav {
    display: none;
  }

  .hero-grid,
  .proof-grid,
  .contact-grid,
  .service-finder,
  .profile-feature,
  .service-detail-grid,
  .split-heading,
  .credential-layout,
  .about-detail-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .occasion-grid,
  .service-grid,
  .region-grid,
  .comparison-grid,
  .process-grid,
  .credential-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    width: min(520px, 100%);
  }

  .hero-visual img {
    margin: 0;
    width: 100%;
  }

  .hero-visual::before {
    display: none;
  }
}

@media (max-width: 1120px) {
  .brand-wordmark {
    width: clamp(270px, 24vw, 330px);
  }

  .nav {
    gap: 10px;
    font-size: 0.94rem;
  }

  .header-actions .btn {
    padding-inline: 14px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

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

  .header-actions {
    display: none;
  }

  .brand-signet {
    width: 46px;
    height: 46px;
  }

  .brand-wordmark {
    width: min(292px, 76vw);
    max-height: 68px;
  }

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

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

  .hero-grid {
    gap: 28px;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .occasion-grid,
  .service-grid,
  .region-grid,
  .comparison-grid,
  .process-grid,
  .qualification-grid,
  .credential-grid,
  .footer-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .credential-card-badge {
    grid-column: auto;
    grid-template-columns: 68px 1fr;
  }

  .credential-card-badge img {
    width: 68px;
    height: 68px;
  }

  .footer-links-columns {
    grid-template-columns: 1fr;
  }

  .lead-form .full {
    grid-column: auto;
  }

  .service-finder {
    padding: 18px;
  }

  .finder-options {
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    display: grid;
  }
}
