/* GC Fit — gcfit.uy */

:root {
  --bg: #E8EEE9;
  --bg-deep: #D5DED8;
  --ink: #14201C;
  --ink-soft: #3D4F48;
  --muted: #5C6F67;
  --teal: #0F766E;
  --teal-dark: #0B5A54;
  --teal-soft: #CCFBF1;
  --surface: #F4F7F5;
  --line: rgba(20, 32, 28, 0.12);
  --white: #FBFCFB;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.35rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.brand-mark-img {
  height: 2.85rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
}

.brand-footer .brand-name {
  color: #5EEAD4;
}

.brand-footer .brand-sub {
  color: rgba(251, 252, 251, 0.7);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--teal);
  color: var(--teal-dark) !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.25s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 8s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 20, 0.25) 0%, rgba(10, 24, 20, 0.55) 45%, rgba(10, 24, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 24, 20, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
  width: var(--shell);
}

.hero-copy {
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: riseIn 0.9s var(--ease) 0.32s forwards;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: rgba(251, 252, 251, 0.88);
  max-width: 32ch;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: riseIn 0.9s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: riseIn 0.9s var(--ease) 0.58s forwards;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-whatsapp {
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.section-head h2,
.contact-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 36ch;
}

.section-lead-wide {
  max-width: 52ch;
}

/* Benefits / bioposicionamiento */
.benefits {
  background: var(--bg);
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.benefit-item {
  padding-top: 1.15rem;
  border-top: 2px solid var(--teal);
}

.benefit-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}

.benefit-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* IDMatch */
.idmatch {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--bg-deep) 100%);
}

.idmatch-grid .section-head {
  margin-bottom: 2.25rem;
}

.idmatch-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.idmatch-points li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.idmatch-points strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.idmatch-points span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services {
  background: var(--surface);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block-reverse .service-copy {
  order: 2;
}

.service-block-reverse .service-visual {
  order: 1;
}

.service-copy h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.service-copy p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 34ch;
}

.service-visual {
  margin: 0;
}

.service-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-block:hover .service-visual img {
  transform: scale(1.03);
}

/* Photo cards */
.media-card {
  margin: 0;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(20, 32, 28, 0.04),
    0 12px 28px rgba(20, 32, 28, 0.08);
  overflow: hidden;
}

.media-card img {
  border-radius: 8px;
  width: 100%;
  display: block;
}

/* Method */
.method {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(15, 118, 110, 0.08), transparent 50%),
    var(--bg);
}

.method-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: none;
}

.method-steps li {
  padding-top: 1.25rem;
  border-top: 2px solid var(--teal);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.method-steps h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* About / Gerardo */
.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.75rem;
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

.about-role {
  margin: 0.4rem 0 1.25rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-copy p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 38ch;
}

.about-copy .btn {
  margin-top: 0.75rem;
}

.footer-logo {
  height: 4.5rem;
  width: auto;
  display: block;
  margin-bottom: 0.65rem;
}

/* Social */
.social {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0;
}

.social-inner {
  max-width: 40rem;
}

.social blockquote {
  margin: 0;
}

.social blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.social blockquote footer {
  color: rgba(251, 252, 251, 0.65);
  font-size: 0.95rem;
}

/* Agenda pública */
.agenda-public {
  background: var(--surface);
}

.agenda-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(20, 32, 28, 0.06);
}

.agenda-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.agenda-week-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.agenda-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.agenda-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.agenda-pill.is-libre {
  background: color-mix(in srgb, var(--teal) 12%, white);
  color: var(--teal-dark);
  border-color: color-mix(in srgb, var(--teal) 30%, white);
}

.agenda-pill.is-ocupado {
  background: #eceff0;
  color: var(--muted);
}

.agenda-pill.is-selected {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
}

.agenda-day {
  min-height: 8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem;
  background: #fbfcfb;
}

.agenda-day-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.agenda-day-slots {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.agenda-slot {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.35rem 0.4rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.agenda-slot.is-libre {
  background: color-mix(in srgb, var(--teal) 14%, white);
  color: var(--teal-dark);
}

.agenda-slot.is-libre:hover {
  background: color-mix(in srgb, var(--teal) 28%, white);
}

.agenda-slot.is-ocupado {
  background: #e8ebec;
  color: #8a9691;
  cursor: not-allowed;
}

.agenda-slot.is-selected {
  background: var(--teal);
  color: var(--white);
}

.agenda-status {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 1.4rem;
}

.agenda-form {
  display: grid;
  gap: 0.85rem;
}

.agenda-slot-chosen {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 600;
}

.agenda-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 550;
}

.agenda-form input,
.agenda-form select,
.agenda-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
}

.agenda-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.agenda-modal[hidden] {
  display: none;
}

.agenda-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 28, 0.55);
  backdrop-filter: blur(2px);
}

.agenda-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: min(90vh, 40rem);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 20px 48px rgba(20, 32, 28, 0.28);
  animation: agendaModalIn 0.28s var(--ease);
}

.agenda-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

.agenda-modal-close:hover {
  color: var(--ink);
}

.agenda-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

body.agenda-modal-open {
  overflow: hidden;
}

@keyframes agendaModalIn {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .agenda-day {
    min-height: 0;
  }

  .agenda-day-slots {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 0.25rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.icon-link:hover {
  color: var(--teal);
}

.icon-link svg {
  flex-shrink: 0;
}

.icon-instagram {
  color: var(--ink);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(20, 32, 28, 0.28);
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(20, 32, 28, 0.34);
}

.wa-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Contact */
.contact {
  background: var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro a {
  color: var(--teal-dark);
}

.contact-form {
  position: relative;
  background: var(--surface);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--teal) 45%, transparent);
  border-color: var(--teal);
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-hint {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-hint.is-error {
  color: #9B1C1C;
}

.form-hint.is-ok {
  color: var(--teal-dark);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(251, 252, 251, 0.75);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-brand .brand-mark,
.footer-brand .brand-text {
  color: var(--white);
}

.footer-brand .brand-mark {
  color: #5EEAD4;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: rgba(251, 252, 251, 0.85);
  text-decoration: none;
}

.footer-links a:hover {
  color: #5EEAD4;
}

.footer-links .icon-instagram {
  color: rgba(251, 252, 251, 0.85);
}

.footer-links .icon-instagram:hover {
  color: #5EEAD4;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(251, 252, 251, 0.45);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .service-block,
  .service-block-reverse {
    grid-template-columns: 1fr;
  }

  .service-block-reverse .service-copy,
  .service-block-reverse .service-visual {
    order: initial;
  }

  .method-steps,
  .benefit-list,
  .idmatch-points,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .brand-mark-img {
    height: 2.45rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    letter-spacing: 0.12em;
    font-size: 0.55rem;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero-content {
    padding-bottom: 3.25rem;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .wa-float:hover {
    transform: none;
  }

  .agenda-modal-dialog {
    animation: none;
  }

  .hero-media img,
  .hero-brand,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .reveal,
  .service-visual img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
