/* ==========================================================================
   Senior Mallorca — Premium Preview
   Website designed & developed by PixelUno · https://pixelUno.es
   ==========================================================================
   WORLD: warm consumer app surface.
   One saturated action color (amber). If it is amber, you can press it.
   Nothing decorative ever takes the accent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Ground — warm, tinted from the brand green's own hue family.
     Deliberately not paper-cream. */
  --ground: #f2f4ec;
  --ground-deep: #e8ebe0;
  --card: #ffffff;

  /* Brand — structure and text only. Never an action. */
  --green: #0f775c;
  --green-deep: #00221a;
  --green-mid: #0b5a46;
  --green-tint: #e4efe9;
  --green-wash: #f5faf7;

  /* THE action color. Reserved strictly for actionable elements. */
  --action: #eba510;
  --action-press: #d18f05;
  --action-ink: #00221a;
  --action-soft: #fdf3dc;

  /* Ink */
  --ink: #10231d;
  --ink-mid: #46564f;
  --ink-soft: #64746c; /* 4.93:1 on white — the old #6c7c75 sat at 4.40 */
  --line: #dfe4d9;
  --line-card: #eaeee4;

  /* Disabled — actions that lose the color entirely */
  --disabled-bg: #e6e9e0;
  --disabled-ink: #9aa79f;

  /* PixelUno preview */
  --pixeluno: #6d28d9;
  --pixeluno-ink: #f5f3ff;

  /* Radii — soft and large, the world's signature */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Elevation — quiet, never dramatic */
  --lift-1: 0 1px 2px rgba(16, 35, 29, .05), 0 2px 8px rgba(16, 35, 29, .04);
  --lift-2: 0 2px 4px rgba(16, 35, 29, .05), 0 10px 28px rgba(16, 35, 29, .07);
  --lift-3: 0 4px 10px rgba(16, 35, 29, .07), 0 22px 60px rgba(16, 35, 29, .10);

  /* Rhythm */
  --gutter: clamp(1rem, 4vw, 1.75rem);
  --column: 1080px;
  --card-pad: clamp(1.5rem, 4.5vw, 3.25rem);
  --stack: clamp(1rem, 2.4vw, 1.5rem);
  --band: clamp(3.5rem, 9vw, 6.5rem);

  /* Chrome heights */
  --strip-h: 36px;
  --top-h: 62px;
  --dock-h: 94px;

  /* Motion — soft spring on press, no bounce on entry.
     The overshoot is deliberate and lives only on press feedback; entry
     transitions below use a plain decelerating curve. */
  --press: 200ms cubic-bezier(.34, 1.12, .64, 1);
  --ease: 460ms cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--strip-h) + var(--top-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.0625rem, .35vw + 1rem, 1.1875rem);
  line-height: 1.62;
  font-weight: 420;
  letter-spacing: -.003em;
  padding-top: calc(var(--strip-h) + var(--top-h));
  padding-bottom: calc(var(--dock-h) + 1.25rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.028em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4.1vw, 2.75rem); }
h3 { font-size: clamp(1.1875rem, 1.7vw, 1.5rem); letter-spacing: -.02em; }
h4 { font-size: 1.0625rem; letter-spacing: -.012em; font-weight: 700; }

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; color: var(--green-deep); }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--action-soft); color: var(--green-deep); }

.skip {
  position: fixed;
  top: calc(var(--strip-h) + 8px);
  left: 50%;
  translate: -50% -220%;
  z-index: 200;
  background: var(--green-deep);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  text-decoration: none;
  transition: translate var(--press);
}
.skip:focus-visible { translate: -50% 0; }

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. PixelUno preview strip — always visible, above everything
   -------------------------------------------------------------------------- */

.pu-strip {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--strip-h);
  display: grid;
  place-items: center;
  padding: 0 1rem;
  background: linear-gradient(90deg, #5b21b6, var(--pixeluno) 45%, #7c3aed);
  color: var(--pixeluno-ink);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .012em;
  text-align: center;
}
.pu-strip p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   4. Top bar — deliberately minimal. The dock is the navigation.
   -------------------------------------------------------------------------- */

.topbar {
  position: fixed;
  inset: var(--strip-h) 0 auto 0;
  z-index: 50;
  height: var(--top-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--gutter);
  background: rgba(242, 244, 236, .82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}
.topbar.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(242, 244, 236, .94);
}

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 186px; height: auto; }

.langs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--ground-deep);
  border-radius: var(--r-pill);
}
.langs a {
  min-width: 42px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 .5rem;
  border-radius: var(--r-pill);
  color: var(--ink-mid);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background var(--press), color var(--press);
}
.langs a:hover { color: var(--green-deep); }
.langs a[aria-current="true"] {
  background: var(--card);
  color: var(--green-deep);
  box-shadow: var(--lift-1);
}

/* --------------------------------------------------------------------------
   5. Buttons — the only things allowed to carry the action color
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--action);
  --btn-ink: var(--action-ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  min-height: 56px;
  padding: 0 1.75rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-ink);
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--lift-1);
  transition: background var(--press), scale var(--press), box-shadow var(--press);
  touch-action: manipulation;
}
.btn:hover { background: var(--action-press); box-shadow: var(--lift-2); }
.btn:active { scale: .965; box-shadow: var(--lift-1); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--green-deep);
  box-shadow: inset 0 0 0 2px var(--action);
}
.btn--ghost:hover { background: var(--action-soft); box-shadow: inset 0 0 0 2px var(--action-press); }

.btn--wide { width: 100%; }
.btn--sm { min-height: 46px; padding: 0 1.25rem; font-size: .9375rem; }

/* Disabled actions lose the color entirely */
.btn:disabled, .btn[aria-disabled="true"] {
  background: var(--disabled-bg);
  color: var(--disabled-ink);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.btn .ico { width: 20px; height: 20px; flex: none; }

/* Inline text action */
.act {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 0 var(--action);
  transition: box-shadow var(--press), background var(--press);
}
.act:hover { box-shadow: inset 0 -22px 0 0 var(--action-soft); }

/* --------------------------------------------------------------------------
   6. Layout — one scrolling column of cards
   -------------------------------------------------------------------------- */

.column {
  width: min(100% - (var(--gutter) * 2), var(--column));
  margin-inline: auto;
}

/* Grid and flex children default to min-width:auto, which lets one long
   unbreakable child widen its whole track. Every layout here opts out. */
.hero__card > *, .contact > *, .jobs > *, .svc > *, .tasks > *,
.vs > *, .guar > *, .steps > *, .quotes > *, .rent > *,
.trust > *, .foot__grid > *, .grid2 > * { min-width: 0; }

.stack > * + * { margin-top: var(--stack); }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--r-xl);
  padding: var(--card-pad);
  box-shadow: var(--lift-1);
}

.card--flush { padding: 0; overflow: hidden; }
.card--green {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #d6e5df;
}
.card--green h2, .card--green h3, .card--green h4, .card--green strong { color: #fff; }
.card--tint { background: var(--green-wash); border-color: var(--green-tint); }

.card__head { max-width: 42ch; }
.card__head > * + * { margin-top: .875rem; }

.eyebrow {
  display: block;
  font-size: .8125rem;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: .625rem;
  vertical-align: .3em;
  background: var(--green);
  border-radius: 2px;
}
.card--green .eyebrow { color: #7fc9b0; }
.card--green .eyebrow::before { background: #7fc9b0; }

.lede { font-size: clamp(1.125rem, 1.1vw + .9rem, 1.375rem); color: var(--ink-mid); line-height: 1.5; }
.card--green .lede { color: #b6cdc5; }

.note { font-size: .9375rem; color: var(--ink-soft); line-height: 1.5; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero { padding-top: clamp(1.25rem, 3vw, 2.25rem); }

.hero__card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--lift-3);
}

.hero__body {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.hero h1 { max-width: 15ch; }
.hero .lede { max-width: 44ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.25rem;
  margin-top: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-card);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero__proof span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__proof span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.hero__media { position: relative; min-height: 340px; background: var(--green-tint); }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.25) 26%, transparent 52%);
}

/* --------------------------------------------------------------------------
   8. Trust row
   -------------------------------------------------------------------------- */

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-card);
}
.trust li {
  background: var(--card);
  padding: clamp(1.125rem, 2.4vw, 1.75rem);
}
.trust b {
  display: block;
  font-size: clamp(1.0625rem, 1.1vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--green-deep);
  margin-bottom: .3rem;
}
.trust span { font-size: .9375rem; color: var(--ink-soft); line-height: 1.45; display: block; }

.seal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.seal img { width: 168px; height: auto; }
.seal p { font-size: .9375rem; color: var(--ink-soft); max-width: 46ch; }

/* --------------------------------------------------------------------------
   9. Service cards
   -------------------------------------------------------------------------- */

.svc { display: grid; gap: var(--stack); grid-template-columns: repeat(3, 1fr); }

.svc__item {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-1);
}
.svc__item .mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--green-tint);
  color: var(--green);
  margin-bottom: .35rem;
}
.svc__item .mark svg { width: 26px; height: 26px; }
.svc__item p { font-size: 1rem; color: var(--ink-mid); line-height: 1.55; }
.svc__item .act { margin-top: auto; padding-top: .75rem; align-self: flex-start; }

/* Task groups */
.tasks { display: grid; gap: var(--stack); grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.tasks section {
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
  background: var(--green-wash);
  border: 1px solid var(--green-tint);
  border-radius: var(--r-lg);
}
.tasks h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.012em;
  margin-bottom: .875rem; color: var(--green); }
.tasks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .9688rem;
  line-height: 1.5;
  color: var(--ink-mid);
}
.tasks li + li { margin-top: .5rem; }
.tasks li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: .45;
}

/* --------------------------------------------------------------------------
   10. Comparison — the page's argument
   -------------------------------------------------------------------------- */

.vs { margin-top: 2rem; display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }

.vs__col { border-radius: var(--r-lg); overflow: hidden; }
.vs__col h3 {
  font-size: .8125rem;
  padding: 1rem 1.375rem;
  font-size: .8125rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.vs__us h4 { background: var(--green); color: #fff; }
.vs__them h4 { background: var(--ground-deep); color: var(--ink-soft); }

.vs__col li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.375rem;
  font-size: 1rem;
  line-height: 1.45;
}
.vs__us li { background: var(--green-wash); color: var(--green-deep); font-weight: 600; }
.vs__them li { background: var(--card); color: var(--ink-soft); }
.vs__col li + li { border-top: 1px solid rgba(16, 35, 29, .07); }
.vs__col li svg { width: 20px; height: 20px; flex: none; margin-top: .18em; }
.vs__us li svg { color: var(--green); }
.vs__them li svg { color: #b9a4a4; }

/* Guarantees */
.guar { display: grid; gap: var(--stack); grid-template-columns: repeat(3, 1fr); margin-top: var(--stack); }
.guar article {
  padding: clamp(1.375rem, 2.8vw, 1.875rem);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--r-lg);
}
.guar h3 {
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7fc9b0 !important;
  margin-bottom: .625rem;
}
.guar p { font-size: 1rem; line-height: 1.55; }

/* --------------------------------------------------------------------------
   11. Steps
   -------------------------------------------------------------------------- */

.steps { counter-reset: s; display: grid; gap: var(--stack); grid-template-columns: repeat(4, 1fr); margin-top: 2rem; }
.steps li {
  counter-increment: s;
  position: relative;
  padding: clamp(1.375rem, 2.8vw, 1.875rem);
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-1);
}
.steps li::before {
  content: counter(s);
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 1rem;
  border-radius: var(--r-pill);
  background: var(--green-deep);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.012em; margin-bottom: .4rem; }
.steps p { font-size: .9688rem; color: var(--ink-mid); line-height: 1.5; }

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */

.quotes { display: grid; gap: var(--stack); grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
.quotes figure {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quotes h3 { color: var(--green); font-size: 1rem; font-weight: 700; letter-spacing: -.012em; }
.quotes blockquote { margin: 0; font-size: 1.125rem; line-height: 1.5; color: var(--green-deep); font-weight: 500; }
.quotes figcaption {
  margin-top: auto;
  padding-top: .875rem;
  border-top: 1px solid var(--line-card);
  font-size: .9375rem;
  color: var(--ink-soft);
}
.quotes figcaption b { display: block; color: var(--green-deep); font-weight: 700; }

/* --------------------------------------------------------------------------
   13. Rental
   -------------------------------------------------------------------------- */

.rent { display: grid; gap: var(--stack); grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.rent article {
  background: var(--card);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--lift-1);
  display: flex;
  flex-direction: column;
}
.rent .shot {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: radial-gradient(circle at 50% 42%, #fff 0%, var(--green-wash) 62%, var(--green-tint) 100%);
  border-bottom: 1px solid var(--line-card);
}
.rent .shot img { max-height: 100%; width: auto; mix-blend-mode: multiply; }
.rent h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.012em; padding: 1.125rem 1.375rem .35rem; }
.rent p { padding: 0 1.375rem 1.375rem; font-size: .9375rem; color: var(--ink-soft); line-height: 1.5; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */

.faq { margin-top: 2rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-card); }
.faq details { background: var(--card); }
.faq details + details { border-top: 1px solid var(--line-card); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -.015em;
  transition: background var(--press);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--green-wash); }
.faq summary .chev {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ground-deep);
  color: var(--green-deep);
  transition: rotate var(--press), background var(--press);
}
.faq summary .chev svg { width: 16px; height: 16px; }
.faq details[open] summary .chev { rotate: 180deg; background: var(--green-tint); }
.faq .answer { padding: 0 1.5rem 1.5rem; max-width: 72ch; color: var(--ink-mid); font-size: 1rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.75rem, 4vw, 3.25rem); }

.lines { display: grid; gap: .75rem; margin-top: 1.75rem; }
.lines a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  color: #fff;
  text-decoration: none;
  transition: background var(--press), scale var(--press);
}
.lines a:hover { background: rgba(255, 255, 255, .12); }
.lines a:active { scale: .985; }
.lines .mark {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--action);
  color: var(--action-ink);
}
.lines .mark svg { width: 21px; height: 21px; }
.lines b { display: block; font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }
.lines span { display: block; font-size: .8438rem; color: #a8c3ba; letter-spacing: .01em; }

.where {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .9688rem;
  line-height: 1.6;
  color: #b6cdc5;
}
.where b { display: block; margin-bottom: .25rem; }

/* Form */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4375rem; }
.field label { font-size: .9375rem; font-weight: 700; color: var(--green-deep); }
.field .req { color: var(--green); }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 56px;
  padding: .875rem 1.125rem;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  color: var(--ink);
  font: inherit;
  font-size: 1.0625rem;
  transition: border-color var(--press), box-shadow var(--press);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346564f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 20px;
  padding-right: 3rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: .8; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #c6cfc0; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-tint);
}
.field[data-invalid] input, .field[data-invalid] select, .field[data-invalid] textarea { border-color: #b4402f; }
.field[data-invalid] input:focus, .field[data-invalid] select:focus, .field[data-invalid] textarea:focus { box-shadow: 0 0 0 4px #f7e2de; }

.err { font-size: .875rem; font-weight: 600; color: #a5382a; min-height: 0; }
.err:empty { display: none; }

/* The contact form lives inside the dark green card. Everything that sits on
   the card rather than inside a white input has to be re-inked for it. */
.card--green .field label { color: #fff; }
.card--green .field .req { color: #7fc9b0; }
.card--green .check { color: #c4d8d1; }
.card--green .check span a { color: #fff; text-decoration-color: rgba(255, 255, 255, .55); }
.card--green .check span a:hover { text-decoration-color: #fff; }
.card--green .check input { border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .1); }
.card--green .check input:checked { background-color: var(--green); border-color: var(--green); }
.card--green .check[data-invalid] input { border-color: #ff9d8f; }
.card--green .err { color: #ffb3a7; }
.card--green :focus-visible { outline-color: #7fc9b0; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.check {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .25rem 0;
  cursor: pointer;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--ink-mid);
}
.check input {
  flex: none;
  appearance: none;
  width: 26px; height: 26px;
  margin: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  cursor: pointer;
  transition: background var(--press), border-color var(--press), scale var(--press);
}
.check input:checked {
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 16px no-repeat;
  border-color: var(--green);
}
.check input:active { scale: .9; }
.check[data-invalid] input { border-color: #b4402f; }

.filedrop {
  display: flex;
  align-items: center;
  gap: .875rem;
  min-height: 56px;
  padding: .75rem 1.125rem;
  border: 2px dashed var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  cursor: pointer;
  font-size: .9688rem;
  color: var(--ink-mid);
  transition: border-color var(--press), background var(--press);
}
.filedrop:hover { border-color: var(--green); background: var(--green-wash); }
.filedrop input { position: absolute; opacity: 0; width: 0; height: 0; }
.filedrop svg { width: 22px; height: 22px; color: var(--green); flex: none; }

.sent {
  display: none;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--green-wash);
  border: 2px solid var(--green-tint);
  border-radius: var(--r-lg);
}
.sent[data-on] { display: flex; }
.sent .mark {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
}
.sent .mark svg { width: 24px; height: 24px; }
.sent b { display: block; color: var(--green-deep); margin-bottom: .2rem; }
.sent p { font-size: .9688rem; color: var(--ink-mid); line-height: 1.5; }

/* --------------------------------------------------------------------------
   16. Careers band
   -------------------------------------------------------------------------- */

.jobs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */

.foot {
  margin-top: var(--band);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  background: var(--green-deep);
  color: #9fbbb1;
  font-size: .9375rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.foot img.logo { width: 200px; margin-bottom: 1.25rem; }
.foot p { line-height: 1.6; max-width: 44ch; }
.foot h2 {
  color: #fff !important;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.foot li + li { margin-top: .625rem; }
.foot a { color: #cfe1da; text-decoration: none; transition: color var(--press); }
.foot a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.regs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.regs span {
  padding: .375rem .75rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 600;
  color: #cfe1da;
}

.foot__seal {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
  background: #fff;
  border-radius: var(--r-md);
  display: inline-block;
}
.foot__seal img { width: 172px; }

.foot__base {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .875rem;
  font-size: .875rem;
}
.pu-sig { display: inline-flex; align-items: center; gap: .35rem; }
.pu-sig .heart { color: #f0a5c0; }
.pu-sig a { display: inline-block; padding: .25rem 0; color: #fff; font-weight: 700; text-decoration: none; box-shadow: inset 0 -1px 0 0 rgba(255,255,255,.5); }
.pu-sig a:hover { box-shadow: inset 0 -2px 0 0 #fff; text-decoration: none; }

/* --------------------------------------------------------------------------
   18. The dock — persistent, thumb-reachable navigation
   -------------------------------------------------------------------------- */

.dock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 55;
  padding: 0 var(--gutter) max(.75rem, env(safe-area-inset-bottom));
  padding-top: .75rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(to top, var(--ground) 55%, transparent);
}

.dock__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: 8px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.7) blur(18px);
  -webkit-backdrop-filter: saturate(1.7) blur(18px);
  border: 1px solid var(--line-card);
  border-radius: var(--r-pill);
  box-shadow: var(--lift-3);
  max-width: 100%;
}

.dock a, .dock button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 66px;
  min-height: 52px;
  padding: 0 .875rem;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--ink-mid);
  font: inherit;
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--press), background var(--press), scale var(--press);
}
.dock a svg, .dock button svg { width: 21px; height: 21px; }
.dock a:hover, .dock button:hover { color: var(--green-deep); background: var(--ground-deep); }
.dock a:active, .dock button:active { scale: .93; }

/* Active tab takes the action color */
.dock a[aria-current="true"] { color: var(--action-ink); background: var(--action); }
.dock a[aria-current="true"]:hover { background: var(--action-press); }

.dock__call {
  min-width: auto !important;
  flex-direction: row !important;
  gap: .5rem !important;
  padding: 0 1.375rem !important;
  margin-left: .25rem;
  background: var(--green-deep) !important;
  color: #fff !important;
  font-size: .9375rem !important;
  font-weight: 700 !important;
}
.dock__call:hover { background: var(--green-mid) !important; color: #fff !important; }
.dock__call svg { width: 19px; height: 19px; }

.dock__label { display: inline; }

/* --------------------------------------------------------------------------
   19. Motion — soft spring on press, plain fade on entry
   -------------------------------------------------------------------------- */

/* .reveal is set by an inline head script only when the reveal can be undone */
.reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--ease), transform var(--ease);
}
.reveal [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1040px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__card { grid-template-columns: 1fr; }
  /* aspect-ratio governs here; a min-height would fight it and widen the track.
     A shallower crop keeps the primary action nearer the fold on phones. */
  .hero__media { order: -1; width: 100%; min-height: 0; aspect-ratio: 16 / 9; }
  .hero__body { gap: 1rem; }
  .hero .lede { font-size: 1.0625rem; line-height: 1.5; }
  .hero__media::after {
    background: linear-gradient(to bottom, rgba(255,255,255,.35) 0%, transparent 45%, rgba(255,255,255,.15) 100%);
  }
  .svc, .tasks, .rent, .guar { grid-template-columns: 1fr; }
  .vs { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .contact, .jobs { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --card-pad: 1.375rem; --r-xl: 24px; --r-lg: 20px; }
  body { padding-bottom: calc(var(--dock-h) + .5rem); }
  .brand img { width: 152px; }

  /* Touch targets: this audience is 40–75 and often reading one-handed */
  .langs a { min-height: 44px; min-width: 46px; }
  .foot li a, .check span a { display: inline-block; padding: .3125rem 0; }
  .foot li + li { margin-top: .375rem; }
  .act { padding: .375rem 0; }

  .trust { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .foot__grid { grid-template-columns: 1fr; }
  .foot__base { flex-direction: column; align-items: flex-start; }

  .dock { padding-left: .625rem; padding-right: .625rem; }
  .dock__inner { width: 100%; justify-content: space-between; gap: 0; padding: 6px; }
  .dock a, .dock button { min-width: 0; flex: 1; padding: 0 .25rem; font-size: .6875rem; }
  .dock__call { flex: none; padding: 0 1rem !important; }
  .dock__call .dock__label { display: none; }
}

@media (max-width: 400px) {
  .dock a .dock__label { font-size: .625rem; }
}

/* Wide screens — the column holds; the world is an app surface, not a poster */
@media (min-width: 1440px) {
  :root { --column: 1140px; }
}

@media print {
  .pu-strip, .dock, .topbar { display: none !important; }
  body { padding: 0; background: #fff; }
}
