/* ===================================================================
   ESS Global Tech — Design System
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy: #07374E;
  --navy-2: #0d4f6e;
  --navy-3: #0a2c3d;
  --gold: #E7C855;
  --gold-2: #d8b53f;
  --gold-soft: #f6e9bd;
  --cream: #FBF7EC;
  --ink: #1c2530;
  --ink-soft: #55606c;
  --line: #e7e2d4;
  --white: #ffffff;
  --shadow: 0 20px 45px -20px rgba(7,55,78,0.25);
  --shadow-sm: 0 8px 20px -12px rgba(7,55,78,0.3);
  --radius: 14px;
  --container: 1180px;
  --ff-head: 'Poppins', 'Segoe UI', sans-serif;
  --ff-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 150px; }
@media (max-width: 860px){
  html{ scroll-padding-top: 100px; }
}
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--ff-head);
  color: var(--navy);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
}
p{ margin: 0 0 1em; }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 96px 0; }
@media (max-width: 780px){
  section{ padding: 64px 0; }
}

/* ---------- utility ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--ff-head);
  font-weight:700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.eyebrow::before{
  content:"";
  width:26px; height:2px;
  background: var(--gold-2);
  display:inline-block;
}
.eyebrow-light{ color: var(--gold); }
.eyebrow-light::before{ background: var(--gold); }

.section-head{ max-width: 680px; margin: 0 0 52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ color: var(--ink-soft); font-size: 17px; }

.section-head-split{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom: 52px;
}
.section-head-split .shs-text{ max-width:560px; }
.section-head-split .shs-text h2{ margin-bottom:0; font-size: clamp(28px, 3.4vw, 40px); }
.section-head-split .shs-desc{ max-width:360px; color: var(--ink-soft); font-size:16px; margin:0; }

.bg-cream{ background: var(--cream); }
.bg-navy{ background: var(--navy); color: #dce7ee; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4{ color: var(--white); }
.bg-navy p{ color: #b9cbd6; }

.text-center{ text-align:center; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold);
  color: var(--navy-3);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--gold-2); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover{ border-color: var(--white); transform: translateY(-2px); }
.btn-navy{
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover{ background: var(--navy-2); transform: translateY(-2px); }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-top{
  background: var(--navy-3);
  color: #a9c1cf;
  font-size: 13.5px;
}
.header-top .container{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.header-top a{ color:#dce7ee; }
.header-top-left{ display:flex; gap:22px; flex-wrap:wrap; }
.header-top-left span{ display:inline-flex; align-items:center; gap:7px; }
.header-top-social{ display:flex; gap:14px; }
.header-top-social a{
  width:26px; height:26px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
  transition: background .15s ease;
}
.header-top-social a:hover{ background: var(--gold); color: var(--navy-3); }
.header-top-social svg{ width:13px; height:13px; }

.navbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:46px; height:46px; }
.brand img.brand-logo{ width:auto; height:54px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{
  font-family: var(--ff-head);
  font-size: 20px;
  color: var(--navy);
  font-weight:800;
  letter-spacing: -.01em;
}
.brand-text span{
  font-size: 10.5px;
  font-weight:600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 6px;
}
.nav-links a{
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  position:relative;
}
.nav-links a:hover{ background: var(--cream); }
.nav-links a.active{ background: var(--navy); color: var(--white); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none;
  width: 44px; height:44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items:center; justify-content:center;
  cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display:block;
  width: 20px; height:2px;
  background: var(--navy);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ transform: rotate(45deg); top:0; }
.nav-toggle.open span::after{ transform: rotate(-45deg); top:0; }

@media (max-width: 940px){
  .header-top-left span:nth-child(3){ display:none; }
}
@media (max-width: 860px){
  .header-top{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--white);
    flex-direction:column;
    align-items:stretch;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 12px 10px; }
  .nav-cta .btn-primary{ display:none; }
}

/* ---------- page banner (inner pages) ---------- */
.page-banner{
  background: var(--navy);
  position: relative;
  overflow:hidden;
  padding: 70px 0 60px;
}
.page-banner::after{
  content:"";
  position:absolute;
  right:-80px; top:-120px;
  width: 360px; height:360px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(231,200,85,0.18), transparent 70%);
}
.page-banner .container{ position:relative; z-index:1; }
.page-banner h1{ color: var(--white); font-size: clamp(30px,4vw,44px); margin-bottom:10px; }
.breadcrumb{
  display:flex; gap:8px; align-items:center;
  font-family: var(--ff-head); font-weight:600; font-size:14px;
  color: #9fb7c5;
}
.breadcrumb a:hover{ color: var(--gold); }
.breadcrumb .sep{ opacity:.6; }
.breadcrumb .current{ color: var(--gold); }

/* ---------- hero (home) ---------- */
.hero{
  position:relative;
  background: var(--navy);
  overflow:hidden;
  padding: 90px 0 110px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero h1{
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 54px);
  letter-spacing: -.01em;
}
.hero h1 em{
  font-style:normal;
  color: var(--gold);
}
.hero p.lead{
  color:#c1d3de;
  font-size: 18px;
  max-width: 520px;
}
.hero-actions{ display:flex; gap:16px; margin-top: 34px; flex-wrap:wrap; }
.hero-stats{
  display:flex;
  gap: 34px;
  margin-top: 56px;
  flex-wrap:wrap;
}
.hero-stats div strong{
  display:block;
  font-family: var(--ff-head);
  font-size: 30px;
  color: var(--gold);
}
.hero-stats div span{
  font-size: 13px;
  color:#9fb7c5;
  letter-spacing:.04em;
}
.hero-art{ position:relative; z-index:2; display:flex; align-items:center; justify-content:center; }
.hero-visual{ width:100%; max-width:460px; }
.hero-visual svg{ width:100%; height:auto; }

.hero-orbit{
  position:absolute; inset:0; z-index:1;
  background-image: radial-gradient(circle at 14% 20%, rgba(231,200,85,0.10), transparent 40%),
                     radial-gradient(circle at 86% 82%, rgba(63,182,214,0.12), transparent 45%);
}

@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ max-width: 460px; }
}

/* ---------- logo strip ---------- */
.strip{
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.strip-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap:wrap;
}
.strip-label{
  font-family: var(--ff-head);
  font-weight:600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space:nowrap;
}
.strip-items{
  display:flex;
  gap: 34px;
  flex-wrap:wrap;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  opacity:.65;
}

/* ---------- associations & memberships ---------- */
.assoc-grid{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap: 24px;
}
.assoc-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.assoc-badge:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.assoc-badge img{ height: 64px; width:auto; }
@media (max-width: 480px){
  .assoc-badge{ padding: 18px 22px; }
  .assoc-badge img{ height: 48px; }
}

/* ---------- service cards ---------- */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-top{
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom: 22px;
}
.card .ico{
  width:26px; height:26px;
  color: var(--navy);
}
.card .ico svg{ width:100%; height:100%; }
.card .card-num{
  font-family: var(--ff-head); font-weight:800; font-size: 26px;
  color: var(--gold-soft);
  -webkit-text-stroke: 1px var(--gold);
}
.card h3{ font-size: 19px; margin-bottom:10px; }
.card p{ color: var(--ink-soft); font-size: 15.2px; margin-bottom: 14px; }
.more{
  font-family: var(--ff-head); font-weight:600; font-size:14px;
  color: var(--navy);
  display:inline-flex; align-items:center; gap:6px;
}
.more svg{ width:14px; height:14px; flex-shrink:0; transition: transform .15s ease; }
.card:hover .more svg, .more:hover svg{ transform: translateX(4px); }

.card.featured{ background: var(--navy); border-color: var(--navy); }
.card.featured .ico{ color: var(--gold); }
.card.featured .card-num{ color: rgba(255,255,255,0.12); -webkit-text-stroke: 1px rgba(231,200,85,0.55); }
.card.featured h3, .card.featured p{ color: var(--white); }
.card.featured p{ color: #b9cbd6; }
.card.featured .more{ color: var(--gold); }

/* service detail (services page) */
.svc-detail{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail:last-child{ border-bottom:none; }
.svc-detail .ico{
  width:72px; height:72px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--navy);
  display:flex; align-items:center; justify-content:center;
}
.svc-detail .ico svg{ width:32px; height:32px; }
.svc-detail h3{ font-size: 23px; display:flex; align-items:center; gap:12px; }
.svc-detail .num{
  font-family: var(--ff-head); color: var(--gold-2); font-size:15px;
}
.svc-detail p{ color: var(--ink-soft); font-size:16px; max-width: 700px; }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.tag-list li{
  font-family: var(--ff-head); font-weight:600; font-size:13px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}
@media (max-width: 640px){
  .svc-detail{ grid-template-columns: 1fr; }
}

/* ---------- why choose / feature list ---------- */
.feature-list{ display:flex; flex-direction:column; }
.feature-list li{
  display:flex; gap:16px; align-items:flex-start;
  padding: 18px 0 18px 20px;
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child{ border-bottom:none; }
.feature-list .ico{ width:22px; height:22px; flex-shrink:0; color: var(--navy); margin-top:2px; }
.feature-list .ico svg{ width:100%; height:100%; }
.feature-list h4{ margin-bottom:4px; font-size:16.5px; }
.feature-list p{ color: var(--ink-soft); font-size:14.8px; margin:0; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; gap:40px; }
}
.split-art{ position:relative; }
.split-art .frame{
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  aspect-ratio: 4/3.2;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  position:relative;
}
.split-art .frame svg{ width:72%; }
.split-badge{
  position:absolute; left:-22px; bottom:-22px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display:flex; align-items:center; gap:14px;
}
.split-badge .ico{
  width:44px; height:44px; border-radius:50%;
  background: var(--gold); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
}
.split-badge .ico svg{ width:22px; height:22px; }
.split-badge strong{ display:block; font-family: var(--ff-head); font-size:20px; color: var(--navy); }
.split-badge span{ font-size:12.5px; color: var(--ink-soft); }

/* ---------- process timeline ---------- */
.timeline-h{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  position:relative;
}
.timeline-h::before{
  content:"";
  position:absolute;
  top:23px; left:0; right:0;
  height:1px;
  background: var(--line);
}
.timeline-h-item{ position:relative; padding-right:12px; }
.timeline-h-item .node{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--ff-head); font-weight:700; font-size:14.5px;
  margin-bottom: 22px;
  position:relative; z-index:1;
}
.timeline-h-item:first-child .node{ background: var(--navy); color: var(--gold); }
.timeline-h-item h4{ font-size:16.5px; margin-bottom:8px; }
.timeline-h-item p{ color: var(--ink-soft); font-size:14.3px; margin:0; }
@media (max-width: 900px){
  .timeline-h{ grid-template-columns: repeat(2,1fr); row-gap:36px; }
  .timeline-h::before{ display:none; }
}
@media (max-width: 560px){ .timeline-h{ grid-template-columns: 1fr; } }

/* ---------- stats band ---------- */
.stats-band{ background: var(--navy); padding: 64px 0; }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center; }
@media (max-width: 760px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }
.stats-grid strong{
  display:block; font-family: var(--ff-head); font-weight:800;
  font-size: clamp(30px,4vw,44px); color: var(--gold);
}
.stats-grid span{ color:#b9cbd6; font-size:14px; letter-spacing:.03em; }

/* ---------- testimonials ---------- */
.testi{
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 34px 32px 28px;
}
.testi .quote-mark{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 60px;
  line-height:1;
  color: var(--gold-2);
  display:block;
  margin-bottom: 6px;
}
.testi p{ color: var(--ink); font-size:15.5px; }
.testi .person{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi .person strong{ display:block; font-family: var(--ff-head); font-size:14.5px; color: var(--navy); }
.testi .person span{ font-size:13px; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--navy) 60%, var(--navy-2));
  border-radius: 22px;
  padding: 56px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-banner::after{
  content:"";
  position:absolute; right:-50px; top:50%; transform:translateY(-50%);
  width:230px; height:230px; border-radius:50%;
  border: 1.5px solid rgba(231,200,85,0.28);
}
.cta-banner::before{
  content:"";
  position:absolute; right:30px; top:50%; transform:translateY(-50%);
  width:150px; height:150px; border-radius:50%;
  border: 1.5px solid rgba(231,200,85,0.2);
}
.cta-banner h2{ color:var(--white); margin-bottom:8px; font-size: clamp(24px,3vw,32px); }
.cta-banner p{ color:#c1d3de; margin:0; max-width:480px; }
.cta-banner-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* ---------- mission / values (about) ---------- */
.value-card{
  text-align:center;
  padding: 34px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-card .ico{
  width:58px;height:58px;margin:0 auto 18px;
  border-radius:50%;
  background: var(--cream);
  color: var(--navy);
  display:flex;align-items:center;justify-content:center;
}
.value-card .ico svg{ width:26px;height:26px; }
.value-card h4{ font-size:16.5px; margin-bottom:8px; }
.value-card p{ color: var(--ink-soft); font-size:14.3px; margin:0; }

.mv-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.mv-card .ico{
  width:50px; height:50px; border-radius:50%;
  background: transparent; border: 1.5px solid var(--navy); color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.mv-card .ico svg{ width:24px;height:24px; }
.mv-card p{ color: var(--ink-soft); margin:0; }

/* ---------- timeline (about) ---------- */
.timeline{ position:relative; padding-left: 32px; }
.timeline::before{
  content:""; position:absolute; left:7px; top:6px; bottom:6px; width:2px;
  background: var(--line);
}
.timeline-item{ position:relative; padding-bottom: 34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-32px; top:4px;
  width:16px; height:16px; border-radius:50%;
  background: var(--gold); border:3px solid var(--navy);
}
.timeline-item h4{ font-size:16.5px; margin-bottom:6px; }
.timeline-item p{ color: var(--ink-soft); margin:0; font-size:14.5px; }

/* ---------- contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.15fr; gap: 46px; }
@media (max-width: 940px){ .contact-grid{ grid-template-columns: 1fr; } }

.info-card{
  display:flex; gap:16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.info-card .ico{
  width:48px;height:48px; flex-shrink:0;
  border-radius:50%;
  background: var(--navy); color:var(--gold);
  display:flex;align-items:center;justify-content:center;
}
.info-card .ico svg{ width:22px;height:22px; }
.info-card h4{ font-size:15.5px; margin-bottom:4px; }
.info-card p, .info-card a{ color: var(--ink-soft); font-size:14.8px; margin:0; }
.info-card a:hover{ color: var(--navy); }

.form-card{
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom: 18px; }
.field label{
  display:block; font-family: var(--ff-head); font-weight:600;
  font-size: 13.5px; color: var(--navy); margin-bottom:7px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(7,55,78,0.12);
}
.form-note{ font-size:13px; color: var(--ink-soft); margin-top:12px; }
.form-status{ font-family: var(--ff-head); font-weight:600; font-size:14px; margin-top:14px; display:none; }
.form-status.ok{ display:block; color:#1c7a4a; }
.form-status.err{ display:block; color:#b3261e; }

.map-wrap{
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid var(--line);
  height: 340px;
}
.map-wrap iframe{ width:100%; height:100%; border:0; }

/* ---------- footer ---------- */
.site-footer{ background: var(--navy-3); color:#a9c1cf; padding-top: 70px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand .brand-text strong{ color: var(--white); }
.site-footer p{ color:#8fa9b8; font-size:14.5px; }
.footer-col h4{
  font-family: var(--ff-head); color: var(--white); font-size:15.5px;
  margin-bottom: 18px; letter-spacing:.01em;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color:#a9c1cf; transition: color .15s ease; }
.footer-col a:hover{ color: var(--gold); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; }
.footer-contact svg{ width:16px; height:16px; margin-top:3px; flex-shrink:0; color: var(--gold); }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  transition: background .15s ease;
}
.footer-social a:hover{ background: var(--gold); color: var(--navy-3); }
.footer-social svg{ width:16px;height:16px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding: 22px 0; gap: 16px; flex-wrap:wrap;
  font-size: 13.5px; color: #7d97a6;
}
.footer-bottom a:hover{ color: var(--gold); }

/* ---------- back to top ---------- */
.back-to-top{
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height:46px;
  border-radius:50%;
  background: var(--navy);
  color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  opacity:0; visibility:hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 400;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:none; }
.back-to-top svg{ width:20px;height:20px; }

/* ---------- misc ---------- */
.divider-dot{ width:5px;height:5px;border-radius:50%; background: var(--gold); display:inline-block; }
