/* ============================================================
   CLEAN SPACE — STYLESHEET
   Refined editorial. Warm minimalism. Sydney-pro.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* palette */
  --navy:        #0F2A44;
  --navy-deep:   #08182A;
  --navy-soft:   #1A3A5C;
  --teal:        #1FB6A8;
  --teal-deep:   #14897F;
  --warm-bg:     #F5F1EA;
  --warm-card:   #FBF8F2;
  --paper:       #FFFFFF;
  --ink:         #0E1B2C;
  --ink-soft:    #5A6573;
  --line:        #E5DFD3;
  --gold:        #E8B547;

  /* typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* spacing */
  --container-max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);

  /* transitions */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--warm-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPOGRAPHY UTILS ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 28px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.section-label.inverted { color: rgba(255, 255, 255, 0.6); }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 720px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-deep);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--warm-bg);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 8px 24px -8px rgba(15, 42, 68, .35);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 14px 30px -10px rgba(20, 137, 127, .55);
}
.btn-ghost {
  color: var(--navy);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--warm-bg);
  transform: translateY(-1px);
}
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; padding: 18px 28px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(245, 241, 234, 0.78);
  border-bottom: 1px solid rgba(229, 223, 211, 0);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 241, 234, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex-shrink: 0;
  color: var(--teal);
}
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(120px, 18vw, 200px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 42, 68, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 42, 68, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, #000 30%, transparent 80%);
}
.hero-gradient {
  position: absolute;
  top: -10%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(31, 182, 168, 0.18), transparent 60%);
  filter: blur(40px);
}

.hero-inner { position: relative; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0 0 32px;
  max-width: 18ch;
}
.hero-accent-text {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-deep);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Section intro paragraph (under titles) */
.section-intro {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 18px 0 0;
}

/* ============================================================
   CAPABILITY BAR — between hero and services (B2B credibility strip)
   ============================================================ */
.capability-bar {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 5vw, 56px) 0;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.cap-item {
  border-left: 2px solid var(--teal);
  padding: 4px 0 4px 18px;
}
.cap-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 6px;
}
.cap-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   EXPERIENCE / TRACK RECORD strip — between capabilities and process
   ============================================================ */
.experience {
  background: var(--navy);
  color: var(--warm-bg);
  padding: clamp(70px, 10vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(31, 182, 168, 0.12), transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(232, 181, 71, 0.08), transparent 50%);
  pointer-events: none;
}
.experience-inner {
  position: relative;
  max-width: 980px;
}
.experience-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--warm-bg);
  margin: 14px 0 22px;
}
.experience-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.experience-sub {
  font-size: 16px;
  color: rgba(245, 241, 234, 0.7);
  margin: 0;
  max-width: 60ch;
}

/* primary service card highlight */
.service-card.primary {
  background: var(--paper);
}
.service-card.primary:hover {
  background: var(--warm-card);
}

/* ============================================================
   SERVICES DETAIL — secondary list of cleaning capabilities
   ============================================================ */
.services-detail {
  background: var(--paper);
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding: clamp(36px, 5vw, 56px) clamp(20px, 4vw, 56px);
  text-align: center;
}
.section-label.centered {
  text-align: center;
  margin-bottom: 22px;
}
.detail-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-list li {
  font-size: 13.5px;
  color: var(--ink);
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--warm-card);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.detail-list li:hover {
  border-color: var(--teal);
  background: var(--paper);
}

/* ============================================================
   FACILITY SERVICES — Soft FM section
   ============================================================ */
.facility-services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-bg);
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.facility-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.facility-item:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 14px 40px -20px rgba(15, 42, 68, 0.2);
}
.facility-icon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 14px;
}
.facility-item h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 23px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--navy);
}
.facility-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.facility-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 60ch;
  font-style: italic;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 12px;
  opacity: 0.5;
}
.scroll-cue span {
  display: block;
  width: 2px; height: 8px;
  margin: 6px auto 0;
  background: var(--ink-soft);
  border-radius: 1px;
  animation: scroll-bounce 2.2s var(--ease) infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.4; }
}
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-in .9s var(--ease) forwards;
}
.reveal[data-delay="0"]   { animation-delay: .05s; }
.reveal[data-delay="80"]  { animation-delay: .18s; }
.reveal[data-delay="200"] { animation-delay: .34s; }
.reveal[data-delay="320"] { animation-delay: .50s; }
.reveal[data-delay="440"] { animation-delay: .66s; }

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.service-card {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background .3s var(--ease);
}
.service-card:hover { background: var(--warm-card); }
.service-card:nth-child(2n)   { border-right: 0; }
@media (min-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3),
  .service-card:nth-child(4) { border-bottom: 0; }
}
@media (max-width: 899px) {
  .service-card { border-right: 0; }
  .service-card:last-child { border-bottom: 0; }
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--navy);
}
.service-card p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-size: 16px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink);
}
.service-list li {
  position: relative;
  padding-left: 20px;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1.5px;
  background: var(--teal);
}

/* ============================================================
   WHY US
   ============================================================ */
.why {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.why-item {
  padding-top: 28px;
  border-top: 1px solid var(--navy);
}
.why-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 14px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--navy);
}
.why-item p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  counter-reset: step;
}
.process-steps li {
  position: relative;
  padding-top: 24px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.process-steps h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--navy);
}
.process-steps p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.team-card {
  background: var(--paper);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -25px rgba(15, 42, 68, 0.25);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 22px;
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--navy);
}
.team-role {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 18px;
}
.team-bio {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.team-contacts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 500;
}
.team-contacts a {
  color: var(--navy);
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 2px;
  transition: color .25s var(--ease);
}
.team-contacts a:hover { color: var(--teal-deep); }

/* ============================================================
   AREAS
   ============================================================ */
.areas {
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.areas-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 18px;
  max-width: 900px;
}
.areas-list {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 820px;
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--navy);
  color: var(--warm-bg);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(31, 182, 168, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 181, 71, 0.1), transparent 50%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
}
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 1fr 1.05fr; }
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--warm-bg);
  margin: 0 0 22px;
}
.contact-sub {
  font-size: 17px;
  color: rgba(245, 241, 234, 0.78);
  max-width: 48ch;
  margin: 0 0 36px;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
}
.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.contact-line:not(.static):hover {
  padding-left: 14px;
  color: var(--teal);
}
.contact-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  font-weight: 500;
}
.contact-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* form */
.contact-form {
  background: var(--warm-bg);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  position: relative;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--navy);
}
.field { display: block; margin-bottom: 18px; }
.field span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  font-family: var(--font-body);
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 182, 168, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 18px;
}
@media (min-width: 540px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}
.form-note a {
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal);
  font-weight: 500;
}

/* form success state */
.form-success {
  background: var(--warm-card);
  border: 1px solid var(--teal);
  color: var(--navy);
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  margin-bottom: 14px;
  display: none;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(245, 241, 234, 0.7);
  padding: clamp(60px, 8vw, 90px) 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.1fr 2fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand .brand-mark {
  width: 48px; height: 48px;
  background: transparent;
  color: var(--warm-bg);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--warm-bg);
  margin: 0;
}
.footer-tag {
  font-size: 13.5px;
  margin: 2px 0 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}
.footer-h {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-bg);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-cols a,
.footer-cols .muted {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(245, 241, 234, 0.7);
  transition: color .25s var(--ease);
}
.footer-cols a:hover { color: var(--teal); }
.footer-cols .muted { color: rgba(245, 241, 234, 0.45); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  font-size: 12.5px;
  color: rgba(245, 241, 234, 0.45);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.6),
              0 4px 12px -4px rgba(0, 0, 0, 0.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.7),
              0 6px 14px -4px rgba(0, 0, 0, 0.22);
}
.wa-float svg {
  width: 22px; height: 22px;
}
@media (max-width: 540px) {
  .wa-float span { display: none; }
  .wa-float {
    width: 56px; height: 56px;
    padding: 0;
    justify-content: center;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}
