:root {
  --ink: #132724;
  --ink-deep: #0b1d1b;
  --green: #173b37;
  --green-soft: #315b54;
  --paper: #f2efe8;
  --paper-warm: #e8e1d4;
  --white: #fffdf9;
  --brass: #b08a52;
  --brass-light: #d7bd91;
  --text: #283b38;
  --muted: #6f7c77;
  --line: rgba(19, 39, 36, 0.16);
  --shadow: 0 24px 60px rgba(11, 29, 27, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(11, 29, 27, 0.08);
}

.topline {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topline-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline-inner span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topline-inner i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass-light);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--green);
  border: 1px solid var(--brass);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.38rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.main-nav > a:not(.nav-portal) {
  position: relative;
  color: #30423f;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.nav-portal)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-portal):hover::after,
.main-nav > a:not(.nav-portal):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-portal {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.nav-portal:hover {
  color: var(--ink);
  background: var(--brass-light);
}

.nav-portal svg,
.button-portal svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 253, 249, 0.9), rgba(232, 225, 212, 0.66)),
    repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(19, 39, 36, 0.045) 120px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -280px;
  left: -170px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(176, 138, 82, 0.22);
  border-radius: 50%;
}

.hero-lines {
  position: absolute;
  right: -140px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23, 59, 55, 0.13);
  border-radius: 50%;
}

.hero-lines::after {
  content: "";
  position: absolute;
  inset: 64px;
  border: 1px solid rgba(176, 138, 82, 0.2);
  border-radius: inherit;
}

.hero-grid {
  position: relative;
  z-index: 1;
  padding: 68px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  display: inline-block;
  background: var(--brass);
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 680px;
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(3.15rem, 5.25vw, 5.55rem);
  letter-spacing: -0.043em;
  line-height: 0.95;
}

h1 em {
  color: var(--green-soft);
  font-weight: 500;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: #52635f;
  font-size: 1rem;
  line-height: 1.85;
}

.hero-actions {
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 15px 30px rgba(23, 59, 55, 0.2);
}

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

.text-link {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link span {
  margin-left: 5px;
  color: var(--brass);
}

.trust-list {
  margin: 0;
  padding: 21px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-list li {
  color: #53645f;
  font-size: 0.72rem;
  line-height: 1.55;
}

.trust-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  padding: 0 0 28px 28px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  width: 62%;
  height: 72%;
  border: 1px solid var(--brass);
}

.image-frame {
  position: relative;
  z-index: 1;
  height: 530px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.partnership-hero-image {
  height: auto;
  aspect-ratio: 1400 / 1124;
  background: #061728;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 29, 27, 0.35));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.partnership-hero-image img {
  object-fit: contain;
  object-position: center;
}

.whatsapp-hotspot {
  position: absolute;
  z-index: 4;
  top: 62.5%;
  left: 5.4%;
  width: 23%;
  height: 6.5%;
  min-height: 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-hotspot:hover,
.whatsapp-hotspot:focus-visible {
  border-color: #32c766;
  background: rgba(50, 199, 102, 0.14);
  box-shadow: 0 0 0 3px rgba(50, 199, 102, 0.15);
  outline: none;
}

.whatsapp-number-overlay {
  position: absolute;
  z-index: 5;
  top: 64.2%;
  left: 15.4%;
  width: 11.2%;
  height: 3.3%;
  padding-left: 0.25%;
  display: flex;
  align-items: center;
  color: #151515;
  background: #f2eee6;
  font-family: Arial, sans-serif;
  font-size: clamp(5px, 0.58vw, 9px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 0;
  width: min(400px, 85%);
  min-height: 112px;
  padding: 22px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 38px rgba(11, 29, 27, 0.28);
}

.note-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 189, 145, 0.6);
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.hero-note small,
.hero-note strong {
  display: block;
}

.hero-note small {
  margin-bottom: 5px;
  color: var(--brass-light);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-note > a {
  font-size: 1.4rem;
  text-decoration: none;
}

.trust-strip {
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink-deep);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.trust-strip p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.trust-strip span {
  height: 1px;
  background: rgba(215, 189, 145, 0.22);
}

.section {
  padding: 112px 0;
}

.about {
  background:
    radial-gradient(circle at 88% 20%, rgba(176, 138, 82, 0.08), transparent 27%),
    var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
}

.section-intro h2,
.section-heading h2,
.partnership-copy h2,
.appointment-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 4.1vw, 4.3rem);
  letter-spacing: -0.034em;
  line-height: 1.02;
}

.lead-copy {
  margin-bottom: 47px;
  color: #3f524e;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}

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

.principle-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.principle-grid article > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1rem;
}

.principle-grid h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
}

.principle-grid p,
.service-card p,
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.75;
}

.services {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--green);
  background-size: 80px 80px;
}

.section-heading {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  color: var(--white);
}

.section-heading > p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  position: relative;
  min-height: 325px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-5px);
}

.service-no {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--serif);
}

.service-icon {
  width: 51px;
  height: 51px;
  margin-bottom: 48px;
  display: grid;
  place-items: center;
  color: var(--brass-light);
  border: 1px solid rgba(215, 189, 145, 0.42);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.service-card h3 {
  min-height: 60px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.08;
}

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

.service-card a {
  position: absolute;
  right: 35px;
  bottom: 28px;
  left: 35px;
  display: flex;
  justify-content: space-between;
  color: var(--brass-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.partnership {
  background: var(--paper-warm);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.partnership-image {
  position: relative;
  margin: 0;
  padding: 20px 20px 0 0;
}

.partnership-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 72%;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
}

.partnership-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.partnership-image figcaption {
  position: relative;
  z-index: 2;
  width: 82%;
  margin: -1px 0 0 auto;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink-deep);
  font-size: 0.73rem;
}

.partnership-image figcaption span {
  margin-right: 15px;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.partnership-copy h2 {
  margin-bottom: 24px;
}

.partnership-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: #596762;
  font-size: 0.89rem;
  line-height: 1.85;
}

.portal-rule {
  margin-bottom: 28px;
  padding: 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: #4d5f5a;
  background: rgba(255, 253, 249, 0.72);
  border-left: 2px solid var(--brass);
}

.portal-rule > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brass);
  border-radius: 50%;
  font-family: var(--serif);
}

.portal-rule p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

.button-portal {
  color: var(--white);
  background: var(--green);
}

.button-portal:hover {
  background: var(--ink-deep);
  box-shadow: 0 14px 26px rgba(11, 29, 27, 0.18);
}

.secure-note {
  margin-top: 15px;
  display: block;
  color: #6b7773;
  font-size: 0.66rem;
}

.secure-note span {
  margin-right: 6px;
  color: var(--brass);
}

.process {
  background: var(--white);
}

.section-intro.centered {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

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

.process-card {
  min-height: 240px;
  padding: 34px;
  background: var(--paper);
  border-top: 2px solid var(--brass);
}

.process-card > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.process-card h3 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: 1.75rem;
}

.appointment {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 18%, rgba(176, 138, 82, 0.16), transparent 25%),
    var(--ink-deep);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 125px);
  align-items: start;
}

.appointment-copy {
  position: sticky;
  top: 155px;
}

.appointment-copy h2 {
  margin-bottom: 25px;
  color: var(--white);
}

.appointment-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.87rem;
  line-height: 1.85;
}

.appointment-points {
  margin-top: 35px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.appointment-points p {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
}

.appointment-points span {
  margin-right: 10px;
  color: var(--brass-light);
}

.appointment-form {
  padding: clamp(28px, 4vw, 46px);
  color: var(--text);
  background: var(--white);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.25);
}

.form-heading {
  margin-bottom: 29px;
  padding-bottom: 17px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.form-heading strong {
  align-self: center;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  margin-bottom: 17px;
  display: grid;
  gap: 8px;
}

.field > span,
.slot-fieldset legend {
  color: #3c504b;
  font-size: 0.68rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f4ee;
  border: 1px solid rgba(19, 39, 36, 0.16);
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 138, 82, 0.12);
}

.slot-fieldset {
  min-width: 0;
  margin: 3px 0 19px;
  padding: 0;
  border: 0;
}

.slot-fieldset legend {
  margin-bottom: 10px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.slot-button {
  min-height: 39px;
  color: #435550;
  background: #f7f4ee;
  border: 1px solid rgba(19, 39, 36, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.slot-button:hover:not(:disabled),
.slot-button.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.slot-button:disabled {
  color: #a4aaa7;
  background: #f1eee8;
  cursor: not-allowed;
  text-decoration: line-through;
}

.privacy-check {
  margin: 4px 0 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #687670;
  font-size: 0.67rem;
  line-height: 1.55;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
  color: var(--white);
  background: var(--green);
}

.button-submit:hover {
  background: var(--ink-deep);
}

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

.button-submit i {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: normal;
}

.form-status {
  min-height: 21px;
  margin: 15px 0 0;
  color: #a33b31;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
}

.form-status.success {
  color: #2d6a54;
}

.site-footer {
  padding: 70px 0 22px;
  color: rgba(255, 255, 255, 0.64);
  background: #071513;
}

.footer-grid {
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
}

.brand-footer .brand-mark {
  color: var(--ink-deep);
  background: var(--brass-light);
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--brass-light);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0 0 11px;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  line-height: 1.55;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white) !important;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.62rem;
}

.footer-admin-link {
  color: var(--brass-light);
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.reveal-delay,
.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 32px 0 0;
    z-index: 101;
    padding: 120px 8vw 50px;
    display: grid;
    align-content: start;
    gap: 0;
    background:
      radial-gradient(circle at 90% 10%, rgba(176, 138, 82, 0.16), transparent 24%),
      var(--ink-deep);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path 260ms ease, opacity 200ms ease, visibility 260ms ease;
  }

  .main-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .main-nav > a:not(.nav-portal) {
    padding: 18px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-family: var(--serif);
    font-size: clamp(1.5rem, 5vw, 2.3rem);
    font-weight: 500;
  }

  .main-nav > a:not(.nav-portal)::after {
    display: none;
  }

  .nav-portal {
    margin-top: 30px;
    min-height: 58px;
    justify-content: space-between;
    color: var(--ink-deep);
    background: var(--brass-light);
    border-color: var(--brass-light);
    font-size: 0.83rem;
  }

  .menu-open .menu-toggle {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .menu-open .brand {
    position: relative;
    z-index: 102;
  }

  .menu-open .brand-mark {
    color: var(--ink-deep);
    background: var(--brass-light);
  }

  .menu-open .brand-copy strong {
    color: var(--white);
  }

  .hero-grid,
  .about-grid,
  .partnership-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(780px, 100%);
    margin-left: auto;
  }

  .about-grid,
  .partnership-grid,
  .appointment-grid {
    gap: 60px;
  }

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

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

  .appointment-copy {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .topline-inner span:first-child {
    display: none;
  }

  .topline-inner {
    justify-content: flex-end;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    font-size: 1.55rem;
  }

  .brand-copy strong {
    font-size: 1.14rem;
  }

  .brand-copy small {
    font-size: 0.49rem;
  }

  .main-nav {
    padding: 105px 24px 40px;
  }

  .hero-grid {
    padding: 58px 0 65px;
    gap: 48px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-lead {
    font-size: 0.9rem;
  }

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

  .trust-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .trust-list span {
    margin: 0;
  }

  .hero-visual {
    padding: 0 0 34px 15px;
  }

  .image-frame {
    height: auto;
    aspect-ratio: 1400 / 1124;
  }

  .hero-note {
    right: -8px;
    width: calc(100% - 31px);
    min-height: 96px;
    padding: 16px;
  }

  .note-icon {
    width: 39px;
    height: 39px;
  }

  .hero-note strong {
    font-size: 1rem;
  }

  .trust-strip {
    overflow: hidden;
  }

  .trust-strip-grid {
    width: max-content;
    grid-template-columns: repeat(7, auto);
    gap: 20px;
  }

  .trust-strip span {
    width: 28px;
  }

  .section {
    padding: 80px 0;
  }

  .section-intro h2,
  .section-heading h2,
  .partnership-copy h2,
  .appointment-copy h2 {
    font-size: clamp(2.45rem, 11.4vw, 3.55rem);
  }

  .about-grid,
  .partnership-grid,
  .appointment-grid {
    gap: 45px;
  }

  .principle-grid,
  .services-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    gap: 24px;
  }

  .service-card {
    min-height: 300px;
    padding: 28px;
  }

  .service-card a {
    right: 28px;
    left: 28px;
  }

  .partnership-image {
    padding: 12px 12px 0 0;
  }

  .partnership-image figcaption {
    width: 94%;
  }

  .button-portal {
    width: 100%;
    padding-inline: 17px;
    justify-content: space-between;
  }

  .section-intro.centered {
    text-align: left;
  }

  .section-intro.centered .eyebrow {
    justify-content: flex-start;
  }

  .process-card {
    min-height: 210px;
  }

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

  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    gap: 31px;
  }

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

/* KFM rebrand, multilingual navigation, outcomes and company access */
.mail-security-notice { position: relative; z-index: 70; color: #f8f4ec; background: #0b2724; border-bottom: 1px solid rgba(221,181,111,.38); }
.mail-security-inner { min-height: 54px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding-block: 10px; }
.mail-security-inner p { margin: 0; font-size: .78rem; line-height: 1.55; color: rgba(255,255,255,.76); }
.mail-security-inner strong { color: #e4bd78; text-transform: uppercase; letter-spacing: .08em; }
.mail-security-inner > a { color: #fff; font-size: .75rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; white-space: nowrap; }
.mail-security-icon { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid #d5aa64; border-radius: 50%; color: #d5aa64; font-weight: 800; }
.language-picker { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.language-picker > span { opacity: .68; }
.language-picker select { min-width: 112px; border: 0; border-bottom: 1px solid rgba(255,255,255,.36); border-radius: 0; padding: 2px 20px 3px 2px; color: #fff; background: #0c2926; font: inherit; font-weight: 700; text-transform: none; cursor: pointer; }
.button-whatsapp { min-width: 148px; gap: 10px; padding-inline: 20px; color: #fff; background: #18785d; box-shadow: 0 14px 34px rgba(24,120,93,.2); }
.button-whatsapp:hover { background: #12634c; transform: translateY(-2px); }
.button-whatsapp svg { width: 21px; height: 21px; fill: currentColor; }
.outcomes { position: relative; overflow: hidden; padding: 92px 0; color: #f7f3eb; background: radial-gradient(circle at 12% 18%,rgba(193,154,95,.18),transparent 29%),linear-gradient(135deg,#092421 0%,#103a35 58%,#0b2d2a 100%); }
.outcomes::after { content: ""; position: absolute; right: -150px; bottom: -210px; width: 520px; height: 520px; border: 1px solid rgba(219,186,129,.24); border-radius: 50%; }
.outcomes-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr repeat(3,minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.outcomes-intro,.outcome-card { min-height: 320px; padding: 38px; background: rgba(8,38,34,.86); }
.outcomes-intro h2 { max-width: 480px; margin: 22px 0 18px; font-family: var(--font-display); font-size: clamp(2.45rem,4vw,4.2rem); font-weight: 500; line-height: .98; }
.outcomes-intro>p:last-child,.outcome-card p { color: rgba(255,255,255,.68); line-height: 1.75; }
.outcome-card { display: flex; flex-direction: column; justify-content: flex-end; transition: background 220ms ease,transform 220ms ease; }
.outcome-card:hover { position: relative; z-index: 2; background: rgba(19,62,56,.96); transform: translateY(-5px); }
.outcome-card>strong { display: block; margin-bottom: 22px; color: #e2bd7a; font-family: var(--font-display); font-size: clamp(3.2rem,5vw,5.7rem); font-weight: 500; line-height: .8; }
.outcome-card>strong span { font-size: .48em; }
.outcome-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 1.85rem; font-weight: 500; }
.outcome-card-featured { justify-content: space-between; background: #c99d58; color: #102c2a; }
.outcome-card-featured:hover { background: #d4ac6c; }
.outcome-card-featured small { letter-spacing: .18em; font-weight: 700; }
.outcome-card-featured p { color: rgba(16,44,42,.72); }
.outcome-card-featured a { color: #102c2a; font-weight: 700; text-decoration: underline; text-underline-offset: 6px; }
.company-access-shell { margin-top: 64px; }
.company-access-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: end; margin-bottom: 28px; }
.company-access-heading h3 { margin: 14px 0 0; font-family: var(--font-display); font-size: clamp(2rem,3vw,3.25rem); font-weight: 500; line-height: 1; }
.company-access-heading>p { margin: 0; color: var(--muted); line-height: 1.75; }
.company-access-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.company-access-card { width: 100%; min-height: 92px; display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.58); text-align: left; cursor: pointer; transition: transform 180ms ease,border-color 180ms ease,background 180ms ease; }
.company-access-card:hover { transform: translateY(-3px); border-color: #b98b4b; background: #fff; }
.company-access-card>span { display: grid; place-items: center; width: 48px; height: 48px; color: #b98b4b; background: #102c2a; font-size: .75rem; font-weight: 800; letter-spacing: .05em; }
.company-access-card div { min-width: 0; }
.company-access-card strong,.company-access-card small { display: block; }
.company-access-card strong { font-size: .92rem; }
.company-access-card small { margin-top: 5px; color: var(--muted); font-size: .7rem; }
.company-access-card>i { color: #b98b4b; font-style: normal; font-weight: 800; }
.company-access-card.active { color: #fff; background: #123d38; border-color: #123d38; }
.company-access-card.active>span { color: #102c2a; background: #d6ae6c; }
.company-access-card.active small { color: rgba(255,255,255,.64); }
.company-access-warning { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start; margin-top: 16px; padding: 20px; border: 1px solid #d8b26e; color: #fff; background: #102c2a; }
.company-access-warning[hidden] { display: none; }
.company-access-warning>span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #d8b26e; border-radius: 50%; color: #d8b26e; font-weight: 800; }
.company-access-warning p { margin: 0; color: rgba(255,255,255,.74); line-height: 1.65; }
.company-access-warning strong { color: #e5bf7c; }
.company-access-warning button { border: 0; color: #fff; background: transparent; font-size: 1.5rem; cursor: pointer; }
@media (max-width:1100px) { .outcomes-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width:760px) { .mail-security-inner { grid-template-columns: auto 1fr; } .mail-security-inner>a { grid-column: 2; } .language-picker>span { display:none; } .language-picker select { min-width: 105px; } .company-access-heading { grid-template-columns:1fr; gap:16px; } .company-access-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:680px) { .hero-actions { display:grid; grid-template-columns:minmax(0,1fr); gap:10px; } .hero-actions .text-link { grid-column:1/-1; } .hero-actions .button { width:100%; min-width:0; padding-inline:12px; text-align:center; justify-content:center; font-size:.78rem; } .outcomes { padding:58px 0; } .outcomes-grid { grid-template-columns:1fr; } .outcomes-intro,.outcome-card { min-height:auto; padding:30px 24px; } .outcome-card { min-height:235px; } .company-access-grid { grid-template-columns:1fr; } }

/* Installable KFM application */
.modal-open { overflow:hidden; }
.install-banner { position:fixed; z-index:120; left:50%; bottom:24px; width:min(920px,calc(100% - 32px)); display:grid; grid-template-columns:auto 1fr auto auto; gap:18px; align-items:center; padding:18px 20px; color:#fff; background:linear-gradient(120deg,#0b2a27,#15463f); border:1px solid rgba(218,179,108,.58); box-shadow:0 26px 80px rgba(4,24,22,.34); transform:translateX(-50%); animation:installRise .55s cubic-bezier(.2,.8,.2,1) both; }
.install-banner[hidden] { display:none; }
@keyframes installRise { from { opacity:0; transform:translate(-50%,24px); } to { opacity:1; transform:translate(-50%,0); } }
.install-banner-icon { display:grid; place-items:center; width:58px; height:58px; color:#102c2a; background:#d8ae67; border:1px solid #f3d59f; font-family:var(--font-display); font-size:2rem; }
.install-banner-copy small { display:block; margin-bottom:5px; color:#ddb876; font-size:.64rem; font-weight:800; letter-spacing:.15em; }
.install-banner-copy strong { display:block; font-family:var(--font-display); font-size:1.45rem; font-weight:600; }
.install-banner-copy p { margin:4px 0 0; color:rgba(255,255,255,.66); font-size:.76rem; }
.install-banner-actions { display:flex; gap:8px; }
.install-banner-actions button { min-height:44px; border:1px solid #d6ad69; padding:0 15px; font:inherit; font-size:.7rem; font-weight:800; cursor:pointer; }
.install-primary { color:#102c2a; background:#d6ad69; }
.install-secondary { color:#fff; background:transparent; }
.install-close { align-self:start; border:0; color:rgba(255,255,255,.64); background:transparent; font-size:1.5rem; cursor:pointer; }
.install-modal { position:fixed; z-index:150; inset:0; display:grid; place-items:center; padding:24px; }
.install-modal[hidden] { display:none; }
.install-modal-backdrop { position:absolute; inset:0; background:rgba(3,21,19,.78); backdrop-filter:blur(8px); }
.install-modal-card { position:relative; z-index:1; width:min(760px,100%); max-height:min(820px,calc(100vh - 32px)); overflow:auto; padding:44px; color:#102c2a; background:#f8f4ec; border:1px solid #cfa866; box-shadow:0 38px 110px rgba(0,0,0,.34); }
.install-modal-card h2 { max-width:580px; margin:16px 0 26px; font-family:var(--font-display); font-size:clamp(2.1rem,5vw,3.6rem); font-weight:500; line-height:1; }
.install-modal-close { position:absolute; top:16px; right:16px; width:40px; height:40px; border:1px solid var(--line); color:#102c2a; background:transparent; font-size:1.6rem; cursor:pointer; }
.install-tabs { display:grid; grid-template-columns:repeat(3,1fr); margin-bottom:24px; border:1px solid var(--line); }
.install-tabs button { min-height:48px; border:0; border-right:1px solid var(--line); color:var(--muted); background:transparent; font:inherit; font-size:.72rem; font-weight:800; cursor:pointer; }
.install-tabs button:last-child { border-right:0; }
.install-tabs button.active { color:#fff; background:#103a35; }
.install-guide { position:relative; padding:26px; border:1px solid var(--line); background:#fff; }
.install-guide[hidden] { display:none; }
.install-device-mark { display:inline-block; margin-bottom:20px; color:#af7f3e; font-size:.66rem; font-weight:800; letter-spacing:.16em; }
.install-guide ol { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:0; padding:0; list-style:none; }
.install-guide li { display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; padding:15px; background:#f6f1e8; }
.install-guide li b { display:grid; place-items:center; width:28px; height:28px; color:#fff; background:#103a35; border-radius:50%; font-size:.7rem; }
.install-guide li p { margin:3px 0 0; color:#5e6966; font-size:.8rem; line-height:1.55; }
.install-modal-note { margin:20px 0 0; color:var(--muted); font-size:.76rem; text-align:center; }
@media (max-width:760px) { .install-banner { grid-template-columns:auto 1fr auto; bottom:12px; gap:12px; padding:14px; } .install-banner-icon { width:48px; height:48px; } .install-banner-copy strong { font-size:1.1rem; } .install-banner-copy p { display:none; } .install-banner-actions { grid-column:1/-1; } .install-banner-actions button { flex:1; } .install-close { grid-column:3; grid-row:1; } .install-modal { padding:10px; } .install-modal-card { padding:30px 18px 22px; } .install-tabs button { min-height:44px; font-size:.62rem; } .install-guide { padding:14px; } .install-guide ol { grid-template-columns:1fr; } }

/* Respectful communication and verification policy */
.conduct-modal { position:fixed; z-index:160; inset:0; display:grid; place-items:center; padding:22px; }
.conduct-modal[hidden] { display:none; }
.conduct-modal-backdrop { position:absolute; inset:0; background:rgba(3,21,19,.82); backdrop-filter:blur(9px); }
.conduct-modal-card { position:relative; z-index:1; width:min(660px,100%); padding:46px; color:#102c2a; background:#f8f4ec; border:1px solid #d0a65f; box-shadow:0 38px 110px rgba(0,0,0,.38); }
.conduct-shield { float:right; display:grid; place-items:center; width:58px; height:58px; margin-left:22px; color:#d5ac68; background:#102c2a; font-family:var(--font-display); font-size:2rem; }
.conduct-modal-card h2 { margin:18px 0; font-family:var(--font-display); font-size:clamp(2.3rem,5vw,4rem); font-weight:500; line-height:.95; }
.conduct-modal-card>p:not(.eyebrow) { color:#5d6865; line-height:1.75; }
.conduct-modal-actions { display:flex; gap:10px; margin-top:26px; }
.conduct-modal-actions button { min-height:48px; border:1px solid #103a35; padding:0 18px; font:inherit; font-size:.72rem; font-weight:800; cursor:pointer; }
.conduct-modal-actions button:first-child { color:#fff; background:#103a35; }
.conduct-modal-actions button:last-child { color:#103a35; background:transparent; }
.communication-conduct { display:grid; grid-template-columns:auto 1fr; gap:14px; margin-top:4px; padding:18px; border:1px solid rgba(218,178,106,.62); background:rgba(218,178,106,.1); }
.communication-conduct>span { display:grid; place-items:center; width:32px; height:32px; border:1px solid #d8b16b; border-radius:50%; color:#d8b16b; font-family:var(--font-display); font-size:1.1rem; }
.communication-conduct strong { display:block; margin-bottom:5px; color:#f1d39e; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; }
.communication-conduct p { margin:0; color:rgba(255,255,255,.67); font-size:.72rem; line-height:1.65; }
.conduct-confirm { margin-top:-2px; }
@media (max-width:620px) { .conduct-modal { padding:10px; } .conduct-modal-card { padding:34px 20px 24px; } .conduct-shield { width:46px; height:46px; } .conduct-modal-actions { flex-direction:column; } }

/* Six-second opening notice */
.entry-notice { position:fixed; z-index:145; top:118px; left:50%; width:min(760px,calc(100% - 30px)); display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:start; padding:20px 22px 24px; color:#412424; background:#fffaf6; border:1px solid #b94242; box-shadow:0 24px 75px rgba(73,22,22,.23); transform:translateX(-50%); transition:opacity .35s ease,transform .35s ease,visibility .35s ease; }
.entry-notice.closed { opacity:0; visibility:hidden; pointer-events:none; transform:translate(-50%,-18px); }
.entry-notice-mark { display:grid; place-items:center; width:34px; height:34px; border:1px solid #b94242; border-radius:50%; color:#b94242; font-weight:900; }
.entry-notice small { display:block; margin:1px 0 7px; color:#a52f2f; font-size:.64rem; font-weight:900; letter-spacing:.14em; }
.entry-notice p { margin:0; color:#634747; font-size:.8rem; line-height:1.65; }
.entry-notice>button { width:34px; height:34px; border:0; color:#a52f2f; background:transparent; font-size:1.7rem; line-height:1; cursor:pointer; }
.entry-notice-timer { position:absolute; left:0; bottom:0; height:3px; background:#b94242; animation:entryNoticeTimer 6s linear forwards; }
@keyframes entryNoticeTimer { from { width:100%; } to { width:0; } }
@media (max-width:680px) { .entry-notice { top:86px; grid-template-columns:auto 1fr auto; gap:10px; padding:16px 14px 20px; } .entry-notice p { font-size:.72rem; } }

/* Mobile overflow hardening for long legal identity and notices */
html,body { max-width:100%; overflow-x:hidden; }
.brand-copy,.hero-grid,.hero-copy,.mail-security-inner>*,.entry-notice>*,.install-banner-copy { min-width:0; }
.mail-security-inner p,.entry-notice p,.install-banner-copy strong { overflow-wrap:anywhere; }
@media (max-width:680px) {
  .mail-security-inner { width:100%; grid-template-columns:30px minmax(0,1fr); gap:10px; }
  .mail-security-inner>a { grid-column:2; white-space:normal; }
  .entry-notice { width:calc(100% - 20px); grid-template-columns:34px minmax(0,1fr) 30px; }
  .nav-shell { min-width:0; }
  .brand { min-width:0; max-width:calc(100% - 58px); }
  .brand-copy { max-width:220px; }
  .brand-copy strong,.brand-copy small { display:block; max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .brand-copy strong { font-size:.72rem; letter-spacing:.12em; }
  .brand-copy small { font-size:.43rem; letter-spacing:.08em; }
  .container.hero-grid { width:calc(100vw - 40px); max-width:calc(100vw - 40px); margin-inline:20px; padding-inline:0; box-sizing:border-box; }
  .hero-copy { width:100%; max-width:100%; min-width:0; overflow:hidden; box-sizing:border-box; }
  .hero-copy h1 { width:auto; max-width:none; font-size:clamp(2.55rem,11vw,3rem); white-space:normal; overflow-wrap:anywhere; word-break:normal; }
  .hero-copy h1 em { display:block; }
  .hero-copy .eyebrow { max-width:100%; font-size:.62rem; line-height:1.55; white-space:normal; overflow-wrap:anywhere; }
  .hero-lead { width:100%; max-width:100%; white-space:normal; overflow-wrap:anywhere; box-sizing:border-box; }
  .hero-actions { width:100%; max-width:100%; box-sizing:border-box; }
  .hero-actions .button { width:100%; max-width:100%; white-space:normal; line-height:1.3; }
  .install-banner { width:calc(100% - 20px); }
  .install-banner-copy strong { font-size:1rem; line-height:1.1; }
}

@media (max-width:680px) {
  .hero-note { left:auto; right:auto; width:calc(100% - 24px); max-width:calc(100% - 24px); margin-inline:auto; transform:none; }
  .trust-strip-grid { width:100%; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; padding-inline:16px; }
  .trust-strip-grid>span { display:none; }
  .trust-strip-grid>p { min-width:0; text-align:center; }
}

/* Header document-company selector */
.nav-documents { position:relative; }
.nav-documents>.nav-portal { font-family:inherit; cursor:pointer; }
.nav-documents>.nav-portal svg { transition:transform 180ms ease; }
.nav-documents.is-open>.nav-portal svg { transform:rotate(180deg); }
.nav-document-menu { position:absolute; z-index:115; top:calc(100% + 12px); right:0; width:380px; max-height:min(650px,calc(100vh - 120px)); overflow:auto; padding:14px; color:var(--ink); background:#fbf7ef; border:1px solid #cda563; box-shadow:0 24px 70px rgba(6,32,29,.24); opacity:0; visibility:hidden; pointer-events:none; transform:translateY(-8px); transition:opacity 180ms ease,transform 180ms ease,visibility 180ms ease; }
.nav-documents.is-open .nav-document-menu { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
.nav-document-heading { padding:8px 8px 13px; border-bottom:1px solid var(--line); }
.nav-document-heading small,.nav-document-heading strong { display:block; }
.nav-document-heading small { margin-bottom:5px; color:#a97937; font-size:.58rem; font-weight:900; letter-spacing:.15em; }
.nav-document-heading strong { font-family:var(--font-display); font-size:1.25rem; font-weight:600; }
.nav-document-option { width:100%; display:grid; grid-template-columns:38px 1fr auto; gap:11px; align-items:center; min-height:62px; padding:10px 8px; border:0; border-bottom:1px solid var(--line); color:var(--ink); background:transparent; text-align:left; text-decoration:none; font:inherit; cursor:pointer; }
.nav-document-option:hover { background:#f1e9dc; }
.nav-document-option>span { display:grid; place-items:center; width:38px; height:38px; color:#d5ac68; background:#102c2a; font-size:.61rem; font-weight:900; }
.nav-document-option div { min-width:0; }
.nav-document-option strong,.nav-document-option small { display:block; }
.nav-document-option strong { font-size:.76rem; }
.nav-document-option small { margin-top:3px; color:var(--muted); font-size:.61rem; }
.nav-document-option i { color:#b17d38; font-style:normal; font-weight:900; }
.nav-document-option.active { color:#fff; background:#123c37; }
.nav-document-option.active small { color:rgba(255,255,255,.62); }
.nav-document-option.active>span { color:#102c2a; background:#d8ae67; }
.nav-document-menu>p { margin:12px 6px 2px; color:#6e7774; font-size:.65rem; line-height:1.6; }
.company-access-warning.modal-mode { position:fixed; z-index:190; top:50%; left:50%; width:min(620px,calc(100% - 28px)); max-height:calc(100vh - 40px); overflow:auto; margin:0; transform:translate(-50%,-50%); box-shadow:0 0 0 100vmax rgba(3,21,19,.82),0 30px 90px rgba(0,0,0,.36); }
@media (max-width:900px) {
  .menu-open .mail-security-notice,.menu-open .entry-notice,.menu-open .install-banner { display:none!important; }
  .main-nav.is-open { overflow-y:auto; overscroll-behavior:contain; padding-bottom:42px; }
  .nav-documents { width:100%; margin-top:30px; }
  .nav-documents>.nav-portal { width:100%; margin-top:0; min-height:58px; justify-content:space-between; color:var(--ink-deep); background:var(--brass-light); border-color:var(--brass-light); font-size:.83rem; }
  .nav-document-menu { position:static; width:100%; max-height:0; overflow:hidden; margin-top:0; padding:0 12px; border:0; box-shadow:none; opacity:0; visibility:hidden; transform:none; transition:max-height 260ms ease,opacity 180ms ease,padding 260ms ease,margin 260ms ease; }
  .nav-documents.is-open .nav-document-menu { max-height:640px; overflow:auto; margin-top:10px; padding:12px; opacity:1; visibility:visible; }
}

/* Root-level inactive document-company modal */
.document-company-modal { position:fixed; z-index:205; inset:0; display:grid; place-items:center; padding:20px; }
.document-company-modal[hidden] { display:none; }
.document-company-backdrop { position:absolute; inset:0; background:rgba(3,21,19,.84); backdrop-filter:blur(8px); }
.document-company-card { position:relative; z-index:1; width:min(650px,100%); padding:44px; color:#102c2a; background:#fbf7ef; border:1px solid #c54646; box-shadow:0 36px 110px rgba(0,0,0,.4); }
.document-company-close { position:absolute; top:14px; right:14px; width:40px; height:40px; border:1px solid #d7c8b2; color:#a83d3d; background:transparent; font-size:1.55rem; cursor:pointer; }
.document-company-mark { float:right; display:grid; place-items:center; width:60px; height:60px; margin:34px 0 12px 22px; border:1px solid #bd4141; border-radius:50%; color:#bd4141; font-size:1.5rem; font-weight:900; }
.document-company-card h2 { max-width:520px; margin:17px 0; font-family:var(--font-display); font-size:clamp(2.15rem,5vw,3.8rem); font-weight:500; line-height:.98; }
.document-company-card h2 strong { color:#a83333; font-weight:500; }
.document-company-card>p:not(.eyebrow) { color:#606b68; line-height:1.75; }
.document-company-rule { display:flex; justify-content:space-between; gap:18px; margin:24px 0; padding:16px; color:#fff; background:#103a35; }
.document-company-rule b { color:#e1ba75; font-size:.65rem; letter-spacing:.1em; }
.document-company-rule span { font-size:.76rem; font-weight:700; text-align:right; }
.document-company-dismiss { min-height:48px; border:0; padding:0 20px; color:#fff; background:#a83d3d; font:inherit; font-size:.72rem; font-weight:800; cursor:pointer; }
.modal-open .entry-notice,.modal-open .install-banner { display:none!important; }
.nav-contact-summary { display:none; }
/* Main-page dynamic contact directory */
.contact-section { position:relative; overflow:hidden; background:#eee6d9; }
.contact-section::before { content:""; position:absolute; top:-220px; left:-180px; width:520px; height:520px; border:1px solid rgba(168,121,55,.24); border-radius:50%; }
.contact-section-grid { position:relative; display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(50px,8vw,120px); align-items:center; }
.contact-section-intro h2 { margin:20px 0; font-family:var(--font-display); font-size:clamp(3rem,5vw,5.3rem); font-weight:500; line-height:.94; }
.contact-section-intro>p:not(.eyebrow) { max-width:560px; margin-bottom:28px; color:var(--muted); line-height:1.8; }
.contact-directory { border-top:1px solid #c9baa3; }
.contact-directory-item { display:grid; grid-template-columns:38px 1fr auto; gap:18px; align-items:center; min-height:108px; padding:20px 10px; border-bottom:1px solid #c9baa3; color:var(--ink); text-decoration:none; transition:padding 180ms ease,background 180ms ease; }
a.contact-directory-item:hover { padding-inline:20px; background:rgba(255,255,255,.48); }
.contact-directory-item>span { color:#a87937; font-family:var(--font-display); }
.contact-directory-item small,.contact-directory-item strong { display:block; }
.contact-directory-item small { margin-bottom:7px; color:#a87937; font-size:.62rem; font-weight:900; letter-spacing:.14em; }
.contact-directory-item strong { overflow-wrap:anywhere; font-family:var(--font-display); font-size:clamp(1.15rem,2vw,1.65rem); font-weight:600; }
.contact-directory-item>i { color:#a87937; font-style:normal; font-size:1.3rem; }
.contact-directory-item p { margin:6px 0 0; color:var(--muted); font-size:.72rem; }
@media (max-width:900px) {
  .nav-contact-summary { display:block; width:100%; margin-top:24px; padding:20px; border:1px solid rgba(255,255,255,.15); color:#fff; background:rgba(255,255,255,.05); }
  .nav-contact-summary>small { display:block; margin-bottom:13px; color:#d9b574; font-size:.58rem; font-weight:900; letter-spacing:.15em; }
  .nav-contact-summary>a,.nav-contact-summary>p { display:block; margin:8px 0; color:rgba(255,255,255,.72); font-size:.7rem; line-height:1.55; text-decoration:none; }
  .nav-contact-summary strong { color:#fff; font-weight:700; }
  .contact-section-grid { grid-template-columns:1fr; }
}
@media (max-width:620px) {
  .document-company-modal { padding:10px; }
  .document-company-card { padding:36px 20px 22px; }
  .document-company-mark { width:48px; height:48px; margin-top:30px; }
  .document-company-rule { flex-direction:column; }
  .document-company-rule span { text-align:left; }
  .contact-section-intro h2 { font-size:clamp(2.8rem,14vw,4rem); }
  .contact-directory-item { min-height:92px; grid-template-columns:30px 1fr auto; gap:10px; }
}

/* Readable communication policy inside the light appointment form */
.communication-conduct { border-color:#cba765; background:#f5eee1; }
.communication-conduct>span { color:#9a6c2f; background:#fffaf1; border-color:#cba765; }
.communication-conduct strong { color:#8c6029; }
.communication-conduct p { color:#4e5b58; opacity:1; }
