
:root {
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --moss: #263f35;
  --moss-soft: #395a4c;
  --ink: #27312d;
  --muted: #657069;
  --rose: #a4485d;
  --rose-dark: #7d3044;
  --rose-wash: #ead8d8;
  --sage: #dce4d5;
  --line: rgba(38, 63, 53, 0.18);
  --shadow: 0 24px 70px rgba(55, 47, 34, 0.12);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #e5a83f;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--moss);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner,
.hero-inner,
.billing-inner,
.contact-inner,
.footer-inner,
.launch-strip-inner {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.brand-rose { width: 44px; height: 60px; object-fit: contain; }

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--rose-dark);
  font-size: 29px;
  font-weight: 500;
}

.brand-name small {
  margin-top: 5px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 31px);
  margin-left: auto;
  color: #44514b;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a,
.footer-links a { position: relative; }

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after { transform: scaleX(1); }

.header-phone {
  padding: 11px 16px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu[open] summary { border-color: var(--moss); background: var(--cream); }

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(285px, calc(100vw - 30px));
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(38, 63, 53, 0.1);
  color: #3f4d46;
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu-panel a:last-child { border-bottom: 0; }

.launch-strip {
  border-bottom: 1px solid rgba(125, 48, 68, 0.16);
  background: #f1e3e1;
}

.launch-strip-inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 11px 19px;
  color: #4f5a54;
  font-size: 14px;
  line-height: 1.35;
}

.launch-strip-inner strong { color: var(--rose-dark); }

.launch-strip-inner a {
  margin-left: auto;
  color: var(--moss);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(221, 191, 188, 0.55), transparent 30%),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 56%, #e9e1d2 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(38, 63, 53, 0.035) 1px, transparent 1px);
  background-size: 100% 28px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  min-height: 560px;
  padding-block: 48px 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 17px;
  color: var(--moss);
  font-size: clamp(39px, 3.7vw, 52px);
  line-height: 1.08;
}

.hero-title-line { display: block; }
.hero-title-main { white-space: nowrap; }
.hero-title-place {
  text-align: center;
  font-size: 1.04em;
}

h2 {
  margin-bottom: 25px;
  color: var(--moss);
  font-size: clamp(35px, 3.5vw, 50px);
  line-height: 1.12;
}

.hero-slogan {
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 27px);
  font-style: italic;
  line-height: 1.25;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 20px;
  color: #4a5650;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 19px;
}

.button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--moss); color: #fffaf2; }
.button-primary:hover { background: var(--moss-soft); }

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.78);
  color: var(--moss);
}

.button-secondary:hover { border-color: var(--moss); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 19px;
  margin: 0;
  padding: 0;
  color: #4e5e56;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-list li { position: relative; padding-left: 17px; }

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-mark {
  position: relative;
  width: min(100%, 325px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 31px 24px 25px;
  border: 1px solid rgba(125, 48, 68, 0.2);
  background: rgba(255, 253, 248, 0.69);
  box-shadow: var(--shadow);
  justify-self: end;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: rgba(125, 48, 68, 0.45);
}

.hero-mark::before {
  top: 15px;
  left: 15px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.hero-mark::after {
  right: 15px;
  bottom: 15px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.rose-halo {
  width: 184px;
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 50% 50% 46% 46%;
  background: radial-gradient(circle, rgba(234, 216, 216, 0.9), rgba(234, 216, 216, 0) 70%);
}

.hero-rose { width: 150px; height: 204px; object-fit: contain; }

.hero-mark blockquote {
  margin: 0 0 10px;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
}

.hero-mark > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section { padding-block: 105px; }
.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}

.section-heading { position: sticky; top: 145px; }
.section-heading h2 { font-size: clamp(48px, 5vw, 68px); }
.about-copy { color: #4d5852; font-size: 19px; }
.about-copy p { margin-bottom: 24px; }

.lead-paragraph {
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.45;
}

.about-copy strong { color: var(--moss); }

.signature-line {
  margin-top: 34px;
  padding: 25px 28px;
  border-left: 4px solid var(--rose);
  background: var(--cream);
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.5;
}

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-intro h2 { max-width: 780px; margin-bottom: 0; }
.section-intro > p { margin: 0 0 8px; color: var(--muted); }

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

.service-card {
  min-height: 310px;
  padding: 33px 31px 37px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  background: var(--paper);
  transform: translateY(-3px);
}

.service-number {
  display: block;
  margin-bottom: 43px;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.service-card h3,
.area-card h3 {
  margin-bottom: 14px;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.service-card p,
.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.billing {
  padding-block: 100px;
  overflow: hidden;
  background: var(--moss);
  color: #f6f0e6;
}

.billing-inner {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.7fr;
  gap: clamp(35px, 6vw, 85px);
  align-items: center;
}

.billing-mark {
  color: rgba(248, 243, 233, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 10vw, 138px);
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-7deg);
}

.eyebrow-light { color: #e5bdc4; }

.billing-copy h2 {
  color: #fffaf2;
  font-size: clamp(38px, 4vw, 55px);
}

.billing-copy > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: #e4e5df;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  font-weight: 800;
}

.text-link-light { color: #f4d9dd; }

.clarity-note {
  padding: 28px;
  border: 1px solid rgba(255, 250, 242, 0.25);
  background: rgba(255, 250, 242, 0.06);
}

.clarity-note strong {
  color: #f4d9dd;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clarity-note p {
  margin: 12px 0 0;
  color: #daddd7;
  font-size: 15px;
  line-height: 1.65;
}

.coverage { background: var(--paper); }
.coverage-intro h2 { max-width: 820px; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  min-height: 265px;
  padding: 33px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.area-card:nth-child(2) { background: var(--sage); }

.area-dot {
  display: block;
  width: 11px;
  height: 11px;
  margin-bottom: 50px;
  border: 3px solid var(--rose);
  border-radius: 50%;
}

.availability-section {
  padding-block: 82px;
  border-block: 1px solid rgba(38, 63, 53, 0.12);
  background: #e8eddf;
}

.availability-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
}

.availability-heading h2 { margin-bottom: 17px; }

.availability-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #56615b;
}

.availability-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(38, 63, 53, 0.17);
  background: rgba(255, 253, 248, 0.67);
}

.availability-card {
  min-height: 215px;
  padding: 29px;
}

.availability-card + .availability-card { border-left: 1px solid rgba(38, 63, 53, 0.17); }

.availability-card > span {
  display: block;
  margin-bottom: 24px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.availability-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
}

.availability-card p {
  margin: 0;
  color: #56615b;
  font-size: 15px;
  line-height: 1.65;
}

.availability-card-muted { background: rgba(234, 216, 216, 0.42); }

.career { background: #f6f0e6; }

.career-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(44px, 7vw, 82px);
  border: 1px solid rgba(125, 48, 68, 0.22);
  background: var(--rose-wash);
  box-shadow: 0 18px 60px rgba(87, 52, 52, 0.08);
}

.career-heading h2 { margin-bottom: 0; }
.career-copy { color: #4e5651; }
.career-copy p { margin-bottom: 21px; }

.career-training {
  margin: 27px 0;
  padding: 19px 21px;
  border-left: 3px solid var(--rose);
  background: rgba(255, 253, 248, 0.58);
}

.career-training span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-training p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.career-welcome {
  color: var(--rose-dark);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.career-copy .button { margin-top: 7px; }

.application-form {
  grid-column: 1 / -1;
  margin-top: 14px;
  border-top: 5px solid var(--rose-dark);
  background: rgba(255, 253, 248, 0.92);
}

.contact { padding-block: 105px; background: #e7e0d2; }

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.contact h2 { margin-bottom: 20px; }

.contact-lead {
  max-width: 590px;
  color: #56615b;
  font-size: 19px;
}

.contact-options { margin-top: 35px; border-top: 1px solid var(--moss); }

.contact-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.contact-option span {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-option strong {
  color: var(--moss);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-option small {
  margin-top: 4px;
  color: #56615b;
  font-size: 12px;
}

.contact-option-whatsapp {
  margin-top: 13px;
  padding-inline: 15px;
  border: 1px solid rgba(38, 63, 53, 0.2);
  border-radius: 5px;
  background: rgba(220, 228, 213, 0.72);
}

.contact-option-whatsapp:hover { background: var(--sage); }

.availability { margin: 18px 4px 0; color: #56615b; font-size: 15px; }

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(27px, 4vw, 46px);
  border: 1px solid rgba(38, 63, 53, 0.17);
  border-top: 5px solid var(--moss);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(55, 47, 34, 0.1);
}

.form-panel-heading {
  grid-column: 1 / -1;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-panel-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-panel-heading h3 {
  margin: 0;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 400;
  line-height: 1.2;
}

.form-panel-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.form-required {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.form-field { display: grid; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }

.form-field label {
  color: var(--moss);
  font-size: 15px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(38, 63, 53, 0.3);
  border-radius: 5px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  line-height: 1.4;
}

.form-field textarea { min-height: 150px; resize: vertical; }
.form-field select { cursor: pointer; }

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--moss); }

.form-field small {
  color: var(--muted);
  font-size: 13px;
}

.form-warning {
  margin: 0;
  padding: 13px 15px;
  border-left: 3px solid var(--rose);
  background: var(--cream);
  color: #59635d;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  align-items: start;
  color: #4e5953;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--moss);
}

.privacy-check a {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit { width: 100%; cursor: pointer; }
.form-note { margin: -7px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-block: 34px;
  background: #1e322a;
  color: #e8e6df;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: center;
  font-size: 13px;
}

.footer-inner p { margin: 0; color: #cfd2cc; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img { width: 28px; height: 39px; object-fit: contain; }

.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.footer-brand span { color: #bfc7c1; font-size: 11px; }
.footer-links { display: flex; gap: 20px; }
.mobile-call { display: none; }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .mobile-menu { display: block; margin-left: auto; }
  .header-phone { margin-left: 0; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 280px; gap: 34px; }
  .billing-inner { grid-template-columns: 0.4fr 1.1fr; }
  .clarity-note { grid-column: 2; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 82px; }
  body { padding-bottom: 66px; font-size: 17px; }

  .header-inner,
  .section-inner,
  .hero-inner,
  .billing-inner,
  .contact-inner,
  .footer-inner,
  .launch-strip-inner {
    width: min(100% - 30px, 680px);
  }

  .header-inner { min-height: 76px; }
  .brand-rose { width: 33px; height: 45px; }
  .brand-name strong { font-size: 21px; }
  .brand-name small { font-size: 10px; }
  .header-phone { display: none; }

  .launch-strip-inner {
    min-height: 0;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .launch-strip-inner a { margin-left: 0; }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 44px;
  }

  h1 { font-size: clamp(35px, 9.3vw, 46px); }
  .hero-title-main { white-space: normal; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-list { flex-direction: column; gap: 9px; }
  .hero-mark { width: min(100%, 350px); min-height: 390px; justify-self: center; }
  .section { padding-block: 82px; }

  .about-grid,
  .section-intro,
  .career-card,
  .availability-panel,
  .contact-inner { grid-template-columns: 1fr; }

  .section-heading { position: static; }
  .section-heading h2 { margin-bottom: 0; }
  .section-intro { gap: 20px; margin-bottom: 40px; }
  .service-grid, .area-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .billing { padding-block: 80px; }
  .billing-inner { grid-template-columns: 1fr; }
  .billing-mark { font-size: 82px; transform: none; }
  .clarity-note { grid-column: auto; }

  .availability-section { padding-block: 66px; }
  .availability-panel { gap: 31px; }
  .availability-cards { grid-template-columns: 1fr; }
  .availability-card { min-height: auto; }
  .availability-card + .availability-card { border-top: 1px solid rgba(38, 63, 53, 0.17); border-left: 0; }

  .career-card {
    width: 100%;
    gap: 27px;
    padding: 54px 23px;
    border-right: 0;
    border-left: 0;
  }

  .contact-inner { gap: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .form-required { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 60;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 7px;
    background: var(--rose-dark);
    box-shadow: 0 12px 34px rgba(38, 35, 30, 0.25);
    color: white;
    font-size: 15px;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Rechtliche Seiten */
.legal-main { background: var(--paper); }
.legal-hero { padding: 78px 24px 54px; background: var(--cream); border-bottom: 1px solid var(--line); }
.legal-hero > div, .legal-content { width: min(850px, 100% - 48px); margin-inline: auto; }
.legal-hero h1 { margin: 0; }
.legal-content { padding-block: 75px 100px; color: #4d5852; }
.legal-content h2 { margin: 48px 0 15px; color: var(--moss); font-size: 30px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 18px; }
.legal-content a { color: var(--rose-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-date { margin-top: 48px; color: var(--muted); font-size: 15px; }
@media (max-width: 780px) {
  .legal-hero { padding-block: 52px 38px; }
  .legal-hero > div, .legal-content { width: min(100% - 30px, 680px); }
  .legal-content { padding-block: 55px 75px; }
  .legal-content h2 { margin-top: 38px; font-size: 26px; }
}
