/* ==========================================================================
   Stimpol - one page stylesheet
   Asset paths are relative to this file (static/css/) so the site works from
   any root, a sub-path, or file:// without rewriting anything.
   ========================================================================== */

@font-face{font-family:'Montserrat';src:url('../fonts/Montserrat-Light.woff2') format('woff2');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Montserrat';src:url('../fonts/Montserrat-Regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Montserrat';src:url('../fonts/Montserrat-Bold.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}

:root{
  --brand:#d70056;
  --brand-dark:#a80043;
  --ink:#1b1917;
  --body:#4a4541;
  --muted:#7c7770;
  --line:#e6e2dd;
  --bg:#fff;
  --bg-alt:#faf8f6;
  --dark:#111;
  --radius:14px;
  --shadow:0 1px 2px rgba(0,0,0,.04),0 8px 24px rgba(0,0,0,.06);
  --shadow-lg:0 2px 8px rgba(0,0,0,.06),0 18px 48px rgba(0,0,0,.12);
  --nav-h:64px;
  --maxw:1200px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:var(--nav-h)}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}
body{
  margin:0;background:var(--bg);color:var(--body);
  font:400 16px/1.7 Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  overflow-wrap:break-word;
}
img{max-width:100%;height:auto;display:block;border:0}
a{color:var(--brand);text-decoration:none}
a:hover{color:var(--brand-dark);text-decoration:underline}
h1,h2,h3,h4{color:var(--ink);line-height:1.25;margin:0 0 .6em;font-weight:700;text-wrap:balance}
h1{font-size:clamp(1.9rem,4.4vw,3rem)}
h2{font-size:clamp(1.45rem,3vw,2.1rem)}
h3{font-size:1.12rem}
p{margin:0 0 1.1em}
ul{margin:0 0 1.1em;padding-left:1.2em}
:focus-visible{outline:3px solid var(--brand);outline-offset:2px;border-radius:4px}

.wrap{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:24px}
@media (max-width:640px){.wrap{padding-inline:18px}}

.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
}
.skip-link{
  position:absolute;left:12px;top:-100px;z-index:200;background:var(--brand);color:#fff;
  padding:12px 20px;border-radius:0 0 8px 8px;font-weight:700;transition:top .18s
}
.skip-link:focus{top:0;color:#fff;text-decoration:none}

/* ---------- Header / navigation ---------------------------------------- */
.site-header{
  position:sticky;top:0;z-index:100;background:rgba(17,17,17,.97);
  backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid rgba(255,255,255,.08)
}
.nav-bar{display:flex;align-items:center;gap:16px;min-height:var(--nav-h)}
.brand{display:flex;align-items:center;gap:12px;flex:0 0 auto}
.brand img{height:34px;width:auto;filter:brightness(0) invert(1)}
.brand-note{
  color:rgba(255,255,255,.62);font-size:11px;line-height:1.3;
  /* p has a bottom margin by default; it would offset the flex centring upwards */
  margin:0;display:flex;align-items:center;min-height:34px;
  max-width:190px;border-left:1px solid rgba(255,255,255,.18);padding-left:12px
}
@media (max-width:1080px){.brand-note{display:none}}

.nav-toggle{
  margin-left:auto;display:none;width:44px;height:44px;padding:0;
  background:transparent;border:1px solid rgba(255,255,255,.25);border-radius:9px;cursor:pointer
}
.nav-toggle span{display:block;width:20px;height:2px;margin:4px auto;background:#fff;transition:transform .2s,opacity .2s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.nav-menu{display:flex;align-items:center;gap:2px;margin:0 0 0 auto;padding:0;list-style:none}
.nav-menu a{
  display:block;color:rgba(255,255,255,.86);font-size:13.5px;font-weight:400;
  padding:9px 12px;border-radius:8px;white-space:nowrap;transition:background .16s,color .16s
}
.nav-menu a:hover{background:rgba(255,255,255,.1);color:#fff;text-decoration:none}
.nav-menu a[aria-current="true"]{background:var(--brand);color:#fff;font-weight:700}
.nav-menu .nav-cta a{
  background:#fff;color:var(--ink);font-weight:700;margin-left:8px;padding-inline:16px
}
.nav-menu .nav-cta a:hover{background:var(--brand);color:#fff}

@media (max-width:960px){
  .nav-toggle{display:block}
  .nav-menu{
    position:absolute;left:0;right:0;top:100%;flex-direction:column;align-items:stretch;
    gap:0;background:#111;border-top:1px solid rgba(255,255,255,.1);
    padding:8px 16px 18px;box-shadow:var(--shadow-lg);display:none
  }
  .nav-menu.is-open{display:flex}
  .nav-menu a{padding:13px 12px;font-size:15px;border-radius:8px}
  .nav-menu .nav-cta a{margin:8px 0 0;text-align:center}
}

/* ---------- Hero slider ------------------------------------------------- */
.hero{position:relative;background:#0d0d0d;overflow:hidden}
.slider{position:relative;aspect-ratio:24/7;min-height:470px;max-height:78vh}
@media (max-width:768px){.slider{aspect-ratio:auto;height:78vh;min-height:440px;max-height:none}}
.slide{
  position:absolute;inset:0;opacity:0;transition:opacity .9s ease;
  pointer-events:none
}
.slide.is-active{opacity:1}
.slide img{width:100%;height:100%;object-fit:cover}
.hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.42) 0%,rgba(0,0,0,.12) 40%,rgba(0,0,0,.55) 100%)
}
.hero-overlay{
  position:absolute;inset:0;z-index:3;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;padding:56px 24px;gap:14px
}
.hero-overlay > *{max-width:900px}
.hero-kicker{
  color:#fff;font-size:clamp(.7rem,1.6vw,.86rem);font-weight:700;
  letter-spacing:.34em;text-transform:uppercase;margin:0;text-shadow:0 2px 14px rgba(0,0,0,.5)
}
.hero h1{color:#fff;margin:0;text-shadow:0 3px 22px rgba(0,0,0,.55)}
.hero-lead{
  color:rgba(255,255,255,.94);font-size:clamp(.95rem,1.9vw,1.12rem);margin:0;
  text-shadow:0 2px 14px rgba(0,0,0,.5)
}

.slider-dots{
  position:absolute;left:50%;transform:translateX(-50%);bottom:18px;z-index:4;
  display:flex;gap:9px;margin:0;padding:0;list-style:none
}
.slider-dots button{
  width:11px;height:11px;padding:0;border-radius:50%;cursor:pointer;
  background:rgba(255,255,255,.45);border:1px solid rgba(255,255,255,.85);transition:background .2s,transform .2s
}
.slider-dots button[aria-current="true"]{background:#fff;transform:scale(1.25)}

/* ---------- Buttons ----------------------------------------------------- */
.btn{
  display:inline-block;padding:13px 30px;border-radius:999px;font-size:.95rem;font-weight:700;
  border:2px solid transparent;cursor:pointer;text-align:center;transition:background .18s,color .18s,border-color .18s,transform .12s
}
.btn:hover{text-decoration:none;transform:translateY(-1px)}
.btn-primary{background:var(--brand);color:#fff;border-color:var(--brand)}
.btn-primary:hover{background:var(--brand-dark);border-color:var(--brand-dark);color:#fff}
.btn-ghost{background:rgba(0,0,0,.35);color:#fff;border-color:#fff}
.btn-ghost:hover{background:#fff;color:var(--ink)}
.btn-lg{padding:15px 38px;font-size:1rem}
.btn-block{display:block;width:100%}

/* ---------- Sections ---------------------------------------------------- */
.section{padding:clamp(56px,7vw,92px) 0;border-top:1px solid var(--line)}
.section:nth-of-type(even){background:var(--bg-alt)}
.section-head{max-width:760px;margin:0 auto clamp(32px,4vw,52px);text-align:center}
.section-eyebrow{
  display:block;color:var(--brand);font-size:.74rem;font-weight:700;
  letter-spacing:.24em;text-transform:uppercase;margin-bottom:12px
}
.section-head p{color:var(--muted);margin:0}
.lead{font-size:1.05rem;color:var(--body)}

/* ---------- Generic card grid ------------------------------------------ */
.grid{display:grid;gap:26px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:940px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:720px){.grid-2,.grid-3{grid-template-columns:1fr}}

.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow);transition:box-shadow .2s,transform .2s
}
.card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.card h3{color:var(--brand);margin-bottom:.5em}
.card p:last-child{margin-bottom:0}

/* ---------- Meet Stimpol ------------------------------------------------ */
.prose p:last-child{margin-bottom:0}
.reasons{list-style:none;padding:0;margin:0;display:grid;gap:14px}
@media (min-width:860px){.reasons{grid-template-columns:1fr 1fr;gap:14px 32px}}
.reasons li{position:relative;padding-left:34px;color:var(--body)}
.reasons li::before{
  content:"";position:absolute;left:0;top:.55em;width:18px;height:18px;border-radius:50%;
  background:var(--brand);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.2 11.6 3 8.4l1.1-1.1 2.1 2.1 5.7-5.7L13 4.8z' fill='%23fff'/%3E%3C/svg%3E") center/100% no-repeat,
  linear-gradient(#000,#000);
  -webkit-mask-composite:destination-out;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.2 11.6 3 8.4l1.1-1.1 2.1 2.1 5.7-5.7L13 4.8z' fill='%23fff'/%3E%3C/svg%3E") center/100% no-repeat;
}
.reasons li::after{
  content:"";position:absolute;left:0;top:.55em;width:18px;height:18px;border-radius:50%;
  border:2px solid var(--brand)
}

/* ---------- References -------------------------------------------------- */
.ref-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin:0;padding:0;list-style:none}
.ref-grid li{
  background:#fff;border:1px solid var(--line);border-radius:999px;
  padding:9px 20px;font-size:.86rem;font-weight:700;color:var(--muted);
  letter-spacing:.02em;transition:color .18s,border-color .18s
}
.ref-grid li:hover{color:var(--brand);border-color:var(--brand)}
.ref-banner{margin:36px auto 0;max-width:900px}

/* FAQ - answers stay visible, which is what FAQPage markup requires. */
.faq-list{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(330px,1fr))}
.faq-item{
  background:var(--bg-alt);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px 24px
}
.faq-item h3{font-size:1rem;margin:0 0 .5em}
.faq-item p{color:var(--muted);font-size:.94rem;margin:0}

/* ---------- Offices ----------------------------------------------------- */
.office{
  background:#fff;border:1px solid var(--line);border-left:4px solid var(--brand);
  border-radius:var(--radius);padding:26px;max-width:440px;margin-inline:auto
}
.office h3{color:var(--ink);font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;color:var(--brand)}
.office p{margin:0;line-height:1.85}
.office .office-co{font-weight:700;color:var(--ink)}

/* ---------- Destinations ------------------------------------------------ */
.reasons-box{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(26px,3vw,40px);box-shadow:var(--shadow);margin-bottom:clamp(34px,4vw,52px)
}
.reasons-box h3{text-align:center;color:var(--brand);font-size:1.05rem;letter-spacing:.06em;text-transform:uppercase}

.dest{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);margin-bottom:26px
}
.dest-media{position:relative;aspect-ratio:1500/367;min-height:170px;background:#eee}
.dest-media img{width:100%;height:100%;object-fit:cover}
.dest-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 45%,rgba(0,0,0,.72) 100%)
}
.dest-media h3{
  position:absolute;left:0;right:0;bottom:0;z-index:2;margin:0;
  padding:20px clamp(20px,3vw,34px);color:#fff;font-size:clamp(1.15rem,2.4vw,1.6rem);
  letter-spacing:.05em;text-shadow:0 2px 12px rgba(0,0,0,.5)
}
.dest-body{padding:clamp(22px,3vw,34px)}
.dest-quote{
  font-style:italic;color:var(--muted);font-size:.9rem;
  border-left:3px solid var(--brand);padding-left:14px;margin-bottom:1.1em
}
.dest-body p:last-child{margin-bottom:0}

/* ---------- Gallery ----------------------------------------------------- */
.gallery{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:0;padding:0;list-style:none
}
@media (max-width:1080px){.gallery{grid-template-columns:repeat(3,1fr)}}
@media (max-width:760px){.gallery{grid-template-columns:repeat(2,1fr);gap:12px}}
.gallery a{
  display:block;position:relative;border-radius:10px;overflow:hidden;
  aspect-ratio:3/2;background:#eee;box-shadow:var(--shadow)
}
.gallery img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.gallery a::after{
  content:"";position:absolute;inset:0;background:rgba(215,0,86,0);transition:background .25s
}
.gallery a:hover img,.gallery a:focus-visible img{transform:scale(1.07)}
.gallery a:hover::after,.gallery a:focus-visible::after{background:rgba(215,0,86,.22)}

/* ---------- Lightbox ---------------------------------------------------- */
.lightbox{
  position:fixed;inset:0;z-index:300;
  background:rgba(10,10,10,.95);padding:52px 16px
}
.lightbox{display:flex;align-items:center;justify-content:center}
.lightbox img{max-width:100%;max-height:calc(100vh - 104px);object-fit:contain;border-radius:6px}
.lightbox-btn{
  position:absolute;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.3);
  color:#fff;width:46px;height:46px;border-radius:50%;cursor:pointer;
  font-size:22px;line-height:1;display:flex;align-items:center;justify-content:center;transition:background .18s
}
.lightbox-btn:hover{background:rgba(255,255,255,.3)}
.lightbox-close{top:14px;right:14px}
.lightbox-prev{left:14px;top:50%;transform:translateY(-50%)}
.lightbox-next{right:14px;top:50%;transform:translateY(-50%)}
.lightbox-count{
  position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.75);font-size:.82rem;letter-spacing:.08em
}

/* ---------- Contact ----------------------------------------------------- */
.contact-grid{display:grid;gap:30px;grid-template-columns:1fr 1fr;align-items:start}
@media (max-width:860px){.contact-grid{grid-template-columns:1fr}}
.contact-list{list-style:none;margin:0 0 26px;padding:0;display:grid;gap:16px}
.contact-list li{display:flex;gap:14px;align-items:flex-start;line-height:1.6}
.contact-list .ico{
  flex:0 0 22px;width:22px;height:22px;margin-top:2px;background:var(--brand);
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-size:contain;mask-size:contain
}
.ico-pin{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.1 2 5 5.1 5 9c0 5.3 7 13 7 13s7-7.7 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.1 2 5 5.1 5 9c0 5.3 7 13 7 13s7-7.7 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E")}
.ico-phone{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 0 1 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .7-.2 1l-2.3 2.2z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 0 1 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .7-.2 1l-2.3 2.2z'/%3E%3C/svg%3E")}
.ico-mail{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4.2-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4.2-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E")}
.ico-fax{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 8h-1V3H6v5H5a3 3 0 0 0-3 3v6h4v3h12v-3h4v-6a3 3 0 0 0-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm3-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 8h-1V3H6v5H5a3 3 0 0 0-3 3v6h4v3h12v-3h4v-6a3 3 0 0 0-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm3-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2z'/%3E%3C/svg%3E")}

.social{display:flex;gap:10px;margin:0;padding:0;list-style:none;flex-wrap:wrap}
.social a{
  display:inline-flex;align-items:center;gap:9px;padding:10px 18px;border-radius:999px;
  border:1px solid var(--line);background:#fff;color:var(--muted);
  font-size:.78rem;font-weight:700;letter-spacing:.1em;transition:background .18s,color .18s,border-color .18s
}
.social a:hover{background:var(--brand);border-color:var(--brand);color:#fff;text-decoration:none}
.social i{width:17px;height:17px;background:currentColor;display:block;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;
  -webkit-mask-position:center;mask-position:center}
.i-fb{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9V7.5c0-.8.2-1.2 1.4-1.2H17V3.2A20 20 0 0 0 14.6 3C12 3 10.3 4.6 10.3 7.4V9H8v3.3h2.3V21H14v-8.7h2.5l.4-3.3H14z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9V7.5c0-.8.2-1.2 1.4-1.2H17V3.2A20 20 0 0 0 14.6 3C12 3 10.3 4.6 10.3 7.4V9H8v3.3h2.3V21H14v-8.7h2.5l.4-3.3H14z'/%3E%3C/svg%3E")}
.i-x{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 3h3l-6.6 7.5L21.7 21h-6l-4.7-6.2L5.6 21h-3l7-8-6.8-10h6.2l4.3 5.7L17.5 3zm-1 16h1.6L7.6 4.7H5.9L16.5 19z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 3h3l-6.6 7.5L21.7 21h-6l-4.7-6.2L5.6 21h-3l7-8-6.8-10h6.2l4.3 5.7L17.5 3zm-1 16h1.6L7.6 4.7H5.9L16.5 19z'/%3E%3C/svg%3E")}
.i-in{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.9 21H3.6V8.9h3.3V21zM5.2 7.4a1.9 1.9 0 1 1 0-3.9 1.9 1.9 0 0 1 0 3.9zM21 21h-3.3v-5.9c0-1.4 0-3.2-2-3.2s-2.3 1.5-2.3 3.1V21H10V8.9h3.2v1.7h.1a3.5 3.5 0 0 1 3.2-1.7c3.4 0 4 2.2 4 5.1V21z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.9 21H3.6V8.9h3.3V21zM5.2 7.4a1.9 1.9 0 1 1 0-3.9 1.9 1.9 0 0 1 0 3.9zM21 21h-3.3v-5.9c0-1.4 0-3.2-2-3.2s-2.3 1.5-2.3 3.1V21H10V8.9h3.2v1.7h.1a3.5 3.5 0 0 1 3.2-1.7c3.4 0 4 2.2 4 5.1V21z'/%3E%3C/svg%3E")}

/* ---------- Form -------------------------------------------------------- */
.form-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(26px,3vw,38px);box-shadow:var(--shadow-lg)
}
.field{margin-bottom:20px}
.field label{display:block;font-weight:700;color:var(--ink);font-size:.85rem;margin-bottom:7px}
.field input,.field textarea{
  width:100%;font:inherit;font-size:.98rem;color:var(--ink);background:#fff;
  padding:13px 15px;border:1px solid #cfcac4;border-radius:10px;transition:border-color .16s,box-shadow .16s
}
.field textarea{resize:vertical;min-height:130px}
.field input:focus,.field textarea:focus{
  outline:none;border-color:var(--brand);box-shadow:0 0 0 3px rgba(215,0,86,.14)
}
.field input:user-invalid,.field textarea:user-invalid{border-color:#c0392b}
.hp{position:absolute!important;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-note{font-size:.8rem;color:var(--muted);margin:14px 0 0;text-align:center}

/* ---------- Footer ------------------------------------------------------ */
.site-footer{
  background:#0e0e0e url('../image/footer-bg.webp') no-repeat center/cover;
  color:rgba(255,255,255,.72);font-size:.86rem;position:relative
}
.site-footer::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.86)}
.site-footer > *{position:relative}
.footer-main{padding:56px 0 40px;display:grid;gap:34px;grid-template-columns:1.7fr repeat(5,1fr)}
@media (max-width:1180px){.footer-main{grid-template-columns:repeat(3,1fr)}}
@media (max-width:760px){.footer-main{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.footer-main{grid-template-columns:1fr}}
.site-footer h2{
  color:#fff;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;margin:0 0 16px
}
.site-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.site-footer a{color:rgba(255,255,255,.72)}
.site-footer a:hover{color:#fff}
.footer-logo{height:38px;width:auto;filter:brightness(0) invert(1);margin-bottom:16px}
.footer-legal{margin:0 0 14px;line-height:1.8}
.tursab{display:inline-block;background:#fff;padding:6px;border-radius:8px;margin-bottom:16px}
.tursab img{height:52px;width:auto}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);padding:18px 0;
  font-size:.78rem;color:rgba(255,255,255,.55);text-align:center
}

/* ---------- Cookie consent ---------------------------------------------- */
.cookie{
  position:fixed;left:16px;right:16px;bottom:16px;z-index:250;
  background:#151515;color:rgba(255,255,255,.85);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:18px 22px;
  display:none;gap:18px;align-items:center;justify-content:space-between;flex-wrap:wrap;
  max-width:960px;margin-inline:auto;font-size:.85rem
}
.cookie.is-open{display:flex}
.cookie p{margin:0;flex:1 1 340px;line-height:1.6}
.cookie .btn{padding:10px 26px;font-size:.85rem}

/* ---------- Back to top ------------------------------------------------- */
.to-top{
  position:fixed;right:18px;bottom:18px;z-index:90;width:46px;height:46px;border-radius:50%;
  background:var(--brand);color:#fff;border:none;cursor:pointer;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity .22s,transform .22s,visibility .22s
}
.to-top.is-visible{opacity:1;visibility:visible;transform:none}
.to-top:hover{background:var(--brand-dark)}
.to-top svg{width:20px;height:20px;fill:currentColor}

@media print{
  .site-header,.hero,.cookie,.to-top,.lightbox,#proposal{display:none!important}
  body{font-size:11pt;color:#000}
  .section{border:0;padding:12pt 0;background:none!important}
}

/* ---------- Layout helpers (replace inline styles) ---------------------- */
.prose-narrow{max-width:820px;margin-inline:auto}
.reasons-heading{text-align:center;margin:48px 0 24px}
.team-block{max-width:820px;margin:48px auto 0}
.lead-center{max-width:820px;margin:0 auto 36px;text-align:center}
.offices{margin-top:56px}
.h-md{font-size:1.3rem}
.follow-title{
  font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);margin-bottom:14px
}
.form-actions{margin:16px 0 0}
.page-narrow{text-align:center;max-width:640px}
.page-narrow h1{margin-top:.2em}
.section-plain{border-top:0}
.mt-lg{margin-top:32px}

/* Lightbox visibility is driven by the `hidden` attribute so that its buttons
   are genuinely removed from the a11y tree while closed. */
.lightbox[hidden]{display:none}
