:root {
  --color-bg: #111111;
  --color-text: #ffffff;

  --color-gold: #d5b06b;
  --color-gold-dark: #a9916a;
  --color-gold-light: #e2c98c;
  --color-brown: #7b6653;

  --color-danger: #ff4a4a;
  --color-danger-bg: rgba(110, 18, 18, 0.72);
  --color-danger-border: rgba(255, 233, 160, 0.6);

  --color-nav-border: rgba(255, 255, 255, 0.32);
  --color-nav-bg: rgba(255, 255, 255, 0.12);
  --color-panel-bg: rgba(0, 0, 0, 0.32);

  --shadow-text: 0 2px 5px rgba(0, 0, 0, 0.55);
  --shadow-text-strong: 0 3px 7px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.18);
  --shadow-button: 0 10px 24px rgba(0, 0, 0, 0.25);
  --shadow-button-hover: 0 12px 28px rgba(0, 0, 0, 0.24);

  --radius-pill: 999px;
  --radius-panel: 24px;

  --site-max: 1600px;
  --content-max: 1400px;
  --panel-max: 1280px;

  --pad-page-x: 16px;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
}

body {
  overflow-x: hidden;
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero--home {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.24)),
    url("../images/background.jpg");
}

.hero--inner {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.40)),
    url("../images/background.jpg");
}

/* desktop nav */
.site-nav {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  z-index: 10;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  color: var(--color-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  text-shadow: var(--shadow-text);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-list a.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: transparent;  /* Make it transparent */
  border: 1px solid var(--color-gold);  /* Gold border */
  color: var(--color-gold); /* Gold text */
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-shadow: none;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Hover state */
.nav-list a.nav-call:hover,
.nav-list a.nav-call:focus {
  background: var(--color-gold); /* Light gold on hover */
  color: #111; /* Dark text on hover */
  border-color: var(--color-gold-light); /* Light gold border on hover */
}

.nav-list a:not(.nav-call):hover,
.nav-list a:not(.nav-call):focus {
  opacity: 0.85;
}

.nav-call {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-nav-border);
  background: var(--color-nav-bg);
  box-shadow: var(--shadow-soft);
}

/* shells */
.page-shell {
  margin: 0 auto;
  padding: 96px var(--pad-page-x) 40px;
  position: relative;
  z-index: 2;
}

.page-shell--wide {
  max-width: var(--site-max);
}

.page-shell--content {
  max-width: var(--content-max);
}

/* generic headings */
.page-title {
  margin: 0;
  font-family: "EB Garamond", serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-gold-light);
  text-shadow: var(--shadow-text-strong);
  text-wrap: balance;
}

.home-title {
  margin: 0;
  font-family: "EB Garamond", serif;
  font-size: 72px;
  line-height: 1.04;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: var(--shadow-text-strong);
  color: var(--color-gold-light);
  text-wrap: balance;
}

.service-area {
  margin: 28px auto 10px;
  max-width: 900px;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-intro {
  margin: 0 auto 36px;
  max-width: 900px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.lead-copy {
  margin: 28px auto 22px;
  max-width: 900px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.lead-copy + .lead-copy {
  margin-top: 0;
  margin-bottom: 36px;
}

.page--serif {
  font-family: "Crimson Text", Georgia, serif;
}

.page--serif .site-nav a,
.page--serif .cta-button {
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

/* homepage desktop restoration */
.home-page {
  text-align: center;
  padding-top: 84px;
  padding-bottom: 28px;
}

.home-subtitle {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.24;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: var(--shadow-text-strong);
  color: var(--color-gold-light);
}

.home-service-copy {
  margin: 18px auto 0;
  max-width: 1220px;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.home-service-area {
  margin: 0 0 10px 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}

.home-body-copy {
  margin: 0;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.home-urgent-line {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 36px;
  line-height: 1.24;
  font-weight: 700;
  text-align: center;
  text-shadow: var(--shadow-text);
}

.home-urgent-line strong {
  font-weight: 900;
  font-style: italic;
}

.home-contact-lead {
  margin-top: 0;
  font-size: 27px;
  line-height: 1.28;
  font-weight: 700;
  text-align: center;
  text-shadow: var(--shadow-text);
}

/* panels and sections */
.glass-panel {
  margin-top: 40px;
  background: var(--color-panel-bg);
  border-radius: var(--radius-panel);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel {
  max-width: var(--panel-max);
  margin: 0 auto;
  padding: 28px;
}

.section {
  margin-bottom: 24px;
}

.section h2 {
  margin: 0 0 8px 0;
  font-size: 34px;
  font-weight: 700;
  color: var(--color-gold);
}

.section h3 {
  margin: 16px 0 8px 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-gold-light);
}

.section h3::before {
  content: "-- ";
  color: var(--color-gold-dark);
}

.certificate-example {
  margin: 18px 0 18px 24px;
  font-style: italic;
  opacity: 0.9;
  border-left: 3px solid var(--color-gold-dark);
  padding-left: 48px;
}

.section p {
  margin: 0 0 12px 0;
  font-size: 24px;
  line-height: 1.42;
  font-weight: 600;
}

.section p + h3 {
  margin-top: 40px;
}

.section ul {
  margin: 8px 0 12px 24px;
}

.section li {
  margin: 6px 0;
  font-size: 23px;
}

.text-center {
  text-align: center;
}

.subsection-spacer {
  margin-bottom: 18px;
}

/* banners */
.stop-banner {
  max-width: 980px;
  margin: 32px auto 28px;
  padding: 18px 20px;
  border-radius: var(--radius-panel);
  border: 2px solid var(--color-danger-border);
  background: var(--color-danger-bg);
  text-align: center;
}

.stop-banner strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
}

.stop-banner span {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

.alert-copy {
  color: var(--color-danger);
  text-align: center;
  font-weight: 900;
  font-size: 32px !important;
  line-height: 1.3;
  margin: 22px 0;
  padding: 10px 16px;
  border: 4px solid var(--color-danger);
  border-radius: var(--radius-panel);
}

.guidance-copy {
  text-align: center;
  font-style: italic;
  margin: 12px 0 20px;
}

.questions-copy {
  text-align: center;
  margin-top: 10px;
}

/* CTA */
.cta-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 72px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: var(--shadow-button);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  opacity: 0.97;
  box-shadow: var(--shadow-button-hover);
}

.button-action {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.button-sub {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 2px;
}

.cta-text {
  background: var(--color-gold-dark);
  color: var(--color-text);
  border-color: var(--color-gold-dark);
}

.cta-call {
  background: var(--color-gold);
  color: #1e1e1e;
  border-color: var(--color-gold);
}

.cta-email {
  background: var(--color-brown);
  color: var(--color-text);
  border-color: var(--color-brown);
}

/* links */
a {
  color: #7fb3ff;
  text-decoration: underline;
}

a:hover {
  color: #a8ccff;
}

/* footer */
.site-footer {
  max-width: 900px;
  margin: 60px auto 30px;
  padding: 0 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1.45;
  opacity: 0.85;
}

.site-footer p {
  margin: 6px 0;
}

.footer-contact {
  font-weight: 600;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 34rem) 14rem;
  column-gap: 3rem;
  align-items: start;
  margin-bottom: 0.8em;
}

.pricing-row .label {
  line-height: 1.4;
}

.pricing-row .price {
  white-space: nowrap;
  font-weight: 600;
  text-align: left;
}

.subtle {
  display: block;
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 0.15em;
}


/* mobile-only elements hidden by default */
.mobile-topbar,
.mobile-landscape-header,
.mobile-nav-panel,
.mobile-nav-scrim,
.mobile-number-row,
.contact-chooser {
  display: none;
}

/* desktop CTA balancing */
@media (min-width: 901px) { 
  .cta-row {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 300px));
	justify-content: center;
	gap: 16px;
	width: auto;
	max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    width: 100%;
    min-height: 50px;
    padding: 8px 24px;
    white-space: normal;
  }

  .cta-call {
    transform: none;
  }

  .button-action {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
  }

  .button-sub {
    display: block;
    font-size: 19px;
    line-height: 1.2;
    margin-top: 2px;
  }


}


/* desktop/tablet scaling */
@media (max-width: 1100px) {
  .page-title {
    font-size: 56px;
  }

  .home-title {
    font-size: 64px;
  }

  .home-subtitle {
    font-size: 34px;
  }

  .home-service-area {
    font-size: 32px;
  }

  .home-body-copy {
    font-size: 24px;
  }

  .home-urgent-line {
    font-size: 34px;
  }

  .lead-copy {
    font-size: 22px;
  }

  .stop-banner strong {
    font-size: 36px;
  }

  .stop-banner span {
    font-size: 20px;
  }

  .section h2 {
    font-size: 30px;
  }

  .section h3 {
    font-size: 24px;
  }

  .section p + h3 {
    margin-top: 50px !important;
  }

  .section p,
  .section li {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .nav-list a {
    font-size: 18px;
  }

  .page-shell {
    padding-top: 84px;
  }

  .page-title {
    font-size: 50px;
  }

  .home-title {
    font-size: 56px;
  }

  .lead-copy,
  .page-intro,
  .service-area {
    font-size: 21px;
  }

  .panel {
    padding: 24px 20px;
  }

  .section h2 {
    font-size: 28px;
  }

  .section h3 {
    font-size: 23px;
  }

  .section p,
  .section li {
    font-size: 21px;
  }

  .certificate-example {
    margin-left: 12px;
    padding-left: 24px;
  }
}

/* Switch from menu line to hamburger when screen gets too small */
@media (max-width: 820px) {
  /* hide desktop nav */
  .site-nav {
    display: none;
  }

  /* show hamburger bar without pushing content down */
  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
  }

  /* tighten top spacing now that desktop nav is gone */
  .page-shell {
    padding-top: 28px;
  }

  /* hamburger button */
  .hamburger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--color-nav-border);
    border-radius: 12px;
    background: var(--color-nav-bg);
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
  }

  .hamburger-button svg {
    width: 20px;
    height: 20px;
  }

  /* slide-out panel */
  .mobile-nav-panel {
    display: block;
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    max-width: 82vw;
    height: 100vh;
    padding: 72px 16px 32px;
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 18px 0 36px rgba(0, 0, 0, 0.45);
    transition: left 0.24s ease;
    z-index: 30;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .mobile-nav-panel.is-open {
    left: 0;
  }

  .mobile-nav-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-links li + li {
    margin-top: 10px;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .mobile-nav-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-landscape-header {
    display: none;
  }
}


/* portrait phones / narrow phones */
@media (max-width: 500px) {
  .site-nav {
    display: none;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 12px 0;
    position: relative;
    z-index: 20;
  }

  .mobile-landscape-header {
    display: none;
  }

  .hamburger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--color-nav-border);
    border-radius: 12px;
    background: var(--color-nav-bg);
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
  }

  .hamburger-button svg {
    width: 20px;
    height: 20px;
  }

  .mobile-nav-panel {
    display: block;
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    max-width: 82vw;
    height: 100vh;
    padding: 72px 16px 32px;
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 18px 0 36px rgba(0, 0, 0, 0.45);
    transition: left 0.24s ease;
    z-index: 30;	
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
  }

  .mobile-nav-panel.is-open {
    left: 0;
  }

  .mobile-nav-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-links li + li {
    margin-top: 10px;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .mobile-nav-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .page-shell {
    padding-top: 10px;
    padding-bottom: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-page {
    padding-top: 0;
    padding-bottom: 12px;
  }

  .home-title {
    display: block;
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 4px;
  }

  .home-subtitle {
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: 0.02em;
  }

  .page-title {
    font-size: 40px;
    line-height: 1.06;
  }

  .lead-copy,
  .page-intro,
  .service-area {
    font-size: 18px;
    line-height: 1.4;
  }

  .home-service-copy {
    margin-top: 10px;
    max-width: 100%;
  }

  .home-service-area {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 8px;
  }

  .home-body-copy {
    font-size: 18px;
    line-height: 1.45;
  }

  .home-urgent-line {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.18;
  }

  .home-contact-lead {
    font-size: 18px;
    line-height: 1.22;
  }

  .glass-panel {
    margin-top: 24px;
    border-radius: 20px;
  }

  .panel {
    padding: 20px 16px;
  }

  .stop-banner {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 16px 16px;
  }

  .stop-banner strong {
    font-size: 28px;
  }

  .stop-banner span {
    font-size: 17px;
  }

  .alert-copy {
    font-size: 24px !important;
  }

  .section h2 {
    font-size: 24px;
  }

  .section h3 {
    font-size: 20px;
  }

  .section p,
  .section li {
    font-size: 18px;
    line-height: 1.45;
  }

  .certificate-example {
    margin: 16px 0 18px 0;
    padding-left: 16px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 420px;
    margin: 12px auto 8px;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
    min-height: 42px;
    padding: 8px 6px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  }

  .button-action {
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
  }

  .button-sub {
    display: none;
  }

  .mobile-number-row {
    display: block;
    margin: 0 auto 14px;
    max-width: 420px;
    text-align: center;
  }

  .mobile-number-link {
    display: inline-block;
    padding: 2px 4px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: var(--shadow-text);
  }

  .site-footer {
    margin-top: 34px;
    margin-bottom: 18px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .contact-chooser {
    display: block;
    width: min(92vw, 360px);
    border: none;
    border-radius: 20px;
    padding: 18px 16px 16px;
    background: rgba(24, 24, 24, 0.98);
    color: var(--color-text);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }

  .contact-chooser::backdrop {
    background: rgba(0, 0, 0, 0.55);
  }

  .contact-chooser-title {
    margin: 0 0 14px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-gold-light);
  }

  .contact-chooser-actions {
    display: grid;
    gap: 10px;
  }

  .contact-choice {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
  }

  .contact-choice.call-choice {
    background: var(--color-gold);
    color: #1e1e1e;
  }

  .contact-choice.text-choice {
    background: var(--color-gold-dark);
    color: var(--color-text);
  }

  .contact-choice.cancel-choice {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: none;
    cursor: pointer;
    font: inherit;
  }
  
  .pricing-row {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.75rem;
    margin-bottom: 0.9em;
  }

  .pricing-row .price {
    white-space: normal;
    text-align: left;
  }
    .pricing-row .label strong {
    display: inline;
  }

  .pricing-row .label strong::after {
    content: "";
    display: block;
  }
  
  .subtle {
    margin-top: 0.2em;
  }
}

@media (max-width: 420px) {
  .home-title {
    font-size: 36px;
  }

  .home-subtitle {
    font-size: 22px;
  }

  .page-title {
    font-size: 36px;
  }

  .lead-copy,
  .page-intro,
  .service-area {
    font-size: 17px;
  }

  .home-service-area {
    font-size: 22px;
  }

  .home-body-copy {
    font-size: 17px;
  }

  .home-urgent-line {
    font-size: 20px;
  }

  .home-contact-lead {
    font-size: 17px;
  }

  .section h2 {
    font-size: 23px;
  }

  .section h3 {
    font-size: 19px;
  }

  .section p,
  .section li {
    font-size: 17px;
  }

  .cta-button {
    min-height: 40px;
    padding: 7px 4px;
    border-radius: 12px;
  }

  .button-action {
    font-size: 13px;
  }

  .mobile-number-link {
    font-size: 16px;
  }
}

/* landscape smartphones: short height is the trigger */
@media (orientation: landscape) and (max-height: 500px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: visible;
  }

  .hero--home {
    background-position: center 44%;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
  }

  .mobile-landscape-header {
    display: none;
  }

  .hamburger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-nav-border);
    border-radius: 10px;
    background: var(--color-nav-bg);
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
  }

  .hamburger-button svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-panel {
    display: block;
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    max-width: 82vw;
    height: 100vh;
    padding: 72px 16px 32px;
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 18px 0 36px rgba(0, 0, 0, 0.45);
    transition: left 0.24s ease;
    z-index: 30;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
  }

  .mobile-nav-panel.is-open {
    left: 0;
  }

  .mobile-nav-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-links li + li {
    margin-top: 10px;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .mobile-nav-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .page-shell {
    padding: 20px 12px 16px;
  }

  .home-page {
    padding-top: 12px;
    text-align: center;
  }

  .home-title {
    margin: 14px auto 0;
    padding: 0 52px;
    font-size: 40px;
    line-height: 1.02;
    text-align: center;
  }

  .page-title {
    font-size: 44px;
    line-height: 1.05;
    padding-left: 56px;
    padding-right: 18px;
    text-align: center;
  }

  .home-subtitle {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.08;
    text-align: center;
  }

  .home-service-copy {
    margin-top: 10px;
    max-width: 980px;
  }

  .home-service-area {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .home-body-copy {
    font-size: 14px;
    line-height: 1.3;
  }

  .home-urgent-line {
    margin: 12px 0 10px;
    font-size: 16px;
    line-height: 1.12;
  }

  .home-contact-lead {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .lead-copy,
  .page-intro,
  .service-area {
    font-size: 15px;
    line-height: 1.3;
  }

  .glass-panel {
    margin-top: 20px;
  }

  .panel {
    padding: 18px 16px;
  }

  .section h2 {
    font-size: 21px;
  }

  .section h3 {
    font-size: 18px;
  }

  .section p,
  .section li {
    font-size: 16px;
    line-height: 1.35;
  }

  .certificate-example {
    margin: 14px 0 16px 0;
    padding-left: 14px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    margin: 10px auto 6px;
    align-items: stretch;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
    min-height: 42px;
    padding: 6px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
  }

  .button-action {
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
  }

  .button-sub {
    display: inline;
    font-size: 12px;
    font-weight: 700;
    margin-left: 4px;
  }

  .cta-email .button-action,
  .cta-email .button-sub {
    font-size: 11px;
  }

  .mobile-number-row {
    display: none;
  }

  .site-footer {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-chooser {
    display: block;
    width: min(92vw, 360px);
    border: none;
    border-radius: 20px;
    padding: 18px 16px 16px;
    background: rgba(24, 24, 24, 0.98);
    color: var(--color-text);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }

  .contact-chooser::backdrop {
    background: rgba(0, 0, 0, 0.55);
  }

  .contact-chooser-title {
    margin: 0 0 14px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-gold-light);
  }

  .contact-chooser-actions {
    display: grid;
    gap: 10px;
  }

  .contact-choice {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
  }

  .contact-choice.call-choice {
    background: var(--color-gold);
    color: #1e1e1e;
  }

  .contact-choice.text-choice {
    background: var(--color-gold-dark);
    color: var(--color-text);
  }

  .contact-choice.cancel-choice {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: none;
    cursor: pointer;
    font: inherit;
  }
}