/* =========================================================
   Tirana Panel Clinic
   Modern healthcare design — brand: #195C2E
   ========================================================= */

:root {
  --brand:        #195C2E;
  --brand-deep:   #0F3E1D;
  --brand-soft:   #E8F0E8;
  --brand-tint:   #F1F6F1;
  --brand-mute:   #4A7758;

  --ink:          #0E1A12;
  --ink-soft:     #3D4942;
  --ink-mute:     #6E776F;
  --paper:        #FFFFFF;
  --bg:           #F7F7F4;
  --rule:         #E6E8E2;

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max:  1200px;
  --gut:  clamp(1.1rem, 4vw, 2rem);
  --rad:  16px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: var(--paper); }
h1, h2, h3, p, ul, ol, dl, blockquote, figure { margin: 0; }
ul, ol { padding-left: 0; list-style: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Keyboard focus */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 220ms var(--ease),
              color 220ms var(--ease),
              border-color 220ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform 240ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--brand     { background: var(--brand); color: var(--paper); }
.btn--brand:hover { background: var(--brand-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in oklab, var(--ink) 16%, transparent);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: color-mix(in oklab, var(--ink) 4%, transparent);
}

.btn--paper { background: var(--paper); color: var(--brand); }
.btn--paper:hover { background: color-mix(in oklab, var(--paper) 92%, var(--brand)); }

.btn--paper-ghost {
  background: transparent;
  color: var(--paper);
  border-color: color-mix(in oklab, var(--paper) 32%, transparent);
}
.btn--paper-ghost:hover {
  border-color: var(--paper);
  background: color-mix(in oklab, var(--paper) 10%, transparent);
}

/* =========================================================
   Topbar
   ========================================================= */
.topbar {
  background: var(--brand);
  color: color-mix(in oklab, var(--paper) 90%, var(--brand));
  font-size: 0.82rem;
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem var(--gut);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.topbar a { color: var(--paper); font-weight: 600; }
.topbar a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .topbar__inner > :first-child { display: none; }
  .topbar__inner { justify-content: center; }
}

/* =========================================================
   Navigation
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--gut);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.brand-mark img {
  height: 100%;
  width: auto;
  border-radius: 5px;
}
.site-nav__links {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
.site-nav__links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.3rem 0;
}
.site-nav__links a:hover { color: var(--brand); }
.site-nav__cta { display: flex; align-items: center; gap: 0.85rem; }
.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.tel-link svg { width: 16px; height: 16px; color: var(--brand); }
.tel-link:hover { color: var(--brand); }

/* hamburger */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.menu-toggle:hover { border-color: var(--ink); }
.menu-toggle__bar {
  width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease);
}
.is-menu-open .menu-toggle__bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.is-menu-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.is-menu-open .menu-toggle__bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 1.5rem var(--gut) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 49;
  animation: menu-slide 220ms var(--ease);
}
@keyframes menu-slide {
  from { transform: translateY(-8px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.mobile-menu nav a:hover { color: var(--brand); }
.mobile-menu__cta {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (max-width: 920px) {
  .site-nav__links { display: none; }
  .tel-link.tel-link { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .book-cta { display: none; }
}
.is-menu-open { overflow: hidden; }

/* =========================================================
   Type primitives & shared bits
   ========================================================= */
section { scroll-margin-top: 90px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--brand);
}
.kicker--paper { color: color-mix(in oklab, var(--paper) 78%, transparent); }
.kicker--paper::before { background: color-mix(in oklab, var(--paper) 78%, transparent); }

.h-display {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  color: var(--brand);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) var(--gut) clamp(2rem, 4vw, 3rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0.25rem 0 1.25rem;
  max-width: 14ch;
}
.hero__copy h1 em {
  display: inline;
  margin-left: 0.18em;
}
.hero__lede {
  font-size: clamp(1.02rem, 1.1vw, 1.12rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2rem; }

/* hero chips: a quiet horizontal list, hairline separated */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero__chips li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  position: relative;
}
.hero__chips li + li::before {
  content: "";
  position: absolute;
  left: -0.85rem; top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink-mute);
  transform: translateY(-50%);
}
.chip__hi {
  font-style: normal;
  font-weight: 600;
  color: var(--brand);
}

/* visual side: clean clinic info card on the brand surface */
.hero__visual {
  position: relative;
  border-radius: var(--rad);
  background: var(--brand);
  color: var(--paper);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__visual::after {
  /* subtle hairline grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg,  color-mix(in oklab, var(--paper) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--paper) 5%, transparent) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 100%);
  pointer-events: none;
  z-index: -1;
}
.hero__visual-mark {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 96px; height: 96px;
  color: color-mix(in oklab, var(--paper) 24%, transparent);
}
.hero__visual-mark svg { width: 100%; height: 100%; }

.hero__visual-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: clamp(3rem, 6vw, 5rem);
}
.hero__visual-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 18%, transparent);
}
.hero__visual-row:last-of-type { border-bottom: none; padding-bottom: 0.4rem; }
.hero__visual-row .k {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 65%, transparent);
  font-weight: 600;
}
.hero__visual-row .v {
  font-size: 0.96rem;
  color: var(--paper);
  line-height: 1.5;
  word-break: break-word;
}
.hero__visual-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-top: 1px solid color-mix(in oklab, var(--paper) 22%, transparent);
  font-size: 0.95rem;
  color: var(--paper);
  font-weight: 600;
}
.hero__visual-link .arrow { transition: transform 240ms var(--ease); }
.hero__visual-link:hover .arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { padding: 1.5rem; }
  .hero__visual-mark { width: 76px; height: 76px; opacity: 0.6; }
  .hero__visual-card { padding-top: 2.5rem; }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem var(--gut);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.trust__label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
  max-width: 12ch;
  line-height: 1.4;
}
.trust__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.25rem;
}
.trust__item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust__item .k {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust__item .v {
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 820px) {
  .trust__inner { grid-template-columns: 1fr; gap: 1rem; padding: 1.4rem var(--gut); }
  .trust__items { grid-template-columns: 1fr 1fr; row-gap: 0.85rem; }
}
@media (max-width: 480px) {
  .trust__items { grid-template-columns: 1fr; row-gap: 0.6rem; }
  .trust__item { flex-direction: row; align-items: baseline; gap: 0.7rem; }
  .trust__item .v { line-height: 1.3; }
}

/* =========================================================
   Services — editorial list
   ========================================================= */
.services {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gut) clamp(2rem, 4vw, 3rem);
}
.services__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.services__title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  max-width: 16ch;
}
.services__intro {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42ch;
}
.svc-list {
  border-top: 1px solid var(--rule);
}
.svc-row {
  display: grid;
  grid-template-columns: auto 1.2fr 1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: background 280ms var(--ease);
}
.svc-row:hover { background: var(--brand-tint); }
.svc-row__num {
  font-family: var(--serif);
  font-weight: 380;
  font-style: italic;
  font-size: 1rem;
  color: var(--brand);
  letter-spacing: 0.04em;
  min-width: 2ch;
  padding-top: 0.45rem;
}
.svc-row__head h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.svc-row__head p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 42ch;
}
.svc-row__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.4rem;
  font-size: 0.92rem;
  color: var(--ink);
  align-self: start;
  padding-top: 0.5rem;
}
.svc-row__items span {
  position: relative;
  padding-left: 0.95rem;
}
.svc-row__items span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 5px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .services__head { grid-template-columns: 1fr; }
  .svc-row {
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
  }
  .svc-row__items {
    grid-column: 1 / -1;
    padding-left: 2.5rem;
    padding-top: 0.25rem;
  }
}
@media (max-width: 520px) {
  .svc-row__items { padding-left: 0; gap: 0.4rem 1rem; }
}

/* =========================================================
   About
   ========================================================= */
.about {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(4rem, 8vw, 7rem) var(--gut);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.about__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 1.5rem;
  max-width: 13ch;
}
.about__caption {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42ch;
}
.about__col-r p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.65;
  font-size: 1rem;
}
.about__quote {
  margin: 1.5rem 0 1.75rem;
  padding: 1.25rem 1.4rem;
  background: var(--paper);
  border-left: 2px solid var(--brand);
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.55;
}
.about__facts {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
  border-top: 1px solid var(--rule);
}
.about__facts > div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.about__facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.about__facts dd {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .about__facts > div { grid-template-columns: 7rem 1fr; }
}
@media (max-width: 480px) {
  .about__facts > div { grid-template-columns: 1fr; gap: 0.2rem; padding: 0.85rem 0; }
}

/* =========================================================
   Immigration
   ========================================================= */
.imm {
  max-width: var(--max);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 var(--gut);
}
.imm__inner {
  background: var(--brand);
  color: var(--paper);
  border-radius: calc(var(--rad) + 4px);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.imm__inner::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60%; height: 130%;
  background: radial-gradient(closest-side,
    color-mix(in oklab, var(--paper) 12%, transparent),
    transparent 70%);
  pointer-events: none;
}
.imm__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 1.25rem;
  color: var(--paper);
  max-width: 14ch;
  position: relative;
}
.imm__lede {
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  max-width: 48ch;
  margin-bottom: 1.5rem;
  position: relative;
}
.imm__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; position: relative; }

.imm__countries {
  display: grid;
  gap: 0.55rem;
  position: relative;
}
.imm__countries li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: color-mix(in oklab, var(--paper) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--paper) 16%, transparent);
  border-radius: 12px;
}
.flag {
  width: 44px; height: 30px;
  border-radius: 3px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--paper) 25%, transparent);
}
.flag svg { width: 100%; height: 100%; }
.flag-meta { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.country { font-size: 0.98rem; font-weight: 600; color: var(--paper); }
.detail-text {
  font-size: 0.8rem;
  color: color-mix(in oklab, var(--paper) 68%, transparent);
}

@media (max-width: 900px) { .imm__inner { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gut);
}
.contact__head {
  margin-bottom: 2.5rem;
  max-width: 60ch;
}
.contact__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 1rem;
  max-width: 18ch;
}
.contact__head p {
  color: var(--ink-soft);
  line-height: 1.6;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--rad);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--paper);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 14%, transparent);
}
.field textarea { resize: vertical; min-height: 96px; }
.field--actions {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__fineprint { font-size: 0.84rem; color: var(--ink-mute); }
.contact__sent {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--brand-tint);
  border: 1px solid color-mix(in oklab, var(--brand) 30%, transparent);
  color: var(--brand-deep);
  font-size: 0.92rem;
}

.contact__details {
  background: var(--brand-tint);
  border: 1px solid color-mix(in oklab, var(--brand) 14%, transparent);
  border-radius: var(--rad);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.detail { display: flex; flex-direction: column; gap: 0.25rem; }
.detail__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.detail__value {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.45;
  word-break: break-word;
}
.detail__value.muted { color: var(--ink-soft); font-size: 0.92rem; }
a.detail__value:hover { color: var(--brand-deep); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1000px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-foot {
  background: var(--ink);
  color: color-mix(in oklab, var(--paper) 78%, transparent);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.site-foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--gut) clamp(2rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.site-foot .brand-mark img { background: var(--paper); padding: 4px; height: 40px; }
.site-foot__tag {
  margin: 1.25rem 0 0;
  max-width: 32ch;
  line-height: 1.6;
  font-size: 0.94rem;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
}
.site-foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.col { display: flex; flex-direction: column; gap: 0.55rem; }
.col__h {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: color-mix(in oklab, var(--paper) 50%, transparent);
  margin-bottom: 0.35rem;
}
.col a, .col span {
  font-size: 0.94rem;
  color: color-mix(in oklab, var(--paper) 76%, transparent);
}
.col a:hover { color: var(--paper); }

.site-foot__base {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--gut);
  border-top: 1px solid color-mix(in oklab, var(--paper) 12%, transparent);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: color-mix(in oklab, var(--paper) 50%, transparent);
}
.site-foot__lang { display: inline-flex; gap: 0.55rem; }
.site-foot__lang a:hover { color: var(--paper); }

@media (max-width: 820px) {
  .site-foot__inner { grid-template-columns: 1fr; }
  .site-foot__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-foot__cols { grid-template-columns: 1fr; gap: 1.25rem; }
  .site-foot__base { flex-direction: column; gap: 0.5rem; }
}
