
:root {
    --paper:  #F4EEE4;
    --ink:    #241F1A;
    --navy:   #2D1411;   /* brand espresso */
    --black:  #000000;   /* pure black — loader curtain + footer, per client */
    --gold:   #B08D4C;
    --gold-lt:#D6B266;
    --spec-bg:#EDE8E2;   /* secondary-page canvas */
    --rule:   rgba(150,120,72,.34);
    --hdr-h:  58px;
    --ease-reveal: cubic-bezier(.22, 1, .36, 1);
    --serif: 'Google Sans', 'Figtree', 'Noto Sans Georgian', 'Inter', Helvetica, Arial, sans-serif;
    --sans:  'Google Sans', 'Figtree', 'Noto Sans Georgian', 'Inter', Helvetica, Arial, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { overflow-x: hidden; scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--spec-bg); color: var(--navy); -webkit-font-smoothing: antialiased; }

  /* ---------------- Header (centred logo, light — same as about-project/blog) ---------------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    display: flex; align-items: center;
    padding: clamp(16px, 2.6vh, 26px) clamp(20px, 4vw, 56px);
    color: var(--navy); --hline: rgba(45,20,17,.28);
    transition: padding .5s var(--ease-reveal), background-color .5s ease,
      -webkit-backdrop-filter .5s ease, backdrop-filter .5s ease, box-shadow .5s ease;
  }
  .hdr-left  { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); }
  .logo      { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; text-decoration: none; }
  .hdr-right { display: flex; align-items: center; gap: clamp(12px, 1.3vw, 20px); margin-left: auto; }
  .logo-img { height: 52px; width: auto; display: block; transition: height .5s var(--ease-reveal); }
  .hdr-left a { position: relative; color: currentColor; text-decoration: none; font-size: 16px; font-weight: 400; opacity: .9; transition: opacity .3s ease; }
  .hdr-left a.is-current { opacity: 1; }
  .hdr-left a::after { content: ''; display: block; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-reveal); margin-top: 2px; }
  .hdr-left a:hover::after, .hdr-left a:focus-visible::after, .hdr-left a.is-current::after { transform: scaleX(1); }
  .hdr-left a:hover, .hdr-left a:focus-visible { opacity: 1; }
  .lang { font-size: 13.5px; white-space: nowrap; color: currentColor; }
  .lang a { color: currentColor; text-decoration: none; opacity: .5; }
  .lang a.on { opacity: 1; }
  .lang i { opacity: .4; margin: 0 5px; font-style: normal; }
  .btn-find, .request { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 400;
    border-radius: 999px; padding: 8px 20px; cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: background .35s var(--ease-reveal), color .35s var(--ease-reveal), border-color .35s ease; }
  .btn-find svg, .request svg { width: 13px; height: 13px; transition: transform .35s var(--ease-reveal); }
  .btn-find { color: var(--paper); background: var(--navy); border: 1px solid var(--navy); }
  .btn-find:hover, .btn-find:focus-visible { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  .btn-find:hover svg, .btn-find:focus-visible svg { transform: translate(2px,-2px); }
  .request { color: currentColor; background: transparent; border: 1px solid var(--hline); }
  .request:hover, .request:focus-visible { background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .request:hover svg, .request:focus-visible svg { transform: translate(2px,-2px); }
  header.is-stuck { padding: 9px clamp(20px, 4vw, 56px);
    background: rgba(237,232,226,.8); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(45,20,17,.08); }
  header.is-stuck .logo-img { height: 38px; }
  @media (max-width: 940px) { .hdr-left { display: none; } .logo { position: static; transform: none; } }

  /* ---------------- reveal ---------------- */
  [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-reveal), transform .9s var(--ease-reveal); }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal].d1 { transition-delay: .08s; }
  [data-reveal].d2 { transition-delay: .16s; }
  [data-reveal].d3 { transition-delay: .24s; }

  /* ---------------- Masthead (shared with blog/apartments) ---------------- */
  .mast { max-width: 1400px; margin: 0 auto; padding: clamp(122px, 19vh, 200px) clamp(20px, 3vw, 56px) 0; }
  .mast-label { font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: .01em; color: rgba(36,31,26,.6); }
  .mast-band { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap; margin-top: clamp(12px, 2vh, 20px); }
  .mast-title { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5.6vw, 88px); line-height: .98; letter-spacing: -.008em; color: var(--navy); }
  .mast-prov { font-family: var(--sans); text-align: right; padding-bottom: 8px; }
  .mast-prov .p1 { font-size: 12.5px; color: rgba(36,31,26,.55); }
  .mast-prov .p2 { font-size: 13px; color: rgba(36,31,26,.78); font-variant-numeric: tabular-nums; margin-top: 4px; }
  .mast-rule { max-width: 1400px; margin: clamp(22px, 3.4vh, 40px) auto 0; padding: 0 clamp(20px, 3vw, 56px); }
  .mast-rule i { display: block; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease-reveal); }
  body.ready .mast-rule i { transform: scaleX(1); }

  /* ============================================================
     CONTACT — split: direct channels + gallery (left) · enquiry form (right)
     ============================================================ */
  .contact { max-width: 1400px; margin: 0 auto; padding: clamp(34px, 6vh, 68px) clamp(20px, 3vw, 56px) clamp(20px, 4vh, 40px); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(34px, 5vw, 86px); align-items: start; }

  /* left column */
  .c-lead { font-family: var(--sans); font-weight: 300; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: rgba(36,31,26,.8); max-width: 40ch; }
  .c-lead b { font-weight: 500; color: var(--navy); }

  .c-channels { list-style: none; margin: clamp(26px, 3.4vh, 40px) 0 0; padding: 0; border-top: 1px solid var(--rule); }
  .c-channel { display: flex; align-items: center; gap: 18px; padding: clamp(15px, 1.7vh, 20px) 2px; border-bottom: 1px solid var(--rule);
    text-decoration: none; color: var(--navy); position: relative; transition: padding-left .4s var(--ease-reveal); }
  .c-channel:hover, .c-channel:focus-visible { padding-left: 8px; outline: none; }
  .c-ch-ic { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 50%;
    color: var(--navy); transition: background .4s var(--ease-reveal), color .4s var(--ease-reveal), border-color .4s ease; }
  .c-ch-ic svg { width: 21px; height: 21px; display: block; }
  .c-channel:hover .c-ch-ic, .c-channel:focus-visible .c-ch-ic { background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .c-ch-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .c-ch-k { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
  .c-ch-v { font-family: var(--sans); font-size: clamp(15px, 1.2vw, 17px); font-weight: 400; color: var(--navy); font-variant-numeric: tabular-nums; }
  .c-ch-arw { margin-left: auto; flex: 0 0 auto; color: rgba(36,31,26,.4); transition: color .3s ease, transform .35s var(--ease-reveal); }
  .c-ch-arw svg { width: 15px; height: 15px; display: block; }
  .c-channel:hover .c-ch-arw, .c-channel:focus-visible .c-ch-arw { color: var(--gold); transform: translate(3px,-3px); }

  .c-visit { margin-top: clamp(28px, 3.6vh, 44px); display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; }
  .c-visit-block .k { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(36,31,26,.5); margin-bottom: 9px; }
  .c-visit-block p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.55; color: rgba(36,31,26,.82); }
  .c-visit-block .indic { display: block; margin-top: 5px; font-size: 11.5px; letter-spacing: .05em; color: rgba(36,31,26,.5); }
  .c-visit-block .hours-row { display: flex; justify-content: space-between; gap: 14px; max-width: 230px; font-variant-numeric: tabular-nums; }
  .c-visit-block .hours-row span:last-child { color: var(--navy); }

  /* right column — the form panel (one confident floating surface, no hard border) */
  .c-form-panel { background: var(--paper); border-radius: 16px; padding: clamp(26px, 3vw, 42px);
    box-shadow: 0 40px 90px -46px rgba(28,14,11,.5), 0 2px 10px rgba(28,14,11,.05); }
  .c-form-panel h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.06; letter-spacing: -.012em; }
  .c-form-panel .note { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.5; color: rgba(36,31,26,.66); margin-top: 10px; max-width: 42ch; }
  .c-form { margin-top: clamp(20px, 2.4vw, 28px); display: grid; gap: 13px; }
  .c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  .c-field { position: relative; min-width: 0; }
  .c-field label { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(36,31,26,.55); margin-bottom: 7px; }
  .c-field input, .c-field select, .c-field textarea {
    font-family: var(--sans); font-size: 14.5px; color: var(--ink); width: 100%;
    padding: 14px 15px; border: 1px solid rgba(36,31,26,.18); border-radius: 6px; background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease; }
  .c-field textarea { resize: vertical; min-height: 116px; line-height: 1.5; }
  .c-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23241F1A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
  .c-field input::placeholder, .c-field textarea::placeholder { color: rgba(36,31,26,.45); }
  .c-field input:focus, .c-field select:focus, .c-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,76,.14); }

  .c-consent { display: flex; gap: 10px; align-items: flex-start; font-family: var(--sans); font-size: 11.5px; color: rgba(36,31,26,.62); line-height: 1.45; margin-top: 3px; }
  .c-consent input { width: auto; margin-top: 2px; accent-color: var(--gold); }
  .c-consent a { color: var(--navy); }

  .c-submit { margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 11px;
    font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
    background: var(--navy); color: var(--paper); border: none; border-radius: 999px; padding: 16px; cursor: pointer;
    transition: background .3s var(--ease-reveal), color .3s var(--ease-reveal); }
  .c-submit svg { width: 16px; height: 16px; transition: transform .3s var(--ease-reveal); }
  .c-submit:hover { background: var(--gold); color: var(--navy); }
  .c-submit:hover svg { transform: translateY(-2px) scale(1.05); }
  .c-alt { text-align: center; font-family: var(--sans); font-size: 12.5px; color: rgba(36,31,26,.6); margin-top: 2px; }
  .c-alt button { background: none; border: none; cursor: pointer; color: var(--navy); font: inherit; position: relative; padding: 0 0 2px; }
  .c-alt button::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(1); transform-origin: left; }
  .c-alt button:hover { color: var(--gold); }

  /* success state (replaces the form) */
  .c-success { text-align: center; padding: clamp(28px, 4vw, 46px) clamp(10px, 2vw, 26px); }
  .c-success .tick { width: 50px; height: 50px; margin: 0 auto 16px; border-radius: 50%; background: rgba(176,141,76,.16); display: grid; place-items: center; color: var(--gold); }
  .c-success h3 { font-family: var(--serif); font-weight: 500; font-size: 27px; }
  .c-success p { font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: rgba(36,31,26,.7); margin-top: 9px; line-height: 1.55; max-width: 34ch; margin-left: auto; margin-right: auto; }

  /* ============================================================
     LOCATION BAND — espresso, the balcony curve + a stylised coast marker
     ============================================================ */
  .c-loc { position: relative; margin-top: clamp(60px, 9vh, 110px); background: var(--navy); color: var(--paper); overflow: hidden; }
  .c-loc-curve { position: absolute; top: 0; left: 0; width: 100%; height: clamp(80px, 10vw, 130px); pointer-events: none; }
  .c-loc-curve path { fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round;
    stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.7s var(--ease-reveal); }
  .c-loc.in .c-loc-curve path { stroke-dashoffset: 0; }
  .c-loc-inner { position: relative; max-width: 1400px; margin: 0 auto;
    padding: clamp(78px, 12vw, 150px) clamp(20px, 3vw, 56px) clamp(56px, 8vh, 96px);
    display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
  .c-loc-title { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 62px); line-height: 1.02; letter-spacing: -.014em; text-wrap: balance; }
  .c-loc-copy { font-family: var(--sans); font-weight: 300; font-size: clamp(14.5px, 1.15vw, 16px); line-height: 1.6; color: rgba(244,238,228,.72); margin-top: 16px; max-width: 42ch; }
  .c-loc-map-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 26px;
    font-family: var(--sans); font-size: 13px; letter-spacing: .04em; color: var(--paper); text-decoration: none; }
  .c-loc-map-link .u { position: relative; }
  .c-loc-map-link .u::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(1); transform-origin: left; }
  .c-loc-map-link svg { width: 13px; height: 13px; transition: transform .35s var(--ease-reveal); }
  .c-loc-map-link:hover svg { transform: translate(2px,-2px); }
  /* real map plate — Leaflet + dark Carto tiles, warm-tinted to the espresso theme */
  .c-loc-plate { position: relative; aspect-ratio: 4 / 3; border: 1px solid rgba(244,238,228,.16); border-radius: 12px; overflow: hidden; background: #241a17; }
  #locMap { position: absolute; inset: 0; z-index: 0; background: #241a17; }
  .c-loc-plate .leaflet-container { background: #241a17; font-family: var(--sans); outline: none; }
  .c-loc-plate .leaflet-tile-pane { filter: sepia(.5) saturate(1.35) hue-rotate(-12deg) brightness(.82) contrast(1.03); }
  .c-loc-plate .leaflet-control-zoom { border: none; box-shadow: none; margin: 12px; }
  .c-loc-plate .leaflet-control-zoom a { width: 28px; height: 28px; line-height: 28px; color: rgba(244,238,228,.82);
    background: rgba(45,20,17,.78); border: 1px solid rgba(244,238,228,.14); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transition: background .25s ease, color .25s ease; }
  .c-loc-plate .leaflet-control-zoom a:first-child { border-radius: 8px 8px 0 0; }
  .c-loc-plate .leaflet-control-zoom a:last-child { border-radius: 0 0 8px 8px; border-top: none; }
  .c-loc-plate .leaflet-control-zoom a:hover { background: var(--navy); color: var(--gold); }
  .c-loc-plate .leaflet-control-attribution { background: rgba(45,20,17,.5); color: rgba(244,238,228,.4); font-size: 9px; padding: 1px 6px; }
  .c-loc-plate .leaflet-control-attribution a { color: rgba(244,238,228,.6); }
  /* creative gold O-ring brand pin */
  .opus-pin i { position: absolute; left: 50%; top: 50%; border-radius: 50%; display: block; }
  .opus-pin .dot { width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; background: var(--gold); box-shadow: 0 0 0 2px rgba(45,20,17,.7), 0 3px 9px rgba(0,0,0,.5); }
  .opus-pin .ring { width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px; border: 1.5px solid var(--gold); animation: opusPin 2.6s var(--ease-reveal) infinite; }
  @keyframes opusPin { 0% { transform: scale(1); opacity: .85; } 70%, 100% { transform: scale(3.4); opacity: 0; } }
  .c-loc-plate .leaflet-tooltip.opus-tip { background: var(--navy); color: var(--paper); border: 1px solid rgba(176,141,76,.55); border-radius: 999px;
    padding: 4px 12px; font-size: 11px; font-weight: 500; letter-spacing: .04em; box-shadow: 0 6px 18px rgba(0,0,0,.45); }
  .c-loc-plate .leaflet-tooltip.opus-tip::before { border-top-color: var(--navy); }
  .plate-tag { position: absolute; left: 16px; bottom: 12px; z-index: 1; pointer-events: none; font-family: var(--sans); font-size: 9.5px;
    letter-spacing: .18em; text-transform: uppercase; color: rgba(244,238,228,.55); text-shadow: 0 1px 5px rgba(0,0,0,.6); }

  /* ===== FOOTER — "The Resolving Line" (verbatim shell) ===== */
  .foot { position: relative; background: var(--black); color: var(--paper); overflow: hidden;
    padding: clamp(72px,9vh,104px) 0 calc(clamp(40px,6vh,72px) + env(safe-area-inset-bottom)); }
  .foot[data-reveal] { opacity: 1; transform: none; transition: none; }
  .foot-inner { max-width: calc(1440px + 2 * clamp(20px, 3vw, 56px)); margin: 0 auto; padding: 0 clamp(20px, 3vw, 56px); }
  .foot-brand, .foot-grid, .foot-legal { opacity: 0; transform: translateY(24px);
    transition: opacity .8s var(--ease-reveal), transform .8s var(--ease-reveal); }
  .foot.in .foot-brand { opacity: 1; transform: none; transition-delay: 0.05s; }
  .foot.in .foot-grid  { opacity: 1; transform: none; transition-delay: 0.15s; }
  .foot.in .foot-legal { opacity: 1; transform: none; transition-delay: 0.25s; }
  .foot-brand { display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: clamp(24px,4vw,56px); }
  .foot-wordmark { width: clamp(120px,14vw,152px); height: auto; display: block; filter: brightness(0) invert(1); }
  .foot-lines { max-width: 46ch; }
  .foot-emotional { font-family: var(--sans); font-weight: 400; font-size: clamp(16px,1.5vw,19px); line-height: 1.35; color: rgba(244,238,228,.92); margin: 0; }
  .foot-positioning { font-family: var(--sans); font-weight: 300; font-size: clamp(14px,1.15vw,16px); line-height: 1.5; color: rgba(244,238,228,.6); margin: 6px 0 0; }
  .foot-grid { margin-top: clamp(48px,8vh,88px); display: grid; grid-template-columns: repeat(12,1fr); column-gap: clamp(20px,2.4vw,34px); row-gap: 40px; }
  .foot-col-cta { grid-column: span 4; }
  .foot-col-nav { grid-column: span 3; }
  .foot-col-contact { grid-column: span 5; }
  .foot-label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(176,141,76,.92); margin: 0 0 16px; }
  .foot-cta { display: inline-block; font-family: var(--sans); font-weight: 400; font-size: clamp(26px,3vw,40px); line-height: 1.06; letter-spacing: -.01em;
    color: var(--paper); background: none; border: none; padding: 0; cursor: pointer; position: relative; text-align: left; }
  .foot-cta::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-reveal); }
  .foot-cta:hover::after, .foot-cta:focus-visible::after { transform: scaleX(1); }
  .foot-cta-sub { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.5; color: rgba(244,238,228,.6); margin: 18px 0 0; max-width: 34ch; }
  .foot-mail { display: inline-block; font-family: var(--sans); font-size: 14px; color: rgba(244,238,228,.85); background: none; border: none; padding: 0 0 2px; cursor: pointer; position: relative; text-align: left; transition: color .25s ease; }
  .foot-mail::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: transparent; transition: background .3s ease; }
  .foot-mail:hover, .foot-mail:focus-visible { color: var(--gold); }
  .foot-mail:hover::after, .foot-mail:focus-visible::after { background: var(--gold); }
  .foot-cta-mail { margin-top: 16px; font-size: 15px; }
  .foot-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .foot-list a, .foot-contact a { font-family: var(--sans); font-weight: 300; color: rgba(244,238,228,.85); text-decoration: none; position: relative; width: fit-content; transition: color .25s ease; }
  .foot-list a { font-size: 15px; }
  .foot-list a::after, .foot-contact a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-reveal); }
  .foot-list a:hover, .foot-list a:focus-visible, .foot-contact a:hover, .foot-contact a:focus-visible { color: var(--gold); }
  .foot-list a:hover::after, .foot-list a:focus-visible::after, .foot-contact a:hover::after, .foot-contact a:focus-visible::after { transform: scaleX(1); }
  .foot-contact { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.55; color: rgba(244,238,228,.85); }
  .foot-contact .addr { margin: 0; }
  .foot-contact .indic { display: block; margin-top: 4px; font-size: 11.5px; letter-spacing: .06em; color: rgba(244,238,228,.5); }
  .foot-contact .row { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
  .foot-contact a.tel { font-variant-numeric: tabular-nums; }
  .foot-social { margin-top: 8px; display: flex; gap: 22px; }
  .foot-legal { margin-top: clamp(56px,9vh,96px); padding-top: 22px; border-top: 1px solid rgba(244,238,228,.12); display: flex; justify-content: space-between; align-items: center; gap: 20px 28px; flex-wrap: wrap; }
  .foot-legal-left { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(244,238,228,.55); display: flex; flex-wrap: wrap; align-items: center; }
  .foot-legal-left a { color: rgba(244,238,228,.55); text-decoration: none; transition: color .25s ease; }
  .foot-legal-left a:hover, .foot-legal-left a:focus-visible { color: rgba(244,238,228,.9); }
  .foot-legal-left .sep { margin: 0 10px; color: rgba(244,238,228,.3); }
  .foot-legal-right { display: flex; align-items: center; gap: 24px; }
  .foot-dev { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(244,238,228,.45); }
  .foot a:focus-visible, .foot button:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 1px; }

  /* ---------------- responsive ---------------- */
  @media (max-width: 940px) {
    .contact-grid { grid-template-columns: 1fr; gap: clamp(30px, 6vw, 48px); }
    .c-loc-inner { grid-template-columns: 1fr; }
    .c-loc-plate { order: -1; max-width: 460px; }
  }
  @media (max-width: 620px) {
    .hdr-right .lang, .btn-find { display: none; }
    .logo-img { height: 46px; } header.is-stuck .logo-img { height: 36px; }
    .mast-prov { text-align: left; padding-bottom: 0; }
    .mast-band { align-items: flex-start; }
    .c-row { grid-template-columns: 1fr; }
    .c-visit { grid-template-columns: 1fr; }
  }
  @media (max-width: 860px) {
    .foot { padding-top: clamp(56px,8vh,84px); }
    .foot-brand { grid-template-columns: 1fr; align-items: start; row-gap: 18px; }
    .foot-grid { grid-template-columns: 1fr; row-gap: 34px; }
    .foot-col-cta, .foot-col-nav, .foot-col-contact { grid-column: 1 / -1; }
    .foot-cta { font-size: clamp(26px,7.5vw,34px); }
    .foot-legal { flex-direction: column; align-items: flex-start; gap: 16px; }
    .foot-legal-right { flex-direction: column; align-items: flex-start; gap: 14px; }
  }
  @media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .mast-rule i, .c-loc-curve path { transform: none; stroke-dashoffset: 0 !important; transition: none !important; }
    .foot-brand, .foot-grid, .foot-legal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .opus-pin .ring { animation: none; }
    * { scroll-behavior: auto; }
  }
