:root {
  --ink: #15352f;
  --ink-deep: #0e2925;
  --ink-soft: #31534c;
  --cream: #f5f0e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --gold: #c99b55;
  --gold-bright: #dfb36b;
  --sage: #abc3b5;
  --muted: #6e7a75;
  --line: rgba(21, 53, 47, 0.14);
  --shadow: 0 24px 70px rgba(16, 48, 42, 0.12);
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(14, 41, 37, 0.96);
  box-shadow: 0 12px 32px rgba(8, 24, 21, 0.18);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(223, 179, 107, 0.45);
  border-radius: 50%;
}

.brand-mark svg {
  width: 28px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.header-cta {
  padding: 12px 19px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-bright);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(68, 111, 99, 0.34), transparent 37%),
    linear-gradient(135deg, #102f2a 0%, #173f37 53%, #0d2925 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 40%, black);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.2;
}

.hero-glow-one {
  top: 20%;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--gold);
}

.hero-glow-two {
  top: 34%;
  right: -70px;
  width: 320px;
  height: 320px;
  border: 1px solid var(--sage);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  min-height: 710px;
  padding-top: 92px;
}

.hero-copy {
  padding: 38px 0 50px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #9c703d;
}

.eyebrow.light {
  color: var(--gold-bright);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  font-size: clamp(52px, 5.2vw, 78px);
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}

h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.14;
}

h2 em {
  color: #af7f42;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  color: #17352f;
  background: var(--gold-bright);
  box-shadow: 0 15px 38px rgba(198, 149, 76, 0.18);
}

.button-accent:hover {
  background: #e7bd7b;
  box-shadow: 0 18px 44px rgba(198, 149, 76, 0.28);
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.text-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 5px;
}

.trust-row {
  display: flex;
  gap: 38px;
  margin-top: 54px;
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-row svg {
  width: 28px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row strong,
.trust-row small {
  display: block;
}

.trust-row strong {
  font-size: 11px;
}

.trust-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.arch-card {
  position: relative;
  width: min(450px, 100%);
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 230px 230px 8px 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(226, 186, 119, 0.16), transparent 34%),
    linear-gradient(180deg, #2a5148, #173931 72%);
  box-shadow: 0 42px 95px rgba(5, 22, 18, 0.33);
}

.arch-card::before,
.arch-card::after {
  position: absolute;
  border: 1px solid rgba(223, 179, 107, 0.16);
  border-radius: 50%;
  content: "";
}

.arch-card::before {
  inset: 8% -35% 10%;
}

.arch-card::after {
  inset: 19% -14% 0;
}

.arch-sun {
  position: absolute;
  top: 26%;
  left: 50%;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 185, 109, 0.23), rgba(228, 185, 109, 0.03) 70%);
  transform: translate(-50%, -50%);
}

.family-art {
  position: absolute;
  inset: 5% 2% auto;
  width: 96%;
  height: 84%;
}

.art-line {
  fill: none;
  stroke: rgba(242, 224, 191, 0.48);
  stroke-width: 2;
}

.art-line.faint {
  stroke: rgba(242, 224, 191, 0.18);
}

.art-fill {
  fill: #bd9160;
}

.art-fill.secondary {
  fill: #8ca99b;
}

.shield-line {
  fill: rgba(228, 185, 109, 0.025);
  stroke: rgba(240, 205, 145, 0.53);
  stroke-width: 2.2;
}

.visual-quote {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 27px 35px 32px;
  background: linear-gradient(to top, rgba(9, 35, 30, 0.94), rgba(9, 35, 30, 0.12));
}

.visual-quote span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}

.visual-quote p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.availability-card {
  position: absolute;
  right: -25px;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 275px;
  padding: 16px 19px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(3, 20, 16, 0.28);
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #5e9e72;
}

.pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid #5e9e72;
  border-radius: inherit;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.65); }
  100% { opacity: 0; transform: scale(1.45); }
}

.availability-card strong,
.availability-card small {
  display: block;
}

.availability-card strong {
  font-size: 10px;
}

.availability-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 29px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 45px;
  height: 1px;
  margin-left: 14px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-foot p {
  margin: 0 0 0 auto;
}

.section {
  padding: 118px 0;
}

.intro {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 345px;
  padding: 39px 36px 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:not(.service-cta):hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: rgba(21, 53, 47, 0.24);
  font-family: var(--serif);
  font-size: 12px;
}

.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 37px;
  color: #b6874e;
  border: 1px solid rgba(182, 135, 78, 0.38);
  border-radius: 50%;
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
  transition: color 0.25s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.card-link {
  position: absolute;
  bottom: 31px;
  left: 36px;
  padding: 0 0 4px;
  color: #9a6c35;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(154, 108, 53, 0.4);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.service-card:hover .card-link {
  color: var(--gold-bright);
}

.card-link span {
  margin-left: 7px;
}

.service-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 179, 107, 0.16), transparent 40%),
    var(--ink);
}

.service-cta::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(223, 179, 107, 0.17);
  border-radius: 50%;
  content: "";
}

.service-cta h3 {
  max-width: 240px;
  margin-top: 14px;
  font-size: 25px;
  line-height: 1.45;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 17, 0.78);
  backdrop-filter: blur(8px);
}

.service-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(930px, 100%);
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(201, 155, 85, 0.13), transparent 30%),
    var(--paper);
  box-shadow: 0 38px 110px rgba(0, 13, 11, 0.36);
  outline: none;
  transform: translateY(20px) scale(0.985);
  transition: transform 0.25s ease;
  scrollbar-color: rgba(21, 53, 47, 0.28) transparent;
}

.service-modal.open .service-modal-dialog {
  transform: translateY(0) scale(1);
}

.service-modal-dialog::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent 85%);
  content: "";
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
  color: var(--white);
  background: var(--ink);
  outline: none;
  transform: rotate(6deg);
}

.service-modal-close span {
  margin-top: -2px;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.service-modal-inner {
  padding: 48px 58px 42px;
}

.service-modal-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 55px;
  color: #9a6c35;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-modal-kicker > span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.service-modal-heading {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: 24px;
  margin-top: 27px;
}

.service-modal-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #a4753e;
  border: 1px solid rgba(164, 117, 62, 0.38);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
}

.service-modal-heading h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.18;
}

.service-modal-heading p {
  max-width: 690px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-modal-grid article {
  padding: 27px 30px 27px 0;
}

.service-modal-grid article + article {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.service-modal-label {
  display: flex;
  align-items: center;
  gap: 11px;
}

.service-modal-label > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  color: #a4753e;
  border: 1px solid rgba(164, 117, 62, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 9px;
}

.service-modal-label h3 {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-modal-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-modal-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.service-modal-grid li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid #a4753e;
  border-radius: 50%;
  content: "";
}

.service-modal-process {
  margin-top: 28px;
  padding: 23px 25px 25px;
  background: var(--cream);
}

.service-modal-process ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: modal-step;
}

.service-modal-process li {
  position: relative;
  padding: 0 8px 0 31px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
  counter-increment: modal-step;
}

.service-modal-process li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #a4753e;
  font-family: var(--serif);
  font-size: 17px;
  content: counter(modal-step, decimal-leading-zero);
}

.service-modal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.service-modal-note > span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #9a6c35;
  border: 1px solid rgba(154, 108, 53, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 10px;
}

.service-modal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.service-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 27px;
}

.service-modal-back {
  padding: 8px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 53, 47, 0.3);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.service-modal-back:hover,
.service-modal-back:focus-visible {
  color: var(--ink);
  outline: none;
}

.free-advice {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 4%, rgba(201, 155, 85, 0.1), transparent 27%),
    var(--cream);
}

.free-advice::before {
  position: absolute;
  top: 60px;
  right: -190px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(21, 53, 47, 0.06);
  border-radius: 50%;
  content: "";
}

.free-advice-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.advice-privacy-note {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 310px;
  padding: 15px 18px;
  border: 1px solid rgba(21, 53, 47, 0.14);
  background: rgba(255, 255, 255, 0.35);
}

.advice-privacy-note svg {
  width: 27px;
  flex: 0 0 27px;
  fill: none;
  stroke: #a4753e;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advice-privacy-note p,
.advice-privacy-note strong,
.advice-privacy-note span {
  display: block;
  margin: 0;
}

.advice-privacy-note strong {
  font-size: 12px;
}

.advice-privacy-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.advice-tool {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  min-height: 640px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 32px 85px rgba(14, 41, 37, 0.16);
}

.advice-sidebar {
  padding: 42px 0 42px 40px;
  background:
    radial-gradient(circle at 0 100%, rgba(73, 119, 106, 0.32), transparent 45%),
    var(--ink-deep);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.advice-sidebar-label {
  display: block;
  padding: 0 28px 23px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.advice-tabs {
  display: grid;
}

.advice-tab {
  display: grid;
  grid-template-columns: 31px 1fr 20px;
  align-items: center;
  gap: 13px;
  min-height: 79px;
  padding: 0 27px 0 0;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.advice-tab:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advice-tab > span {
  color: rgba(223, 179, 107, 0.55);
  font-family: var(--serif);
  font-size: 13px;
}

.advice-tab strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.advice-tab i {
  color: var(--gold-bright);
  font-size: 15px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.advice-tab:hover,
.advice-tab:focus-visible,
.advice-tab.active {
  padding-left: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.advice-tab.active i {
  opacity: 1;
  transform: translateX(0);
}

.advice-tab.urgent-tab > span,
.advice-tab.urgent-tab i {
  color: #e19584;
}

.advice-panel {
  padding: 48px 55px 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 179, 107, 0.09), transparent 33%),
    var(--ink);
  transition: opacity 0.13s ease, transform 0.13s ease;
}

.advice-panel.changing {
  opacity: 0.35;
  transform: translateY(4px);
}

.advice-panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 21px;
}

.advice-panel-topline span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advice-panel-topline time {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.advice-panel h3 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
}

.advice-summary {
  max-width: 690px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.advice-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 32px;
  padding-top: 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.advice-block h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advice-block h4 span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--gold-bright);
  border: 1px solid rgba(223, 179, 107, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 400;
}

.advice-block ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advice-block li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

.advice-block li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  content: "";
}

.documents-block li::before {
  border-radius: 0;
  transform: rotate(45deg);
}

.advice-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.advice-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 500px;
}

.advice-disclaimer > span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--gold-bright);
  border: 1px solid rgba(223, 179, 107, 0.45);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 10px;
}

.advice-disclaimer p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  line-height: 1.65;
}

#advice-source {
  flex-shrink: 0;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid rgba(223, 179, 107, 0.35);
  padding-bottom: 4px;
}

#advice-source span {
  margin-left: 5px;
}

.emergency-box {
  margin-top: 24px;
  padding: 20px 22px;
  color: #3d2421;
  background: #f4ddd5;
  border-left: 3px solid #b95344;
}

.emergency-box:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.emergency-box strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.emergency-box p {
  max-width: 390px;
  margin: 5px 0 0;
  color: #79544e;
  font-size: 11px;
  line-height: 1.6;
}

.emergency-actions {
  display: flex;
  gap: 8px;
}

.emergency-actions a {
  display: grid;
  place-items: center;
  min-width: 58px;
  padding: 8px 9px;
  color: white;
  background: #9b4438;
}

.emergency-actions small {
  font-size: 9px;
  text-transform: uppercase;
}

.emergency-actions b {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.free-advice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 30px 0 0;
}

.free-advice-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.button-primary-dark {
  color: white;
  background: var(--ink);
}

.button-primary-dark:hover {
  background: var(--ink-soft);
}

.mini-label {
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-light {
  align-self: flex-start;
  min-height: 46px;
  color: var(--ink);
  background: var(--cream);
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.process::before {
  position: absolute;
  top: -130px;
  left: -130px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(223, 179, 107, 0.1);
  border-radius: 50%;
  content: "";
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 115px;
}

.process h2,
.consultation h2 {
  color: var(--white);
}

.process-copy > p {
  max-width: 380px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.8;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.33);
}

.button-outline:hover {
  border-color: var(--gold-bright);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.steps-list > li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-bright);
  border: 1px solid rgba(223, 179, 107, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
}

.steps-list h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
  line-height: 1.8;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.about-shape {
  position: relative;
  height: 550px;
  overflow: hidden;
  color: #d4b17b;
  background:
    radial-gradient(circle at 50% 24%, rgba(221, 184, 122, 0.18), transparent 31%),
    linear-gradient(145deg, #24483f, #102f2a);
  border-radius: 240px 240px 6px 6px;
}

.about-shape svg {
  width: 100%;
  height: 100%;
  padding: 40px;
}

.experience-seal {
  position: absolute;
  right: 23px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 132px;
  height: 132px;
  padding: 25px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(3, 20, 16, 0.25);
}

.experience-seal strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.experience-seal span {
  font-size: 8px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(21, 53, 47, 0.16);
}

.about-values > div:not(:first-child) {
  padding-left: 20px;
  border-left: 1px solid rgba(21, 53, 47, 0.13);
}

.about-values strong,
.about-values small {
  display: block;
}

.about-values strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.about-values small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
}

.questions {
  background: var(--paper);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.questions-heading > p {
  max-width: 320px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.accordion-item button span {
  font-family: var(--serif);
  font-size: 17px;
}

.accordion-item button i {
  color: #ad7b3e;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.accordion-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-panel > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
  transition: padding 0.3s ease;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel > p {
  padding: 0 45px 24px 0;
}

.consultation {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 85%, rgba(61, 106, 94, 0.35), transparent 35%),
    var(--ink-deep);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 115px;
}

.contact-copy > p {
  max-width: 455px;
  margin: 24px 0 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.9;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-list svg {
  width: 24px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 11px;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 430px;
  margin-top: 34px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 8px;
  line-height: 1.7;
}

.contact-note > span {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--gold-bright);
  border: 1px solid rgba(223, 179, 107, 0.55);
  border-radius: 50%;
  font-family: var(--serif);
}

.consultation-form {
  padding: 44px 48px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 80px rgba(3, 19, 16, 0.3);
}

.form-head {
  margin-bottom: 30px;
}

.form-head > span {
  color: #a7743a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-head h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.consultation-form label {
  position: relative;
  display: block;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
}

.consultation-form label b {
  color: #ab7433;
}

.consultation-form input:not([type="checkbox"]),
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(21, 53, 47, 0.18);
  border-radius: 0;
  outline: none;
  font-size: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form input:not([type="checkbox"]),
.consultation-form select {
  height: 45px;
}

.consultation-form textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: #b17e40;
  box-shadow: 0 0 0 3px rgba(177, 126, 64, 0.1);
}

.consultation-form .invalid {
  border-color: #bd4d43 !important;
}

.char-count {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #98a19d;
  font-size: 8px;
  font-weight: 500;
}

.check-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--muted) !important;
  font-size: 8px !important;
  font-weight: 500 !important;
  line-height: 1.6;
}

.check-label input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.check-label a {
  color: #8a5c25;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.check-label a:hover,
.check-label a:focus-visible {
  color: var(--ink);
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 16px;
  margin: 10px 0 -8px;
  color: #b2443d;
  font-size: 9px;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #081f1b;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 45px;
}

.footer-top > p {
  margin: 0;
  font-size: 10px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 7px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 390px;
  padding: 17px 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(4, 24, 20, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  color: white;
  background: #5c9870;
  border-radius: 50%;
}

.toast strong,
.toast p {
  display: block;
}

.toast strong {
  font-size: 10px;
}

.toast p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.toast button {
  margin-left: auto;
  padding: 4px;
  color: #7e8985;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 35px;
  }

  .availability-card {
    right: 0;
  }

  .section-heading,
  .process-grid,
  .questions-grid,
  .consultation-grid {
    gap: 60px;
  }

  .about-grid {
    gap: 65px;
  }

  .consultation-form {
    padding: 38px 34px;
  }

  .advice-tool {
    grid-template-columns: 0.68fr 1.32fr;
  }

  .advice-sidebar {
    padding-left: 27px;
  }

  .advice-panel {
    padding-inline: 38px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 40px;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 1px;
    background: white;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 55px 30px;
    color: white;
    background: rgba(14, 41, 37, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    font-family: var(--serif);
    font-size: 21px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .arch-card {
    width: min(430px, 88%);
  }

  .availability-card {
    right: 5%;
  }

  .hero-foot {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 550px;
  }

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

  .service-modal {
    padding: 20px;
  }

  .service-modal-dialog {
    max-height: calc(100dvh - 40px);
  }

  .service-modal-inner {
    padding: 44px 38px 36px;
  }

  .service-modal-grid {
    grid-template-columns: 1fr;
  }

  .service-modal-grid article {
    padding: 25px 0;
  }

  .service-modal-grid article + article {
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .free-advice-heading {
    align-items: flex-start;
  }

  .advice-tool {
    grid-template-columns: 1fr;
  }

  .advice-sidebar {
    padding: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .advice-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .advice-tab {
    min-height: 67px;
  }

  .advice-tab:nth-child(even) {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .advice-tab:nth-child(even):hover,
  .advice-tab:nth-child(even):focus-visible,
  .advice-tab:nth-child(even).active {
    padding-left: 28px;
  }

  .process-grid,
  .questions-grid,
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
  }

  .about-shape {
    height: 475px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-values > div:not(:first-child) {
    padding: 16px 0 0;
    border-top: 1px solid rgba(21, 53, 47, 0.1);
    border-left: 0;
  }

  .contact-copy > p {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 30px);
  }

  .header-inner {
    height: 74px;
  }

  .mobile-nav {
    inset: 74px 0 0;
  }

  .hero-grid {
    padding-top: 105px;
    padding-bottom: 75px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 59px);
  }

  h2 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .trust-row {
    flex-direction: column;
    gap: 18px;
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .arch-card {
    width: 100%;
  }

  .availability-card {
    right: -2px;
    bottom: 24px;
    min-width: min(275px, 92%);
  }

  .section {
    padding: 75px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-modal {
    align-items: end;
    padding: 0;
  }

  .service-modal-dialog {
    width: 100%;
    max-height: 94dvh;
    transform: translateY(35px);
  }

  .service-modal-inner {
    padding: 42px 22px 30px;
  }

  .service-modal-close {
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .service-modal-kicker {
    padding-right: 44px;
    font-size: 9px;
  }

  .service-modal-heading {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    margin-top: 23px;
  }

  .service-modal-number {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  .service-modal-heading h2 {
    font-size: 29px;
  }

  .service-modal-heading p {
    grid-column: 1 / -1;
    font-size: 13px;
  }

  .service-modal-process ol {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-modal-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .service-modal-actions .button {
    width: 100%;
  }

  .service-modal-back {
    align-self: center;
  }

  .free-advice-heading,
  .free-advice-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .advice-privacy-note {
    max-width: 100%;
  }

  .advice-sidebar {
    padding: 27px 22px;
  }

  .advice-tabs {
    grid-template-columns: 1fr;
  }

  .advice-tab,
  .advice-tab:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .advice-tab:hover,
  .advice-tab:focus-visible,
  .advice-tab.active,
  .advice-tab:nth-child(even):hover,
  .advice-tab:nth-child(even):focus-visible,
  .advice-tab:nth-child(even).active {
    padding-left: 14px;
  }

  .advice-panel {
    padding: 34px 22px;
  }

  .advice-panel h3 {
    font-size: 24px;
  }

  .advice-panel-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .advice-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advice-bottom,
  .emergency-box:not([hidden]) {
    align-items: flex-start;
    flex-direction: column;
  }

  .free-advice-footer .button {
    width: 100%;
  }

  .service-card {
    min-height: 315px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-art {
    max-width: 390px;
    margin-inline: auto;
  }

  .about-shape {
    height: 450px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consultation-form {
    padding: 34px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
