/* ==========================================================================
   WBS GROUP — design tokens
   Palette: near-black ground, cream text, bronze/gold accent (per brief)
   Type: Fraunces (display serif) + Manrope (sans) — architectural, premium
   ========================================================================== */

:root{
  --bg:            #12110E;   /* Фон основной */
  --bg-panel:      #1A1F2E;   /* Фон блоков — тёмно-синий, не чёрный */
  --bg-card:       #252018;   /* Карточки */
  --line:          #302A22;
  --cream:         #E8E0CC;   /* Текст основной */
  --cream-dim:     #C8BFA8;   /* Текст вторичный */
  --muted:         #8A7A5A;   /* Текст muted */
  --gold:          #C9A84C;   /* Золото акцент */
  --gold-bright:   #E8D08A;   /* Золото светлое */
  --gold-dim:      #7A6836;

  --serif: "Libre Caslon Text", "Adobe Caslon Pro", Georgia, serif; /* stand-in for Adobe Caslon */
  --sans:  Arial, "Helvetica Neue", sans-serif;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video{ max-width: 100%; display: block; }

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.01em;
}

p{ margin: 0; color: var(--cream-dim); }

a{ color: inherit; text-decoration: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.visually-hidden{
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  background: linear-gradient(to bottom, rgba(10,9,8,.85), rgba(10,9,8,0));
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled{
  background: rgba(10,9,8,.92);
  backdrop-filter: blur(10px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.logo{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.logo img{ display: block; }
.logo-text{ display: flex; flex-direction: column; gap: 3px; }
.logo-word{
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .12em;
}
.logo-word .lw{ color: var(--cream); }
.logo-word .lb{ color: var(--gold); }
.logo-tagline{
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.site-footer .logo-word{ font-size: 15px; }

.nav{ display: flex; gap: 40px; }
.nav a{
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 4px;
}
.nav a.active{ color: var(--cream); }
.nav a::after{
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav a:hover::after, .nav a.active::after{ width: 100%; }

.lang-switch{
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 14px;
  cursor: pointer;
}
.lang-switch .chev{ font-size: 10px; color: var(--muted); }
.lang-switch:hover{ border-color: var(--gold); }

.nav-toggle{ display: none; }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  width: 100%;
}
.wbs-decode{
  text-align: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 32px;
}
.wbs-decode .cap{ color: #E8D08A; }
.wbs-decode .rest{ color: #8A7A5A; }
.wbs-decode--stats{ margin-bottom: 24px; }

.hero-inner > .wbs-decode{ grid-column: 1 / -1; }
.hero-copy{ position: relative; z-index: 2; }
.hero-copy .eyebrow{
  font-size: 15px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 22px;
}
.hero-copy h1{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  max-width: 12ch;
}
.hero-copy .lede{
  margin-top: 28px;
  font-size: 18px;
  max-width: 40ch;
  color: var(--cream-dim);
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 30px;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: .02em;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover{ background: var(--gold); color: #100C08; }
.btn .arrow{ transition: transform .25s var(--ease); }
.btn:hover .arrow{ transform: translateX(4px); }

.hero-visual{
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.hero-visual video, .hero-visual .hero-poster-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual .hero-poster-img{
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
}
.hero-visual.is-ended .hero-poster-img{ opacity: 1; }
.hero-visual.is-ended video{ opacity: 0; }

.hero-under{
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 16px;
}

/* ---------- section shell ---------- */
.section{ padding: 64px 0; border-top: 1px solid var(--line); }
.section.on-panel{ background: var(--bg-panel); border-top: none; }
.section-head{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
  align-items: end;
}
.eyebrow-label{
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: .08em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-label::before{
  content: "";
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--gold);
}
.section-head h2{ font-size: clamp(30px, 3.4vw, 46px); max-width: 18ch; }
.section-head .desc{ max-width: 46ch; }

/* ---------- stats ---------- */
.stats{
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.stats-inner{
  padding: 32px 0;
}
.stats-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.stat{
  padding: 28px 20px 24px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.stat:first-child{ border-left: none; }
.stat .num{
  font-family: var(--serif);
  font-size: 46px;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.stat .label{
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* ---------- directions ---------- */
.directions{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
}
.direction{
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.direction .thumb{
  aspect-ratio: 3/2;
  overflow: hidden;
}
.direction .thumb img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.direction:hover .thumb img{ transform: scale(1.04); }
.direction .body{ padding: 20px 0 0; }
.direction h3{ font-size: 20px; margin-bottom: 12px; line-height: 1.3; }
.direction .tagline{
  font-family: var(--serif); font-style: italic;
  color: var(--gold-bright); font-size: 15px;
  margin-bottom: 10px;
}
.direction .note{ font-size: 14px; color: var(--cream-dim); }
.link-more{
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 13px; color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.direction .link-more .arrow{ transition: transform .25s var(--ease); }
.link-more:hover{ color: var(--gold-bright); border-color: var(--gold-bright); }
.link-more:hover .arrow{ transform: translateX(4px); }

/* ---------- how we work: team row + hover matrix ---------- */
.hww-title{ font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 48px; max-width: 20ch; }

.team-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.4vw, 28px);
}
.member-card{
  display: flex;
  align-items: stretch;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  padding: 10px;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.member-card:hover, .member-card:focus-visible, .member-card.is-active{
  border-color: var(--gold);
  background: rgba(201,168,76,.05);
}
.member-photo{
  flex: 0 0 auto;
  width: 34%;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}
.member-photo img{ width: 100%; height: 100%; object-fit: cover; }
.member-text{ display: flex; flex-direction: column; justify-content: flex-start; padding-top: 4px; }
.m-name{ font-family: var(--serif); font-size: 21px; color: var(--gold-bright); line-height: 1.2; }
.m-role{ margin-top: 10px; font-size: 12.5px; color: var(--cream); line-height: 1.5; }
.m-more{
  margin-top: 14px;
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  border: 1px solid var(--gold-dim);
  color: var(--cream-dim);
  padding: 8px 16px;
}

.matrix{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.matrix-col h4{
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-bright);
  font-size: 16px;
  margin-bottom: 10px;
}
.matrix-col ul{ margin: 0; padding-left: 18px; }
.matrix-col li{ font-size: 13.5px; color: var(--cream-dim); padding: 4px 0; }

.hww-note{
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  max-width: 80ch;
  font-size: 15px;
}

.team-stats{
  margin-top: 48px;
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.team-stats li{
  padding: 28px 20px 24px;
  border-left: 1px solid var(--line);
  font-size: 13px;
  color: var(--cream-dim);
  text-align: center;
}
.team-stats li:first-child{ border-left: none; }
.team-stats .n{
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

/* ---------- geography ---------- */
.eyebrow-label.centered{ justify-content: center; }
.geo-title{
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  max-width: 26ch;
  margin: 0 auto 36px;
}
.geo-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.geo-map{ border: 1px solid var(--line); overflow: hidden; }
.geo-map img{ width: 100%; height: 100%; object-fit: cover; }
.geo-countries{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.geo-country h4{
  font-family: var(--serif); font-weight: 400;
  color: var(--gold-bright); font-size: 19px;
  margin-bottom: 10px;
}
.geo-country hr{ border: none; border-top: 1px solid var(--gold-dim); margin-bottom: 16px; width: 60%; }
.geo-country p{ font-size: 14px; color: var(--cream); line-height: 1.7; margin: 0; }
.geo-country p a{ color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.geo-country p a:hover{ color: var(--gold-bright); }
.geo-icons{ display: flex; gap: 10px; margin-top: 20px; }
.geo-icons img{ width: 34px; height: 34px; object-fit: contain; opacity: .92; }
.geo-quote{
  text-align: center;
  margin-top: 56px;
  font-family: var(--serif); font-style: italic;
  color: var(--gold-bright); font-size: 17px;
}

/* ---------- sub-page hero (Проектирование и др.) ---------- */
.hero--sub{ min-height: auto; padding: 150px 0 60px; }
.hero--sub .hero-inner{ grid-template-columns: 1fr; }
.hero--sub .hero-copy{ max-width: 640px; margin: 0 auto 40px; text-align: center; }
.hero--sub .hero-visual{ margin: 0 auto; max-width: 760px; }
.wbs-bullets{
  list-style: none; margin: 28px 0 0; padding: 0;
  display: inline-flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.wbs-bullets li{
  font-family: var(--serif); font-size: 22px;
  padding-left: 20px; position: relative;
}
.wbs-bullets li::before{
  content: "•"; position: absolute; left: 0; color: var(--gold);
}
.wbs-bullets .cap{ color: var(--gold-bright); }
.wbs-bullets .rest{ color: var(--muted); }
.hero-tagline{
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  font-family: var(--serif); font-style: italic;
  color: var(--gold-bright); font-size: 17px;
}

/* ---------- country content blocks (Проектирование) ---------- */
.country-block + .country-block{ border-top: 1px solid var(--line); }
.country-title{
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 36px;
  max-width: 32ch;
}
.country-title .accent{ color: var(--gold-bright); }
.country-layout{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.country-layout--reverse .country-media{ order: 2; }
.country-layout--reverse .country-copy{ order: 1; }
.country-media img{
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}
.stat-lead{
  font-size: 17px;
  color: var(--gold-bright);
  margin-bottom: 20px;
  line-height: 1.5;
}
.check-list{ list-style: none; margin: 0; padding: 0; }
.check-list li{
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.6;
}
.check-list li::before{
  content: "•";
  position: absolute; left: 0; top: 10px;
  color: var(--gold);
}
.statement-block{ margin-top: 36px; }
.statement{
  margin-top: 18px;
  max-width: none;
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.7;
}
.statement:first-child{ margin-top: 0; }
.statement strong{ color: var(--cream); }
.statement-strong{
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

.media-caption{ margin-top: 16px; }
.media-caption strong{ color: var(--cream); }

.gallery-upload{ margin-top: 64px; }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-slot{
  aspect-ratio: 4/3;
  border: 1px dashed var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* переходный заголовок между hero и первой страновой секцией — стандартный ритм .section */
.intro-lead .geo-title{ max-width: none; }
.intro-desc{
  text-align: center;
  max-width: none;
  margin: 20px auto 0;
  color: var(--cream-dim);
  font-size: 15px;
}

.hero--compact{ min-height: auto; padding: 140px 0 80px; }

#geography .eyebrow-label{ justify-content: flex-start; }
#geography .geo-title{ text-align: left; margin: 0 0 36px; max-width: 26ch; }

.philosophy-block{
  text-align: center;
  max-width: 640px;
  margin: 64px auto 0;
}
.wbs-decode--philosophy{
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 28px;
}
.philosophy-line{
  text-align: center;
  max-width: none;
  margin-top: 10px;
  font-size: 15px;
}
.philosophy-line strong{ color: var(--gold-bright); }

.scope-list{ margin-top: 8px; }
.scope-item{ padding: 64px 0; border-top: 1px solid var(--line); position: relative; }
.scope-item:first-child{ border-top: none; padding-top: 16px; }
.scope-num{
  font-family: var(--serif);
  color: var(--gold-dim);
  font-size: 14px;
  margin-bottom: 16px;
}
.scope-item .country-copy h3{
  font-size: 22px;
  margin-bottom: 12px;
}
.cta-strip{
  padding: 100px 0;
  text-align: left;
  border-top: 1px solid var(--line);
}
.cta-strip h2{ font-size: clamp(28px, 4vw, 46px); max-width: 16ch; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 48px var(--pad) 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer .foot-nav{ display: flex; gap: 28px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.site-footer .foot-meta{ font-size: 12px; color: var(--muted); display: flex; flex-direction: column; align-items: flex-end; gap: 6px; text-align: right; }
.foot-download{ color: var(--gold); border-bottom: 1px solid transparent; }
.foot-download:hover{ color: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .nav{ display: none; }
  .hero{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; aspect-ratio: 5/3; max-width: 100%; }
  .section-head{ grid-template-columns: 1fr; }
  .stats-row{ grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3){ border-left: none; }
  .directions{ grid-template-columns: 1fr; }
  .country-layout{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .hero--sub{ padding-top: 120px; }
  .geo-layout{ grid-template-columns: 1fr; }
  .geo-countries{ grid-template-columns: 1fr; }
  .team-row{ grid-template-columns: 1fr; }
  .member-card{ max-width: 420px; }
  .matrix{ grid-template-columns: 1fr; gap: 24px; }
  .team-stats{ grid-template-columns: repeat(2, 1fr); }
  .team-stats li:nth-child(odd){ border-left: none; }
}
@media (max-width: 560px){
  .stats-row{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Контакты ---------- */
.contact-countries{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.contact-country{
  border: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
}
.contact-country h3{
  font-size: 20px;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.contact-phone{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.messenger-row{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.messenger-link{
  border: 1px solid var(--gold-dim);
  color: var(--cream-dim);
  font-size: 13px;
  padding: 8px 14px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.messenger-link:hover{ border-color: var(--gold-bright); color: var(--gold-bright); }
.contact-note{ text-align: center; margin-top: 48px; }

.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.form-row{ display: flex; flex-direction: column; gap: 8px; }
.form-row--full{ grid-column: 1 / -1; }
.form-row label{ font-size: 13px; color: var(--cream-dim); }
.form-row input, .form-row textarea{
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.hp-field{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-row--full .btn{
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
}
.form-row--full .btn:hover{
  background: var(--gold);
  color: #100C08;
}
.form-status{
  margin-top: 16px;
  font-size: 14px;
  color: var(--gold-bright);
}
.form-status.is-error{ color: #d98b8b; }

@media (max-width: 980px){
  .contact-countries{ grid-template-columns: 1fr; }
  .contact-form{ grid-template-columns: 1fr; }
}

/* ---------- Единая кнопка связи (Контакты) ---------- */
.unified-contact{ text-align: center; padding: 24px 0; }
.messenger-toggle{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.messenger-toggle:hover{ background: var(--gold); color: #100C08; }
.messenger-toggle-icon{ font-size: 18px; }
.messenger-choices{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.messenger-choices[hidden]{ display: none; }
.messenger-link--lg{
  font-size: 15px;
  padding: 12px 24px;
}
.unified-contact .contact-note{ margin-top: 32px; text-align: center; }

.contact-email{ margin-top: 20px; text-align: center; font-size: 14px; color: var(--cream-dim); }
.contact-email a{ color: var(--gold); border-bottom: 1px solid transparent; }
.contact-email a:hover{ color: var(--gold-bright); border-color: var(--gold-bright); }
.form-email-hint{ margin-top: -12px; margin-bottom: 28px; font-size: 14px; color: var(--cream-dim); }
.form-email-hint a{ color: var(--gold); border-bottom: 1px solid transparent; }
.form-email-hint a:hover{ color: var(--gold-bright); border-color: var(--gold-bright); }
