/* ARNI Centar — redesign v3 · calm clinical editorial */
:root {
  --navy: #14233a;
  --ink: #1c2b42;
  --ink-2: #3e4d63;
  --muted: #5a6880;
  --teal: #0a84a4;
  --teal-deep: #066d88;
  --teal-soft: #e8f4f8;
  --mint: #2d8f6c;
  --paper: #f5f3ef;
  --paper-2: #ebe8e2;
  --white: #fff;
  --line: rgba(20, 35, 58, 0.12);
  --max: 1280px;
  --pad: clamp(1.5rem, 4vw, 3.5rem);
  --sec: clamp(5.5rem, 9vw, 8.5rem);
  --header: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Manrope", system-ui, sans-serif;
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-underline-offset: 3px; }
a:hover { color: var(--teal); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy); color: #fff; padding: .75rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

/* Type */
.kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 1rem;
}
.h1 {
  font-size: clamp(2.5rem, 1.8rem + 3.2vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 750;
  color: var(--navy);
  margin: 0 0 1.15rem;
  max-width: 720px;
}
.h2 {
  font-size: clamp(2.15rem, 1.5rem + 2.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 750;
  color: var(--navy);
  margin: 0 0 1rem;
  max-width: 18ch;
}
.h3 {
  font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.lead {
  margin: 0;
  font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.3125rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 38rem;
}
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }

/* Buttons — 3 types only */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  font: inherit;
  font-size: 0.975rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-fill {
  background: var(--teal);
  color: #fff;
}
.btn-fill:hover { background: var(--teal-deep); color: #fff; }
.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-line:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-fill-light { background: #fff; color: var(--navy); }
.btn-fill-light:hover { background: #eef3f7; color: var(--navy); }
.btn-line-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-line-light:hover { border-color: #fff; color: #fff; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-deep);
  text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--teal); }
.link-arrow:hover::after { transform: translateX(4px); }

/* —— Header —— */
.hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  background: rgba(245, 243, 239, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.hdr.scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(20,35,58,.05);
}
.hdr-in {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.logo img { height: 44px; width: auto; }
.nav {
  display: none;
  align-items: center;
  gap: .15rem;
}
@media (min-width: 1100px) { .nav { display: flex; } }
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: .55rem .7rem;
  border-radius: 8px;
  position: relative;
}
.nav a:hover { color: var(--navy); }
.nav a::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem; bottom: .25rem;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.hdr-act { display: flex; align-items: center; gap: .75rem; }
.hdr-tel {
  display: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.hdr-tel:hover { color: var(--teal-deep); }
.hdr-act .btn-fill { display: none; min-height: 46px; }
@media (min-width: 1100px) {
  .hdr-tel, .hdr-act .btn-fill { display: inline-flex; }
}
.icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: transparent;
  display: grid; place-items: center;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
}
.icon svg { width: 18px; height: 18px; }
@media (min-width: 1100px) {
  .icon-call, .icon-menu { display: none; }
}

/* Mobile sheet */
.sheet {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(20,35,58,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.sheet.open { opacity: 1; pointer-events: auto; }
.sheet-panel {
  position: absolute; inset: 0;
  background: var(--paper);
  padding: 1.25rem 1.5rem 2rem;
  overflow: auto;
}
.sheet-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.sheet nav { display: grid; }
.sheet nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}
.sheet-meta { margin: 1.5rem 0; color: var(--muted); display: grid; gap: .5rem; }
.sheet-meta a { color: var(--navy); font-weight: 700; text-decoration: none; }

/* —— Hero —— */
.hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: 720px;
  }
}
.hero .h1 { margin-bottom: 1.25rem; }
.hero .lead { margin-bottom: 1.75rem; }
.hero-note {
  margin: 1.15rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-note a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}
.hero-trust-inline {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-trust-inline strong {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 750;
}
.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  max-height: min(720px, 78vh);
}
@media (min-width: 980px) {
  .hero-photo { justify-self: end; width: 100%; max-width: 520px; }
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Trust bar */
.trust {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  padding: 1.5rem 0;
}
.trust-row {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .trust-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .trust-row li {
    padding: 0 1.5rem;
    border-left: 1px solid var(--line);
  }
  .trust-row li:first-child { border: 0; padding-left: 0; }
}
.trust-row strong {
  display: block;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.15;
  margin-bottom: .3rem;
}
.trust-row span {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Sections */
.sec { padding: var(--sec) 0; }
.sec-white { background: var(--white); }

/* —— Navigator —— */
.navi {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .navi {
    grid-template-columns: 38% 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}
.navi-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.navi-list button {
  width: 100%;
  text-align: left;
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 1.05rem 0 1.05rem 1rem;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--ink-2);
  cursor: pointer;
  min-height: 52px;
  position: relative;
  transition: color .2s, background .2s;
}
.navi-list button[aria-selected="true"] {
  color: var(--navy);
  background: var(--teal-soft);
  box-shadow: inset 3px 0 0 var(--teal);
}
.navi-panel {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.navi-panel[hidden] { display: none; }
.navi-visual {
  aspect-ratio: 5 / 3.2;
  background: var(--paper-2);
}
.navi-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.navi-body { padding: 1.5rem 1.6rem 1.75rem; }
.navi-body p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.navi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.tag {
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: .4rem .85rem;
  border-radius: 8px;
  text-decoration: none;
}
.tag:hover { background: #d5ebf2; color: var(--teal-deep); }
.navi-mobile { display: none; }
@media (max-width: 959px) {
  .navi-desktop { display: none; }
  .navi-mobile { display: block; }
  .navi-mobile details { border-bottom: 1px solid var(--line); }
  .navi-mobile summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 0;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
  }
  .navi-mobile summary::-webkit-details-marker { display: none; }
  .navi-mobile summary::after { content: "+"; color: var(--teal); }
  .navi-mobile details[open] summary::after { content: "–"; }
  .navi-mobile .body { padding: 0 0 1.15rem; color: var(--muted); }
}

/* —— Areas (3) —— */
.areas { display: grid; gap: clamp(3rem, 6vw, 5rem); }
.area {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .area {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
  }
  .area--flip { direction: rtl; }
  .area--flip > * { direction: ltr; }
}
.area-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
}
.area-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.area-copy p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}
.area-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.area-list li {
  padding-left: .9rem;
  border-left: 2px solid var(--mint);
  font-weight: 650;
  color: var(--ink);
  font-size: 1rem;
}

/* —— Process —— */
.process-steps {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.step-num {
  font-size: clamp(2.5rem, 2rem + 1.5vw, 3.5rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .75rem;
  opacity: .9;
}
.step h3 {
  margin: 0 0 .5rem;
  font-size: 1.25rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
}
.process-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--paper-2);
}
@media (max-width: 700px) {
  .process-photo { aspect-ratio: 16 / 10; }
}
.process-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* —— About —— */
.about {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .about {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: start;
  }
}
.about-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: .85rem;
  align-items: end;
}
@media (min-width: 960px) {
  .about-photos { position: sticky; top: calc(var(--header) + 1.5rem); }
}
.about-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
}
.about-side {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  margin-bottom: 12%;
}
.about-main img, .about-side img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}
.facts {
  list-style: none;
  margin: 1.5rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.facts li {
  padding-left: 1rem;
  border-left: 2px solid var(--mint);
}
.facts strong { display: block; color: var(--navy); margin-bottom: .15rem; }
.facts span { color: var(--muted); font-size: 0.975rem; }

/* —— Team —— */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.15rem;
}
@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.person {
  text-decoration: none;
  color: inherit;
  display: block;
}
.person-photo {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: .85rem;
}
.person-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s var(--ease);
}
.person:hover .person-photo img { transform: scale(1.02); }
.person h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--navy);
}
.person p {
  margin: .25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}
.person .role {
  display: block;
  margin-top: .35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-deep);
}
.team-foot { margin-top: 2rem; }

/* —— Reviews —— */
.reviews {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .reviews {
    grid-template-columns: 32% 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.score {
  font-size: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 750;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.stars {
  color: var(--teal);
  letter-spacing: .15em;
  font-size: 1.15rem;
  margin-bottom: .65rem;
}
.rating-meta {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}
.quote-feature {
  margin: 0;
  font-size: clamp(1.35rem, 1.15rem + 1vw, 1.85rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 28ch;
}
.quote-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.qnav { display: flex; gap: .45rem; }
.qnav button {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
}
.qnav button:hover { border-color: var(--teal); color: var(--teal-deep); }
.mini-q {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) { .mini-q { grid-template-columns: 1fr 1fr; } }
.mini-q blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-2);
}
.mini-q cite {
  display: block;
  margin-top: .5rem;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
}
.note {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}

/* —— Gallery —— */
.gal {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: .75rem;
}
.gal button:nth-child(4) {
  grid-column: 2 / span 2;
}
.gal button {
  position: relative;
  border: 0; padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-2);
}
.gal-lg {
  grid-row: 1 / span 2;
  border-radius: 16px !important;
}
.gal button img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gal button:hover img { transform: scale(1.02); }
.gal .cap {
  position: absolute;
  left: .85rem; bottom: .75rem;
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .25s;
}
.gal button:hover .cap,
.gal button:focus-visible .cap { opacity: 1; }
@media (max-width: 800px) {
  .gal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px 150px;
  }
  .gal-lg { grid-column: 1 / -1; grid-row: auto; min-height: 210px; }
}

/* —— FAQ —— */
.faq-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 600;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq .ans {
  padding: 0 0 1.2rem;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

/* —— CTA —— */
.cta {
  display: grid;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  min-height: 380px;
}
@media (min-width: 900px) {
  .cta { grid-template-columns: 1.1fr 0.9fr; }
}
.cta-copy {
  padding: clamp(2rem, 4vw, 3.25rem);
  color: #c5d0de;
}
.cta-copy .h2 { color: #fff; max-width: 14ch; }
.cta-copy p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  max-width: 34rem;
}
.cta-phone {
  display: block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.cta-phone:hover { color: #b8e0ec; }
.cta-media { min-height: 240px; }
.cta-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .9;
}

/* —— Contact —— */
.contact {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.contact-dl {
  display: grid;
  gap: 1.15rem;
  margin: 1.5rem 0;
}
.contact-dl div { display: grid; gap: .2rem; }
.contact-dl dt {
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-dl dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-dl a { color: var(--navy); text-decoration: none; }
.contact-dl a:hover { color: var(--teal-deep); }
.map {
  margin-top: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  background: var(--paper-2);
}
.map iframe { width: 100%; height: 220px; border: 0; display: block; }
.map-ph {
  min-height: 220px;
  display: grid; place-items: center;
  color: var(--muted);
  padding: 1rem;
  text-align: center;
  font-size: .95rem;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 2rem);
}
.form h3 { margin: 0 0 .35rem; }
.form > p { margin: 0 0 1.35rem; color: var(--muted); font-size: .975rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: .75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--paper);
  color: var(--navy);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,132,164,.15);
  background: #fff;
}
.check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.check input {
  width: 18px; height: 18px;
  margin-top: .2rem;
  accent-color: var(--teal);
  flex-shrink: 0;
}
.form-note { margin: .85rem 0 0; font-size: .85rem; color: var(--muted); }
.form-status {
  display: none;
  margin-top: .85rem;
  padding: .75rem .9rem;
  border-radius: 10px;
  font-size: .95rem;
}
.form-status.show { display: block; }
.form-status.ok { background: #e7f4ee; color: #145c42; }
.form-status.err { background: #fdecee; color: #8a2430; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* —— Footer —— */
.foot {
  background: var(--navy);
  color: #a8b4c4;
  padding: 3rem 0 1.75rem;
}
.foot-top {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 800px) {
  .foot-top {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: end;
  }
}
.foot .logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}
.foot-top p {
  margin: .85rem 0 0;
  max-width: 32ch;
  font-size: .975rem;
  line-height: 1.55;
}
.foot-contact { display: grid; gap: .4rem; font-size: .975rem; }
.foot-contact a { color: #fff; font-weight: 700; text-decoration: none; }
.foot-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  padding: 1.75rem 0;
}
@media (min-width: 800px) {
  .foot-mid { grid-template-columns: repeat(3, 1fr); }
}
.foot h4 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.foot a { color: #a8b4c4; text-decoration: none; font-size: .95rem; }
.foot a:hover { color: #fff; }
.foot-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
}
.socials { display: flex; gap: .5rem; margin-top: .85rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: #fff;
}
.socials svg { width: 16px; height: 16px; }

/* Dock */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.dock .btn { width: 100%; min-height: 48px; }
@media (min-width: 960px) { .dock { display: none; } }
@media (max-width: 959px) { body { padding-bottom: 76px; } }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,16,28,.9);
  display: none; place-items: center;
  padding: 1.5rem;
}
.lb.open { display: grid; }
.lb img { max-width: min(100%, 1100px); max-height: 85vh; border-radius: 12px; }
.lb-x {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border: 0; border-radius: 10px;
  background: #fff; cursor: pointer; font-size: 1.35rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
