/* ==========================================================================
   על פלגי מים - מתכות בע"מ
   Design system: industrial-minimal, RTL, Hebrew.
   ========================================================================== */

:root {
  /* Palette - raw steel / warm concrete / aged bronze */
  --ink: #15171a;
  --ink-soft: #33363b;
  --steel: #63676e;
  --steel-light: #8b8f95;
  --line: #d9d5cb;
  --line-soft: #e7e4dc;
  --bg: #f5f3ee;
  --bg-alt: #ebe8e0;
  --bg-panel: #ffffff;
  --paper: #fbfaf7;
  --bronze: #8a6a3f;
  --bronze-dark: #6b5230;
  --bronze-light: #b5946a;
  --ink-rev: #f2efe8;
  --dark-bg: #101214;
  --dark-bg-2: #191c1f;
  --success: #3f6b4a;
  --error: #9c3b2e;

  --font: "Heebo", "Arial Hebrew", "Segoe UI", Tahoma, sans-serif;

  --container: 1280px;
  --container-narrow: 860px;
  --radius: 2px;

  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.6rem;
  --space-4: 2.4rem;
  --space-5: 4rem;
  --space-6: 6.4rem;
  --space-7: 9.6rem;

  --ease: cubic-bezier(0.2, 0.65, 0.2, 1);
  --dur: 0.5s;
}

/* Motion / contrast preference hooks set by accessibility widget */
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
table { border-collapse: collapse; }

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Focus visibility (never remove) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 3px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  right: -999px;
  top: auto;
  background: var(--ink);
  color: var(--ink-rev);
  padding: 1rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--radius);
}
.skip-link:focus {
  right: 1rem;
  top: 1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 300; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bronze);
  display: inline-block;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.container--narrow { max-width: var(--container-narrow); }

section { padding-block: var(--space-6); }
.section-tight { padding-block: var(--space-5); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

hr.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--ink-rev);
}
.btn--primary:hover { background: var(--bronze-dark); border-color: var(--bronze-dark); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--ink-rev); }
.btn--on-dark {
  border-color: var(--ink-rev);
  color: var(--ink-rev);
}
.btn--on-dark:hover { background: var(--bronze); border-color: var(--bronze); color: var(--dark-bg); }
.btn--ghost {
  border-color: transparent;
  padding-inline: 0;
  color: var(--bronze-dark);
}
.btn--ghost:hover { color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-actions .btn-icon { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 1.1rem;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  line-height: 1.1;
}
.brand__logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  font-weight: 700;
  margin-top: 0.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.main-nav ul {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.3rem;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--bronze);
}

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.header-actions .btn { padding: 0.7rem 1.3rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .brand__logo { width: 32px; height: 32px; }
  .brand { gap: 0.45rem; }
  .main-nav {
    position: fixed;
    top: 73px;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 600;
    width: min(70vw, 280px);
    height: calc(100vh - 73px);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-3);
    border-inline-start: 1px solid var(--line);
    transform: translateX(101%);
    transition: transform var(--dur) var(--ease);
    overflow-y: auto;
    visibility: hidden;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 0.2rem; }
  .main-nav a {
    display: block;
    font-size: 1rem;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .main-nav a[aria-current="page"]::after { bottom: 0; }

  .header-actions .btn--primary { display: none; }
  .header-actions .btn--outline {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    flex-shrink: 0;
  }
  .header-actions .btn--outline .btn-label { display: none; }
  .header-actions .btn--outline .btn-icon { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--ink-rev);
  overflow: hidden;
  background: var(--dark-bg);
}
.hero__media {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__media::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(16,18,20,0.35) 0%, rgba(16,18,20,0.55) 55%, rgba(16,18,20,0.94) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-6) var(--space-5);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 1px 14px rgba(0,0,0,0.55);
  margin-bottom: var(--space-3);
}
.hero__eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--bronze-light); }
.hero h1 {
  color: var(--ink-rev);
  max-width: 18ch;
  font-weight: 300;
}
.hero h1 b { font-weight: 800; }
.hero p.lede { color: #d9d6cd; margin-top: var(--space-3); }
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }
.hero__meta {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(242,239,232,0.2);
  flex-wrap: wrap;
}
.hero__meta div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--ink-rev);
  font-weight: 800;
}
.hero__meta div span {
  font-size: 0.82rem;
  color: #b9b6ac;
}

@media (max-width: 640px) {
  /* A landscape photo cropped to a tall mobile viewport with cover-fit
     shows only a narrow center slice of its width. The hero's height
     is a min-height, so long text content can still stretch it taller
     than intended - decouple the image from that by capping its own
     height directly, instead of letting it fill the whole (possibly
     stretched) hero. Anything below that height falls onto the plain
     dark background, which blends into the gradient's near-black base. */
  .hero { min-height: 60vh; }
  .hero__media, .hero__media::after { bottom: auto; height: 62vh; }
  .hero__content { padding-block: var(--space-4); }
  /* Redundant with the trust strip right below on a narrow screen -
     dropping it here keeps the hero from ballooning past two screens
     of scroll before any content appears. */
  .hero__meta { display: none; }
}

/* ---------- Stats / trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--ink-rev);
  padding-block: var(--space-4);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.trust-item { display: flex; align-items: baseline; gap: 0.6rem; }
.trust-item strong { font-size: 1.9rem; font-weight: 800; color: var(--bronze-light); }
.trust-item span { font-size: 0.9rem; color: #cfccc2; }

/* ---------- Process / story timeline ---------- */
.process {
  background: var(--bg-alt);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.process-step {
  border-top: 3px solid var(--line);
  padding-top: var(--space-3);
  position: relative;
}
.process-step__num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--bronze-dark);
  letter-spacing: 0.08em;
}
.process-step h3 { margin-top: 0.6rem; font-size: 1.15rem; }
.process-step p { margin-top: 0.5rem; font-size: 0.95rem; }
.process-step figure {
  margin-top: var(--space-3);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--line-soft);
  border-radius: var(--radius);
}
.process-step img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.process-step:hover img { transform: scale(1.05); }

@media (max-width: 980px) {
  .process-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-track { grid-template-columns: 1fr; }
}

/* ---------- Services list (numbered, no cards) ---------- */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 220px;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background var(--dur) var(--ease);
}
.service-row:hover { background: rgba(138,106,63,0.06); }
.service-row__num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--steel);
}
.service-row h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.service-row p { font-size: 0.96rem; max-width: 60ch; }
.service-row__arrow {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bronze-dark);
}
.service-row:hover .service-row__arrow { color: var(--ink); }
.service-row__arrow svg { width: 20px; height: 20px; transition: transform var(--dur) var(--ease); }
html[dir="rtl"] .service-row:hover .service-row__arrow svg { transform: translateX(-4px); }

@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; gap: var(--space-2); }
  .service-row__num { order: -1; }
}

/* Detailed service block (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--line);
}
.service-detail:nth-of-type(even) .service-detail__figure { order: 2; }
.service-detail__figure {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--line-soft);
}
.service-detail__figure img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--bronze);
  letter-spacing: 0.08em;
}
.service-detail ul { margin-top: var(--space-3); display: grid; gap: 0.6rem; }
.service-detail li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.service-detail li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.6rem;
  background: var(--bronze);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-of-type(even) .service-detail__figure { order: 0; }
}

/* ---------- Gallery / portfolio ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-4);
}
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  color: var(--ink-soft);
}
.gallery-filters button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ink-rev);
}

.masonry {
  column-count: 3;
  column-gap: var(--space-3);
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
  position: relative;
  overflow: hidden;
  background: var(--line-soft);
}
.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.masonry__item button {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  position: relative;
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(0deg, rgba(16,18,20,0.85), rgba(16,18,20,0));
  color: var(--ink-rev);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.masonry__item:hover .masonry__cap,
.masonry__item:focus-within .masonry__cap { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 2000;
  background: rgba(10,11,12,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.lightbox.is-open { display: flex; }
.lightbox__inner { max-width: 1100px; width: 100%; text-align: center; }
.lightbox img { max-height: 82vh; margin-inline: auto; }
.lightbox__cap { color: #cfccc2; margin-top: var(--space-2); font-size: 0.95rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 24px; left: 24px; }
.lightbox__prev { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox__next { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 22px; height: 22px; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.why-item { border-top: 3px solid var(--bronze); padding-top: var(--space-3); }
.why-item h3 { font-size: 1.1rem; }
.why-item p { font-size: 0.93rem; margin-top: 0.5rem; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Quote / testimonial style block ---------- */
.satisfaction {
  background: var(--dark-bg);
  color: var(--ink-rev);
}
.satisfaction .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.satisfaction blockquote {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 300;
  line-height: 1.5;
}
.satisfaction figure { aspect-ratio: 474/850; overflow: hidden; background: var(--dark-bg); }
.satisfaction img { width: 100%; height: 100%; object-fit: cover; }
.satisfaction video { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 860px) { .satisfaction .container { grid-template-columns: 1fr; } }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--bronze-dark);
  color: var(--ink-rev);
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.cta-strip h2 { color: var(--ink-rev); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 20ch; }
.cta-strip__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--ink);
  color: var(--ink-rev);
  padding-block: var(--space-6) var(--space-5);
}
.page-header h1 { color: var(--ink-rev); font-weight: 300; }
.page-header .lede { color: #cfccc2; margin-top: var(--space-2); }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #b9b6ac;
  margin-bottom: var(--space-3);
}
.breadcrumb a { color: #b9b6ac; text-decoration: none; }
.breadcrumb a:hover { color: var(--ink-rev); }

/* ---------- Values / about ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.value-item { padding: var(--space-3) 0; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
.story-columns figure { aspect-ratio: 3/4; overflow: hidden; }
.story-columns img { width: 100%; height: 100%; object-fit: cover; }
.story-columns .text p + p { margin-top: var(--space-3); }
@media (max-width: 860px) { .story-columns { grid-template-columns: 1fr; } }

/* ---------- Contact info blocks ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.info-list { display: grid; gap: var(--space-4); margin-top: var(--space-4); }
.info-item { display: flex; gap: var(--space-3); align-items: flex-start; border-top: 1px solid var(--line); padding-top: var(--space-3); }
.info-item svg { width: 26px; height: 26px; color: var(--bronze); flex-shrink: 0; }
.info-item h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.info-item p, .info-item a { font-size: 0.95rem; }
.info-item a { text-decoration: none; color: var(--ink-soft); }
.info-item a:hover { color: var(--bronze-dark); }
.map-frame { border: 1px solid var(--line); width: 100%; aspect-ratio: 4/3; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-bg-2);
  color: #cfccc2;
  padding-block: var(--space-6) var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
}
.footer-grid h3 { color: var(--ink-rev); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-grid ul { display: grid; gap: 0.7rem; }
.footer-grid a { text-decoration: none; color: #b9b6ac; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--bronze-light); }
.footer-brand__name { font-size: 1.3rem; font-weight: 800; color: var(--ink-rev); }
.footer-brand p { color: #a7a49b; font-size: 0.92rem; margin-top: var(--space-2); max-width: 34ch; }
.footer-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: #8f8c84;
}
.footer-bottom a { color: #8f8c84; text-decoration: underline; }
.footer-credit { flex-basis: 100%; text-align: center; font-size: 0.78rem; }
.footer-credit a { font-weight: 700; letter-spacing: 0.06em; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating action buttons ---------- */
.float-actions {
  position: fixed;
  bottom: var(--space-3);
  inset-inline-end: var(--space-3);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  text-decoration: none;
  border: none;
}
.fab--whatsapp { background: #25D366; color: #fff; }
.fab svg { width: 28px; height: 28px; }

/* ---------- Accessibility widget ---------- */
.a11y-toggle {
  position: fixed;
  bottom: var(--space-3);
  inset-inline-start: var(--space-3);
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ink-rev);
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-toggle svg { width: 30px; height: 30px; }

.a11y-panel {
  position: fixed;
  bottom: calc(var(--space-3) + 68px);
  inset-inline-start: var(--space-3);
  z-index: 401;
  width: min(320px, 88vw);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
  border-radius: 4px;
  padding: var(--space-3);
  display: none;
  max-height: 76vh;
  overflow-y: auto;
}
.a11y-panel.is-open { display: block; }
.a11y-panel h2 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.a11y-panel__grid { display: grid; gap: 0.6rem; }
.a11y-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: right;
}
.a11y-btn[aria-pressed="true"] { border-color: var(--bronze); background: rgba(138,106,63,0.1); }
.a11y-btn .val { font-size: 0.78rem; color: var(--steel); font-weight: 400; }
.a11y-panel__reset {
  margin-top: var(--space-2);
  width: 100%;
  text-align: center;
  padding: 0.6rem;
  background: transparent;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
}

/* Applied accessibility states */
html.a11y-contrast body { background: #000; color: #fff; }
html.a11y-contrast .site-header,
html.a11y-contrast .site-footer,
html.a11y-contrast section { background: #000 !important; color: #fff !important; }
html.a11y-contrast a, html.a11y-contrast p, html.a11y-contrast span, html.a11y-contrast li { color: #f4f4f4 !important; }
html.a11y-contrast h1, html.a11y-contrast h2, html.a11y-contrast h3 { color: #ffd166 !important; }
html.a11y-contrast img { filter: grayscale(20%) contrast(1.1); }
html.a11y-contrast .btn--primary { background: #ffd166; color: #000; border-color: #ffd166; }

html.a11y-grayscale { filter: grayscale(100%); }
html.a11y-underline a { text-decoration: underline !important; }
html.a11y-readable body { font-family: Arial, "Segoe UI", sans-serif !important; letter-spacing: 0.01em; word-spacing: 0.05em; }
html.a11y-big-cursor, html.a11y-big-cursor * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><path d="M3 2l7 19 2.5-7.5L20 11z" fill="black" stroke="white" stroke-width="1"/></svg>') 4 4, auto !important; }

#a11y-reading-guide {
  position: fixed;
  left: 0; right: 0;
  height: 40px;
  background: rgba(255, 209, 102, 0.35);
  border-top: 2px solid #ffd166;
  border-bottom: 2px solid #ffd166;
  pointer-events: none;
  z-index: 399;
  display: none;
}
html.a11y-guide #a11y-reading-guide { display: block; }

.font-scale-0 { font-size: 1rem; }
.font-scale-1 html, html.font-scale-1 { font-size: 112%; }
.font-scale-2 html, html.font-scale-2 { font-size: 124%; }
.font-scale-3 html, html.font-scale-3 { font-size: 136%; }

/* ---------- Misc utility ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.max-w-prose { max-width: 68ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Accessibility statement page ---------- */
.legal h2 { margin-top: var(--space-5); }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: disc; padding-inline-start: 1.4rem; display: grid; gap: 0.5rem; margin-top: 0.6rem; }
