:root {
  --ink: #111925;
  --muted: #5f6259;
  --rose: #cf4458;
  --rose-dark: #af3347;
  --olive: #4b5222;
  --cream: #fff8f5;
  --shell: #f8ebe5;
  --line: rgba(207, 68, 88, 0.22);
  --shadow: 0 20px 60px rgba(78, 42, 34, 0.14);
  color-scheme: light;
  scroll-behavior: smooth;
  font-size: calc(100% * var(--reader-scale, 1));
}

:root.theme-dark {
  --ink: #fffaf5;
  --muted: #f0e8dd;
  --rose: #ff6f86;
  --rose-dark: #ff5b75;
  --olive: #e7ef9d;
  --cream: #10120c;
  --shell: #181b12;
  --line: rgba(255, 255, 255, 0.24);
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(207, 68, 88, 0.1), transparent 28%),
    linear-gradient(180deg, #fffaf8 0%, #fff6f1 44%, #ffffff 100%);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

:root.theme-dark body {
  background:
    radial-gradient(circle at 8% 20%, rgba(226, 99, 117, 0.12), transparent 28%),
    linear-gradient(180deg, #11130c 0%, #171811 52%, #0c0d09 100%);
}

body,
button,
input,
textarea {
  font: 1rem/1.55 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 98px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

:root.theme-dark .site-header {
  background: #11130c;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 104px;
  padding: 0;
  aspect-ratio: 46 / 52;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 1.78rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--rose);
  font-weight: 700;
  line-height: 1.1;
}

.brand em {
  display: block;
  margin-top: 4px;
  color: var(--olive);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: var(--olive);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  white-space: nowrap;
}

.main-nav a,
.site-footer a {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.site-footer a:hover {
  border-color: currentColor;
}

.menu-toggle,
button.menu-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(75, 82, 34, 0.22);
  border-radius: 50%;
  background: #fff;
  color: var(--olive);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(78, 42, 34, 0.1);
}

.menu-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.menu-toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 16px;
}

.menu-toggle-icon span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-icon span:nth-child(1) {
  top: 0;
}

.menu-toggle-icon span:nth-child(2) {
  top: 7px;
}

.menu-toggle-icon span:nth-child(3) {
  top: 14px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(207, 68, 88, 0.22);
}

.header-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: min(760px, calc(100vh - 98px));
  padding: clamp(38px, 5.5vw, 76px) 0;
}

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

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

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.25vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.provider {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.button-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 34px rgba(207, 68, 88, 0.24);
}

.button-primary:hover,
.header-call:hover {
  background: var(--rose-dark);
}

.button-secondary {
  background: #fff;
  color: var(--olive);
  outline: 1px solid rgba(75, 82, 34, 0.2);
}

:root.theme-dark .button-secondary {
  background: #fffaf5;
  color: #303711;
  outline-color: rgba(231, 239, 157, 0.35);
}

:root.theme-dark .highlight {
  background: #e85f76;
  box-shadow: 0 20px 48px rgba(232, 95, 118, 0.24);
}

:root.theme-dark .highlight .button {
  background: #fffaf5;
  color: #8f2537;
}

:root.theme-dark .keyword-cloud span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(231, 239, 157, 0.34);
  color: var(--olive);
}

:root.theme-dark .value-icon--green,
:root.theme-dark .service-icon--green,
:root.theme-dark .mobile-contact-bar a:last-child {
  background: #53600f;
  color: #fff;
}

.hero-media {
  position: relative;
  isolation: isolate;
  min-height: 560px;
}

.hero-media::before {
  position: absolute;
  inset: 40px -28px -28px 28px;
  z-index: 0;
  content: "";
  background: rgba(207, 68, 88, 0.12);
  border-radius: 8px;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(70vh, 680px);
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: var(--rose);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(207, 68, 88, 0.24);
}

.highlight .eyebrow,
.highlight h2,
.highlight p {
  color: #fff;
}

.highlight h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

.highlight p {
  max-width: 820px;
  margin-bottom: 0;
}

.highlight .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--rose);
  box-shadow: none;
}

.local-seo {
  padding: 74px 0 24px;
}

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

.local-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 68, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(78, 42, 34, 0.07);
}

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

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: 22px auto 0;
  text-align: center;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid rgba(75, 82, 34, 0.16);
  border-radius: 999px;
  color: var(--olive);
  font-size: 0.9rem;
  font-weight: 850;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 42px 0 78px;
}

.values article {
  padding: 18px clamp(18px, 3vw, 38px);
  text-align: center;
}

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

.value-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
}

.value-icon svg,
.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.value-icon--green,
.service-icon--green {
  background: var(--olive);
}

.values h2 {
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.values p,
.service-card p,
.consult p,
.contact p {
  color: var(--muted);
}

.passion {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: 62px 0 24px;
}

.passion h2 {
  color: var(--olive);
}

.passion p:not(.script) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
}

.passion img {
  width: min(100%, 360px);
  justify-self: end;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 265px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 68, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(78, 42, 34, 0.08);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(78, 42, 34, 0.13);
}

.service-icon {
  width: 68px;
  height: 68px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.service-icon--cream {
  background: #f2e9df;
  color: var(--olive);
}

.service-icon--red {
  background: #d53b50;
}

.consult {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: 62px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 246, 244, 0.92)),
    url("assets/leaf-detail.webp") right bottom / 310px auto no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.script {
  margin-bottom: -10px;
  color: var(--rose);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
}

.consult h2 {
  color: var(--olive);
}

.faq {
  padding: 78px 0 24px;
}

.faq details {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 68, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(78, 42, 34, 0.06);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .menu-toggle,
  button.menu-toggle {
    display: inline-flex !important;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding-top: 8px;
    white-space: normal;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(75, 82, 34, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
  }
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--olive);
  font-weight: 900;
}

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

.billing-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
}

.billing-box svg {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--olive);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 92px 0;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 850;
}

.contact-links a {
  color: var(--rose);
}

.provider-card {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border-left: 4px solid var(--rose);
  border-radius: 6px;
}

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

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

:root.theme-dark .contact-form,
:root.theme-dark .provider-card,
:root.theme-dark .faq details,
:root.theme-dark .service-card,
:root.theme-dark .values,
:root.theme-dark .local-grid article,
:root.theme-dark .billing-box {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

:root.theme-dark .consult {
  background:
    linear-gradient(90deg, rgba(24, 27, 18, 0.98), rgba(17, 19, 12, 0.96)),
    url("assets/leaf-detail.webp") right bottom / 310px auto no-repeat;
}

:root.theme-dark .billing-box {
  background: rgba(255, 255, 255, 0.18);
}

:root.theme-dark .button-primary,
:root.theme-dark .header-call,
:root.theme-dark .mobile-contact-bar a:first-child {
  color: #fff;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--olive);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(75, 82, 34, 0.18);
  border-radius: 6px;
  background: #fffaf8;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

:root.theme-dark .contact-form input,
:root.theme-dark .contact-form textarea {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(207, 68, 88, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--rose);
}

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

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

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(75, 82, 34, 0.1);
  color: var(--olive);
  font-weight: 800;
}

.form-status.is-error {
  background: rgba(207, 68, 88, 0.12);
  color: var(--rose-dark);
}

:root.theme-dark .form-status.is-error {
  color: #ff9aaa;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--rose);
  color: #fff;
}

.footer-brand,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-footer nav {
  justify-content: center;
  font-weight: 800;
}

.design-credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 750;
}

.design-credit a {
  color: #fff;
  border-bottom: 1px solid currentColor;
}

.legal-page {
  max-width: 880px;
  padding: clamp(48px, 8vw, 86px) 0;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.legal-page a {
  color: var(--rose);
  font-weight: 800;
}

.mobile-contact-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-contact-bar a {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(34, 31, 28, 0.18);
}

.mobile-contact-bar a:first-child {
  background: var(--rose);
}

.mobile-contact-bar a:last-child {
  background: var(--olive);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 19;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--olive);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 14px 34px rgba(34, 31, 28, 0.18);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.display-tools {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 30;
  transform: translateY(-50%);
}

.display-tools-toggle {
  display: grid;
  width: 44px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(75, 82, 34, 0.18);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #fff;
  color: var(--olive);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(34, 31, 28, 0.14);
}

:root.theme-dark .display-tools-toggle {
  background: #fffaf5;
  border-color: rgba(231, 239, 157, 0.3);
  color: #303711;
}

.display-tools-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.display-tools-toggle svg circle {
  fill: currentColor;
  stroke: none;
}

.display-tools-panel {
  position: absolute;
  top: 50%;
  right: 48px;
  display: grid;
  width: min(280px, calc(100vw - 72px));
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(75, 82, 34, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  box-shadow: 0 20px 46px rgba(34, 31, 28, 0.18);
}

.display-tools:hover .display-tools-panel,
.display-tools:focus-within .display-tools-panel,
.display-tools.is-open .display-tools-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
  visibility: visible;
}

:root.theme-dark .display-tools-panel {
  background: rgba(16, 18, 12, 0.98);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.44);
}

.display-tools-panel strong {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-switch,
.font-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.theme-switch input {
  position: absolute;
  opacity: 0;
}

.theme-switch span:last-child {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid rgba(75, 82, 34, 0.2);
  border-radius: 999px;
  background: rgba(75, 82, 34, 0.18);
  cursor: pointer;
}

.theme-switch span:last-child::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 160ms ease, background 160ms ease;
  box-shadow: 0 2px 8px rgba(34, 31, 28, 0.18);
}

.theme-switch input:checked + span {
  background: var(--rose);
}

.theme-switch input:checked + span::before {
  transform: translateX(18px);
}

.font-controls {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
}

.font-controls button {
  min-width: 36px;
  min-height: 34px;
  border: 1px solid rgba(75, 82, 34, 0.24);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

:root.theme-dark .font-controls button {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--ink);
}

.font-controls output {
  min-width: 46px;
  color: var(--rose);
  text-align: center;
  font-weight: 950;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .menu-toggle,
  button.menu-toggle {
    display: inline-flex !important;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding-top: 8px;
    white-space: normal;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(75, 82, 34, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
  }

  .hero,
  .consult,
  .contact {
    grid-template-columns: 1fr;
  }

  .highlight {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media::before {
    inset: 24px 0 -16px 20px;
  }

  .values,
  .local-grid,
  .passion,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .passion img {
    justify-self: start;
  }

  .values article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .consult {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .site-header {
    gap: 14px;
    min-height: 72px;
  }

  .brand img {
    width: 64px;
    padding: 0;
  }

  .brand strong {
    font-size: clamp(1.18rem, 7vw, 1.42rem);
  }

  .brand em {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr;
    font-size: 0.78rem;
  }

  .header-call {
    width: 44px;
    padding: 0;
  }

  .header-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .section {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(1.92rem, 9vw, 2.38rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.1rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-media img {
    height: 420px;
    min-height: 420px;
  }

  .hero-media::before {
    inset: 22px -10px -10px 16px;
  }

  .service-card,
  .contact-form {
    padding: 22px;
  }

  .highlight {
    padding: 26px 22px;
  }

  .highlight h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.06;
  }

  .script {
    margin-bottom: 4px;
    font-size: clamp(2.15rem, 13vw, 3rem);
    line-height: 1;
  }

  .passion {
    padding-top: 26px;
  }

  .passion p:not(.script) {
    font-size: 1.05rem;
  }

  .passion img {
    width: min(100%, 240px);
  }

  .faq summary {
    padding: 16px 18px;
    font-size: 1.05rem;
    line-height: 1.32;
  }

  .faq details p {
    padding: 0 18px 18px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .design-credit {
    justify-content: flex-start;
  }

  .mobile-contact-bar {
    display: grid;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    gap: 8px;
  }

  .mobile-contact-bar a {
    min-height: 46px;
    font-size: 1rem;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .display-tools {
    top: auto;
    right: 0;
    bottom: calc(146px + env(safe-area-inset-bottom));
    transform: none;
  }

  .display-tools-panel {
    top: auto;
    right: 48px;
    bottom: 0;
    transform: translateX(10px);
  }

  .display-tools:hover .display-tools-panel,
  .display-tools:focus-within .display-tools-panel,
  .display-tools.is-open .display-tools-panel {
    transform: translateX(0);
  }

  body.menu-is-open .mobile-contact-bar,
  body.menu-is-open .back-to-top,
  body.menu-is-open .display-tools {
    display: none;
  }
}
