:root {
  --petrol: #14595e;
  --petrol-dark: #103f44;
  --petrol-deep: #0c363a;

  --gold: #c7a34e;
  --gold-soft: #eadfbe;

  --ivory: #fbfaf5;
  --mist: #edf4f4;

  --ink: #173337;
  --text: #31474a;
  --muted: #6c7b7d;

  --border: #dce5e5;

  --white: #ffffff;

  --danger: #9f2f37;
  --danger-soft: #f9e8e9;

  --success: #29683c;
  --success-soft: #e8f5eb;

  --shadow:
    0 18px 45px rgba(16, 63, 68, .09);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body.test-site {
  margin: 0;

  min-height: 100vh;

  display: flex;
  flex-direction: column;

  background: var(--ivory);

  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

  line-height: 1.55;
}


a {
  color: inherit;
}


button,
input,
textarea {
  font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  background:
    rgba(251, 250, 245, .95);

  border-bottom:
    1px solid var(--border);

  backdrop-filter:
    blur(14px);
}


.site-header-inner {
  width: min(
    1180px,
    calc(100% - 32px)
  );

  min-height: 70px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.site-brand {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  text-decoration: none;
}


.site-brand-mark {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 11px;

  background: var(--petrol);

  color: var(--white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 19px;

  font-weight: 900;
}


.site-brand-text {
  display: flex;

  flex-direction: column;
}


.site-brand-text strong {
  color: var(--ink);

  font-size: 15px;
}


.site-brand-text strong span {
  color: var(--petrol);
}


.site-brand-text small {
  margin-top: 2px;

  color: var(--muted);

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .13em;

  text-transform: uppercase;
}


/* =========================================================
   MENU
========================================================= */

.menu-button {
  width: 42px;
  height: 42px;

  border: 1px solid var(--border);

  border-radius: 11px;

  background: var(--white);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 5px;

  cursor: pointer;
}


.menu-button span {
  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: var(--petrol-dark);
}


.menu-backdrop {
  position: fixed;

  inset: 0;

  z-index: 190;

  visibility: hidden;

  opacity: 0;

  background:
    rgba(8, 37, 40, .52);

  backdrop-filter:
    blur(3px);

  transition:
    opacity .2s ease,
    visibility .2s ease;
}


.menu-drawer {
  position: fixed;

  top: 0;
  right: 0;
  bottom: 0;

  z-index: 200;

  width: min(
    390px,
    calc(100% - 30px)
  );

  padding: 25px;

  display: flex;

  flex-direction: column;

  background: var(--petrol-dark);

  color: var(--white);

  transform:
    translateX(105%);

  transition:
    transform .25s ease;
}


.menu-open
.menu-backdrop {
  visibility: visible;
  opacity: 1;
}


.menu-open
.menu-drawer {
  transform:
    translateX(0);
}


.menu-head {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  padding-bottom: 20px;

  border-bottom:
    1px solid
    rgba(255,255,255,.13);
}


.menu-head div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.menu-head small {
  color: var(--gold);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .15em;
}


.menu-head strong {
  font-size: 18px;
}


.menu-close {
  width: 38px;
  height: 38px;

  border: 0;

  border-radius: 50%;

  background:
    rgba(255,255,255,.1);

  color: var(--white);

  font-size: 24px;

  cursor: pointer;
}


.menu-nav {
  margin-top: 28px;

  display: flex;

  flex-direction: column;
}


.menu-nav a {
  padding: 17px 0;

  display: flex;

  align-items: center;

  gap: 15px;

  border-bottom:
    1px solid
    rgba(255,255,255,.12);

  color: var(--white);

  font-size: 22px;

  font-weight: 750;

  text-decoration: none;
}


.menu-nav a span {
  color: var(--gold);

  font-size: 10px;
}


.menu-contact {
  margin-top: auto;

  display: flex;

  flex-direction: column;

  gap: 7px;

  padding-top: 25px;

  color:
    rgba(255,255,255,.75);

  font-size: 13px;
}


.menu-contact a {
  text-decoration: none;
}


/* =========================================================
   PAGE
========================================================= */

.page-shell {
  width: min(
    1180px,
    calc(100% - 32px)
  );

  flex: 1;

  margin: 0 auto;

  padding: 28px 0 45px;
}


.eyebrow {
  color: var(--petrol);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .15em;

  text-transform: uppercase;
}


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


.page-heading {
  margin:
    14px 0 30px;
}


.page-heading h1 {
  margin:
    6px 0 8px;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      35px,
      5vw,
      54px
    );

  line-height: 1.05;
}


.page-heading p {
  max-width: 700px;

  margin: 0;

  color: var(--muted);
}


/* =========================================================
   CONSTRUCTION
========================================================= */

.construction-banner {
  margin-bottom: 18px;

  padding: 11px 15px;

  display: flex;

  align-items: center;

  gap: 11px;

  border:
    1px solid #e4d39f;

  border-radius: 13px;

  background: #fff8e7;

  color: #70571e;

  font-size: 12px;
}


.construction-banner div {
  display: flex;

  gap: 8px;

  flex-wrap: wrap;
}


.construction-marker {
  width: 9px;
  height: 9px;

  flex: 0 0 9px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow:
    0 0 0 5px
    rgba(199, 163, 78, .15);
}


/* =========================================================
   HOME
========================================================= */

.home-hero {
  display: grid;

  grid-template-columns:
    minmax(300px, .85fr)
    minmax(0, 1.15fr);

  gap:
    clamp(
      30px,
      6vw,
      70px
    );

  align-items: center;

  min-height: 420px;
}


.home-logo {
  display: flex;

  align-items: center;

  justify-content: center;
}


.home-logo img {
  width: min(
    100%,
    470px
  );

  max-height: 370px;

  object-fit: contain;
}


.home-copy h1 {
  margin:
    11px 0 15px;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      40px,
      5.5vw,
      67px
    );

  line-height: 1.01;

  letter-spacing: -.035em;
}


.lead {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.65;
}


.hero-actions {
  margin-top: 24px;

  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}


.phone-action {
  display: flex;

  gap: 7px;
}


.primary-action,
.secondary-action {
  min-height: 51px;

  padding: 8px 16px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  border-radius: 12px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 800;
}


.primary-action {
  background: var(--petrol);

  color: var(--white);
}


.secondary-action {
  border: 1px solid var(--border);

  background: var(--white);

  color: var(--ink);
}


.primary-action span,
.secondary-action span {
  margin-bottom: 2px;

  font-size: 8px;

  letter-spacing: .11em;

  opacity: .68;

  text-transform: uppercase;
}


.whatsapp-action {
  width: 51px;
  height: 51px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  background: #25D366;

  color: white;

  text-decoration: none;
}


.whatsapp-action svg {
  width: 25px;
  height: 25px;

  fill: currentColor;
}


.home-links {
  margin-top: 22px;

  display: flex;

  flex-wrap: wrap;

  gap: 22px;
}


.home-links a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--petrol-dark);

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;
}


.home-links a span {
  color: var(--gold);
}


.value-strip {
  margin: 30px 0;

  display: grid;

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

  border:
    1px solid var(--border);

  border-radius: 18px;

  overflow: hidden;

  background: var(--white);
}


.value-strip article {
  padding: 21px 22px;

  display: flex;

  flex-direction: column;

  gap: 5px;
}


.value-strip article
+ article {
  border-left:
    1px solid var(--border);
}


.value-strip strong {
  color: var(--petrol);

  font-size: 11px;

  letter-spacing: .1em;
}


.value-strip span {
  color: var(--muted);

  font-size: 13px;
}


.home-contact-banner {
  padding: 25px 27px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  border-radius: 18px;

  background: var(--petrol);

  color: var(--white);
}


.home-contact-banner h2 {
  margin:
    6px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 23px;
}


.gold-button {
  flex: 0 0 auto;

  padding: 12px 16px;

  border-radius: 11px;

  background: var(--gold);

  color: var(--petrol-deep);

  font-size: 12px;

  font-weight: 900;

  text-decoration: none;
}


/* =========================================================
   CARDS
========================================================= */

.content-card,
.contact-form-card,
.legal-card {
  padding: 25px;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background: var(--white);

  box-shadow:
    0 12px 32px
    rgba(16,63,68,.05);
}


.content-card.warm {
  background: #f5ead2;
}


.content-card h2,
.contact-form-card h2,
.legal-card h2 {
  margin:
    7px 0 12px;

  color: var(--petrol-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 26px;
}


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


/* =========================================================
   ABOUT
========================================================= */

.about-intro {
  display: grid;

  grid-template-columns:
    minmax(230px, .7fr)
    minmax(0, 1.3fr);

  gap: 36px;

  align-items: center;

  margin-bottom: 30px;
}


.about-photo img {
  width: 100%;

  max-height: 430px;

  object-fit: cover;

  object-position: center top;

  border-radius: 20px;

  box-shadow: var(--shadow);
}


.about-copy h2 {
  margin:
    8px 0 14px;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      31px,
      4vw,
      48px
    );
}


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

  font-size: 16px;
}


.experience-box {
  margin-top: 20px;

  padding: 15px;

  display: flex;

  flex-direction: column;

  gap: 4px;

  border-left:
    4px solid var(--gold);

  background:
    #f2e6cb;

  border-radius: 0 12px 12px 0;
}


.experience-box strong {
  color: var(--petrol-dark);
}


.experience-box span {
  color: var(--text);

  font-size: 13px;
}


.about-two-column {
  margin: 23px 0;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}


.quote-card {
  margin: 0;

  padding: 27px;

  border-radius: 18px;

  background: var(--petrol);

  color: var(--white);
}


.quote-card span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .13em;

  text-transform: uppercase;
}


.quote-card p {
  margin:
    14px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 25px;

  font-style: italic;

  line-height: 1.35;
}


.process-section {
  margin: 40px 0;
}


.section-title-row h2 {
  margin:
    5px 0 17px;

  color: var(--petrol-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 31px;
}


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  gap: 10px;
}


.process-step {
  min-height: 230px;

  padding: 17px;

  border:
    1px solid var(--border);

  border-top-width: 4px;

  border-radius: 14px;

  background: var(--mist);
}


.step-1 {
  border-top-color: #437e83;
}


.step-2 {
  border-top-color: #5f969a;
}


.step-3 {
  border-top-color: var(--gold);
}


.step-4 {
  border-top-color: #ab4b52;
}


.step-5 {
  border-top-color: var(--petrol);
}


.step-number {
  color: var(--gold);

  font-family: Georgia, serif;

  font-size: 25px;

  font-weight: 900;
}


.process-step h3 {
  margin:
    6px 0 4px;

  color: var(--petrol-dark);

  font-size: 14px;

  text-transform: uppercase;
}


.process-step strong {
  color: #9b343b;

  font-size: 10px;
}


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

  font-size: 11px;

  line-height: 1.55;
}


.after-process {
  margin-top: 10px;

  padding: 13px 17px;

  display: flex;

  gap: 20px;

  border-radius: 12px;

  background: var(--petrol-dark);

  color: var(--white);

  font-size: 12px;
}


.after-process strong {
  flex: 0 0 auto;

  color: var(--gold);
}


.customer-times {
  margin-top: 35px;

  padding: 25px;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background: var(--white);
}


.times-grid {
  display: grid;

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

  gap: 8px;
}


.times-grid div {
  padding: 12px;

  display: flex;

  flex-direction: column;

  border-radius: 10px;

  background: var(--mist);
}


.times-grid strong {
  color: var(--petrol-dark);

  font-size: 12px;
}


.times-grid span {
  margin-top: 3px;

  color: var(--muted);

  font-size: 11px;
}


.small-note {
  margin:
    13px 0 0;

  color: var(--muted);

  font-size: 10px;
}


/* =========================================================
   COMPASS
========================================================= */

.compass {
  max-width: 850px;

  margin: 0 auto;
}


.compass-progress {
  margin-bottom: 12px;
}


.compass-progress-track {
  height: 6px;

  border-radius: 999px;

  overflow: hidden;

  background: #dfe9e9;
}


.compass-progress-bar {
  width: 5%;
  height: 100%;

  border-radius: 999px;

  background: var(--gold);

  transition:
    width .25s ease;
}


.compass-progress span {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 10px;
}


.compass-screen {
  display: none;

  padding: 25px;

  border:
    1px solid var(--border);

  border-radius: 19px;

  background: var(--white);

  box-shadow:
    0 14px 38px
    rgba(16,63,68,.06);
}


.compass-screen.active {
  display: block;
}


.compass-screen h2 {
  margin:
    5px 0 8px;

  color: var(--petrol-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 27px;
}


.question-number {
  color: var(--gold);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .12em;

  text-transform: uppercase;
}


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


.choice-list {
  margin-top: 18px;

  display: grid;

  gap: 9px;
}


.choice-card {
  padding: 13px;

  display: grid;

  grid-template-columns:
    22px 1fr;

  gap: 8px;

  border:
    1px solid var(--border);

  border-radius: 12px;

  cursor: pointer;
}


.choice-card:has(
  input:checked
) {
  border-color: var(--petrol);

  background: #edf7f7;
}


.choice-card span {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.choice-card strong {
  color: var(--ink);

  font-size: 13px;
}


.choice-card small {
  color: var(--muted);

  font-size: 11px;

  line-height: 1.5;
}


.check-grid {
  margin-top: 17px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 8px;
}


.check-card {
  padding: 12px;

  border:
    1px solid var(--border);

  border-radius: 11px;

  color: var(--text);

  font-size: 12px;

  cursor: pointer;
}


.check-card:has(
  input:checked
) {
  border-color: var(--petrol);

  background: #edf7f7;
}


.compass-success {
  width: 55px;
  height: 55px;

  margin-bottom: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--success-soft);

  color: var(--success);

  font-size: 25px;

  font-weight: 900;
}


/* =========================================================
   FORMS
========================================================= */

.form-field {
  margin-top: 14px;

  display: flex;

  flex-direction: column;

  gap: 6px;
}


.form-field > span {
  color: var(--ink);

  font-size: 11px;

  font-weight: 800;
}


.form-field input,
.form-field textarea {
  width: 100%;

  padding: 11px 12px;

  border:
    1px solid var(--border);

  border-radius: 10px;

  outline: 0;

  background: var(--white);

  color: var(--ink);

  font-size: 14px;
}


.form-field textarea {
  min-height: 130px;

  resize: vertical;
}


.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--petrol);

  box-shadow:
    0 0 0 3px
    rgba(20,89,94,.1);
}


.form-grid-two {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;
}


.form-actions {
  margin-top: 20px;

  display: flex;

  gap: 9px;

  justify-content: space-between;
}


.form-actions.end {
  justify-content: flex-end;
}


.button-primary,
.button-secondary {
  min-height: 43px;

  padding: 10px 16px;

  border: 0;

  border-radius: 10px;

  font-size: 12px;

  font-weight: 850;

  cursor: pointer;
}


.button-primary {
  background: var(--petrol);

  color: var(--white);
}


.button-secondary {
  background: #edf2f2;

  color: var(--ink);
}


.button-link {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;
}


.honeypot {
  position: absolute;

  left: -10000px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


.privacy-check {
  margin-top: 16px;

  display: grid;

  grid-template-columns:
    20px 1fr;

  gap: 7px;

  color: var(--muted);

  font-size: 10px;
}


.privacy-check a {
  color: var(--petrol);

  font-weight: 800;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-methods {
  margin-bottom: 22px;

  display: grid;

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

  gap: 10px;
}


.contact-method {
  padding: 16px;

  display: flex;

  flex-direction: column;

  gap: 4px;

  border:
    1px solid var(--border);

  border-radius: 13px;

  background: var(--white);
}


.contact-method span {
  color: var(--gold);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .1em;

  text-transform: uppercase;
}


.contact-method a {
  color: var(--petrol-dark);

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;
}


.small-whatsapp {
  width: fit-content;

  margin-top: 5px;

  padding: 5px 8px;

  border-radius: 8px;

  background: #25D366;

  color: white !important;

  font-size: 9px !important;
}


.contact-layout {
  display: grid;

  grid-template-columns:
    .75fr 1.25fr;

  gap: 18px;

  align-items: start;
}


.contact-quick {
  margin-top: 18px;

  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}


/* =========================================================
   LEGAL
========================================================= */

.legal-warning {
  margin-bottom: 15px;

  padding: 15px;

  border:
    1px solid #dec983;

  border-radius: 12px;

  background: #fff7dd;

  color: #69531e;
}


.legal-warning strong {
  display: block;

  margin-bottom: 5px;
}


.legal-warning p {
  margin: 0;

  font-size: 12px;
}


.legal-card {
  margin-bottom: 13px;
}


.legal-list {
  margin: 0;

  display: grid;

  grid-template-columns:
    minmax(160px, .35fr)
    minmax(0, 1fr);

  gap: 9px 20px;
}


.legal-list dt {
  color: var(--petrol-dark);

  font-size: 11px;

  font-weight: 900;
}


.legal-list dd {
  margin: 0;

  color: var(--text);

  font-size: 12px;
}


.legal-list dd small {
  display: block;

  margin-top: 2px;

  color: var(--muted);
}


.legal-list a,
.legal-card a {
  color: var(--petrol);

  font-weight: 800;
}


.todo-value {
  padding: 8px 10px;

  border-radius: 8px;

  background: var(--danger-soft);

  color: var(--danger) !important;

  font-size: 10px !important;

  font-weight: 800;
}


/* =========================================================
   FLASH
========================================================= */

.flash-wrap {
  position: fixed;

  top: 82px;
  right: 18px;

  z-index: 150;

  width: min(
    380px,
    calc(100% - 36px)
  );
}


.flash-message {
  margin-bottom: 8px;

  padding: 12px 14px;

  border-radius: 11px;

  box-shadow: var(--shadow);

  font-size: 12px;

  font-weight: 700;
}


.flash-message.success {
  background: var(--success-soft);

  color: var(--success);
}


.flash-message.error {
  background: var(--danger-soft);

  color: var(--danger);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  margin-top: auto;

  background: var(--petrol-dark);

  color:
    rgba(255,255,255,.7);
}


.site-footer-inner {
  width: min(
    1180px,
    calc(100% - 32px)
  );

  min-height: 96px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr auto;

  align-items: center;

  gap: 15px;

  padding: 17px 0;
}


.footer-person {
  display: flex;

  flex-direction: column;

  gap: 2px;

  font-size: 9px;
}


.footer-person strong {
  color: var(--white);

  font-size: 11px;
}


.footer-motto {
  color: var(--gold);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .08em;
}


.footer-legal {
  grid-column: 1 / -1;

  display: flex;

  gap: 12px;

  padding-top: 8px;

  border-top:
    1px solid
    rgba(255,255,255,.09);

  font-size: 9px;
}


.footer-legal a {
  color:
    rgba(255,255,255,.65);

  text-decoration: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .home-hero {
    grid-template-columns:
      minmax(220px, .75fr)
      minmax(0, 1.25fr);
  }


  .home-logo img {
    max-height: 280px;
  }


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


  .process-step {
    min-height: auto;
  }


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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

  .site-header-inner {
    width:
      calc(100% - 20px);

    min-height: 59px;
  }


  .site-brand-mark {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    border-radius: 9px;

    font-size: 15px;
  }


  .site-brand-text strong {
    font-size: 11px;
  }


  .site-brand-text small {
    font-size: 6px;
  }


  .menu-button {
    width: 37px;
    height: 37px;
  }


  .page-shell {
    width:
      calc(100% - 20px);

    padding-top: 15px;
  }


  .construction-banner {
    align-items: flex-start;

    font-size: 10px;
  }


  .construction-banner div {
    display: block;
  }


  .construction-banner strong {
    display: block;
  }


  .home-hero {
    min-height: auto;

    display: flex;

    flex-direction: column;

    gap: 15px;
  }


  .home-logo img {
    width:
      min(100%, 330px);

    max-height: 210px;
  }


  .home-copy {
    text-align: center;
  }


  .home-copy h1 {
    font-size: 35px;
  }


  .lead {
    font-size: 13px;
  }


  .hero-actions {
    display: grid;

    grid-template-columns: 1fr;
  }


  .phone-action {
    display: grid;

    grid-template-columns:
      1fr 51px;
  }


  .primary-action,
  .secondary-action {
    align-items: center;
  }


  .home-links {
    justify-content: center;
  }


  .value-strip {
    grid-template-columns: 1fr;
  }


  .value-strip article
  + article {
    border-left: 0;

    border-top:
      1px solid var(--border);
  }


  .home-contact-banner {
    align-items: flex-start;

    flex-direction: column;
  }


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

    gap: 18px;
  }


  .about-photo {
    display: flex;

    justify-content: center;
  }


  .about-photo img {
    width:
      min(100%, 330px);

    max-height: 360px;
  }


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


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


  .after-process {
    flex-direction: column;

    gap: 5px;
  }


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


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


  .compass-screen {
    padding: 17px;
  }


  .compass-screen h2 {
    font-size: 23px;
  }


  .form-grid-two {
    grid-template-columns: 1fr;
  }


  .contact-methods {
    grid-template-columns: 1fr;
  }


  .contact-layout {
    grid-template-columns: 1fr;
  }


  .legal-list {
    grid-template-columns: 1fr;

    gap: 3px;
  }


  .legal-list dd {
    margin-bottom: 9px;
  }


  .site-footer-inner {
    width:
      calc(100% - 20px);

    grid-template-columns: 1fr;
  }


  .footer-motto {
    margin-top: 5px;
  }

}
.beratungszeiten-highlight {
  margin: 7px 0 17px;
  color: var(--petrol);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .beratungszeiten-highlight {
    margin-bottom: 14px;
    font-size: 13px;
  }
}
/* =========================================================
   COMPASS VALIDATION
========================================================= */

.compass-error {
  display: none;
  margin: 12px 0 4px;
  padding: 10px 12px;

  border: 1px solid #e4bcbc;
  border-radius: 10px;

  background: #fff5f5;
  color: #8a3030;

  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}


.compass-error.show {
  display: block;
}


.compass-contact-block {
  margin-top: 24px;
  padding-top: 20px;

  border-top: 1px solid
    rgba(20, 89, 94, 0.14);
}


.compass-contact-block h3 {
  margin: 0 0 4px;
}


.compass-contact-block .muted {
  margin-top: 0;
}


/* MOBILE */

@media (max-width: 680px) {

  .compass-error {
    font-size: 13px;
    padding: 9px 11px;
  }

}