/* =========================================================
   IRUMVA C GRIDSTONE — Stylesheet
   Design system: dark navy dominance + gold accent
   ========================================================= */

:root {
  /* Brand palette */
  --navy:       #0D1B2A;
  --navy-2:     #0F2236;
  --navy-3:     #15293F;
  --gold:       #D4AF37;
  --gold-soft:  #E8C766;
  --gold-deep:  #9C7B1F;
  --grey:       #8C8C8C;
  --light:      #E6E6E6;
  --white:      #FFFFFF;

  /* Functional */
  --bg:         var(--white);
  --ink:        var(--navy);
  --ink-soft:   #475467;
  --rule:       rgba(13, 27, 42, 0.10);
  --rule-light: rgba(255, 255, 255, 0.12);

  /* Type */
  --display: 'Montserrat', system-ui, sans-serif;
  --body:    'Raleway', system-ui, sans-serif;

  /* Spacing & rhythm */
  --container: 1280px;
  --gutter:    clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);

  /* Motion */
  --ease:   cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Radii & shadow */
  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-soft: 0 14px 40px rgba(13, 27, 42, .08);
  --shadow-hard: 0 30px 80px rgba(13, 27, 42, .35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--navy); }

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Override container left/right padding when nested */
.container .container { padding-inline: 0; width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--gold); }

.text--gold { color: var(--gold); }

.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__title--light { color: var(--white); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section__head--centered {
  grid-template-columns: 1fr;
  text-align: center;
  margin-inline: auto;
  max-width: 760px;
}
.section__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
  margin-left: auto;
}
.section__head:has(.section__title--light) .section__sub { color: rgba(255,255,255,.72); }

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; }
  .section__sub { margin-left: 0; max-width: 60ch; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(212, 175, 55, .55); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover { background: transparent; color: var(--navy); }

.btn--lg { padding: 20px 36px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: #08111C;
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 42px; gap: 20px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { color: var(--gold); }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,.15); }

@media (max-width: 768px) {
  .topbar__right, .topbar__hours { display: none; }
  .topbar__left { gap: 14px; flex-wrap: wrap; font-size: 11px; }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 27, 42, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.nav.is-scrolled { background: rgba(8, 17, 28, .98); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 24px;
}

.nav__brand { display: flex; align-items: center; }
.nav__logoH {
  height: 56px;
  width: auto;
  display: block;
  /* Source has dark navy background — blend it into nav surround */
  mix-blend-mode: lighten;
}
.is-scrolled .nav__logoH { height: 50px; transition: height .35s var(--ease); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { padding: 13px 22px; font-size: 12px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); background: var(--gold); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); background: var(--gold); }

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

@media (max-width: 480px) {
  .nav__inner { min-height: 70px; }
  .nav__logoH { height: 44px; }
  .is-scrolled .nav__logoH { height: 40px; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 84px 0 0;
  background: var(--navy);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.08) 0, transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(212,175,55,.04) 0, transparent 50%);
  z-index: 99;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__inner {
  padding: 40px var(--gutter) 60px;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu__link {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .25s var(--ease), padding .25s var(--ease);
}
.mobile-menu__link:hover { color: var(--gold); padding-left: 12px; }
.mobile-menu__cta { margin-top: 30px; justify-content: center; }
.mobile-menu__contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.mobile-menu__contact p { padding: 6px 0; }

body.is-locked { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 9vw, 140px);
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
}

.hero__hex {
  position: absolute;
  width: 540px; height: 540px;
  border: 1px solid rgba(212, 175, 55, .14);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  pointer-events: none;
}
.hero__hex--1 { top: -160px; right: -120px; transform: rotate(15deg); }
.hero__hex--2 { bottom: -200px; left: -180px; width: 720px; height: 720px; border-color: rgba(212, 175, 55, .07); transform: rotate(-22deg); }

.hero__glow {
  position: absolute;
  top: 30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, .15) 0%, transparent 60%);
  filter: blur(40px);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.hero__line { width: 40px; height: 1px; background: var(--gold); }

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 9vw, 124px);
  line-height: .95;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}
.hero__title span { display: block; }
.hero__title--gold { color: var(--gold); font-style: italic; font-weight: 800; }

.hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero__lede strong { color: var(--white); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 70px; }

.hero__meta { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 60px); align-items: stretch; }
.hero__metaItem {
  display: flex; flex-direction: column;
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.hero__metaItem:first-child { border-left-color: var(--gold); }
.hero__metaNum {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__metaNum sup { color: var(--gold); font-size: .55em; vertical-align: super; }
.hero__metaLbl {
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Hero card */
.hero__card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  transform: rotate(1.5deg);
  transition: transform .6s var(--ease);
}
.hero__card:hover { transform: rotate(0deg) translateY(-4px); }

.hero__cardTop {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__cardLabel {
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero__cardYear {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.hero__cardImg { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hero__cardImg img { width: 100%; height: 100%; object-fit: cover; }
.hero__cardOverlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 27, 42, .8) 100%);
}
.hero__cardBadge {
  position: absolute; bottom: 16px; right: 16px;
  width: 52px; height: 52px;
  background: var(--navy);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  padding: 6px;
}
.hero__cardBadge img { width: 100%; height: 100%; }

.hero__cardBody { padding: 24px 22px 26px; }
.hero__cardBody h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.hero__cardBody > p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.hero__cardStats {
  display: flex; gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__cardStats span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}
.hero__cardStats strong {
  font-family: var(--display);
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  z-index: 3;
}
.hero__scrollLine {
  width: 1px; height: 50px; background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(.4); transform-origin: top; }
  50% { transform: scaleY(1); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 480px; transform: rotate(0); }
  .hero__scroll { display: none; }
}
@media (max-width: 540px) {
  .hero__meta { gap: 18px; }
  .hero__metaItem { padding-left: 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; padding: 18px 22px; font-size: 12.5px; }
  .hero__actions .btn--lg { padding: 18px 22px; font-size: 12.5px; }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  background: #08111C;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.trust__label {
  text-align: center;
  font-size: 11.5px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 28px;
}
.trust__item {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.75);
  transition: color .3s var(--ease);
}
.trust__item:hover { color: var(--gold); }
.trust__dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .5;
}
@media (max-width: 768px) {
  .trust__dot { display: none; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: var(--section-y) 0;
  background: var(--white);
  position: relative;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about__media { position: relative; min-height: 540px; }
.about__imgWrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__imgWrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05);
  transition: transform 1s var(--ease);
}
.about__imgWrap:hover img { transform: scale(1.05); }

.about__imgBadge {
  position: absolute; top: 24px; left: 24px;
  width: 130px; height: 130px;
  background: var(--gold);
  color: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.about__imgYears {
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
}
.about__imgYearsLbl {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

.about__imgSecond {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 55%;
  aspect-ratio: 4/3;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.about__imgSecond img { width: 100%; height: 100%; object-fit: cover; }

.about__imgQuote {
  position: absolute;
  top: 35%;
  left: -40px;
  width: 240px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-hard);
  z-index: 2;
}
.about__imgQuote svg { margin-bottom: 12px; }
.about__imgQuote p {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
  letter-spacing: -.005em;
  margin-bottom: 12px;
}
.about__imgQuote span {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.about__lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 28px 0 36px;
  max-width: 56ch;
}
.about__lede strong { color: var(--ink); font-weight: 600; }

.about__points {
  list-style: none;
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 40px;
}
.about__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.about__points li:last-child { border-bottom: 1px solid var(--rule); }

.about__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold-deep);
  padding-top: 4px;
}
.about__points h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.about__points p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__media { min-height: auto; margin-bottom: 80px; max-width: 540px; }
  .about__imgWrap { aspect-ratio: 4/4; }
  .about__imgQuote { left: 10px; }
}
@media (max-width: 540px) {
  .about__imgWrap { aspect-ratio: 4/3; }
  .about__imgQuote { display: none; }
  .about__imgSecond { right: 0; bottom: -40px; width: 60%; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}
.services > .container { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.08);
}

.service {
  position: relative;
  padding: 48px 36px 44px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .4s var(--ease);
  cursor: default;
  isolation: isolate;
}
.service::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .4s var(--ease);
}
.service:hover { background: rgba(212, 175, 55, .04); }
.service:hover::before { width: 100%; }

.service__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}
.service__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gold);
  margin-bottom: 26px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.service__icon svg { width: 26px; height: 26px; }
.service:hover .service__icon { border-color: var(--gold); background: rgba(212,175,55,.05); }

.service h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  color: var(--white);
}
.service p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  margin-bottom: 26px;
}
.service__link {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  transition: letter-spacing .3s var(--ease);
}
.service__link:hover { letter-spacing: .2em; }

.service--featured { background: rgba(212, 175, 55, .03); }

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { padding: 40px 28px; }
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  background: var(--gold);
  color: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 30px, rgba(13,27,42,.04) 30px 60px);
}
.stats__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat {
  display: flex; flex-direction: column; align-items: flex-start;
  border-left: 2px solid var(--navy);
  padding-left: 22px;
}
.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.stat__plus {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  vertical-align: super;
  margin-left: 4px;
  color: var(--navy);
}
.stat__lbl {
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-top: 10px;
}
@media (max-width: 760px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}

/* =========================================================
   PROJECTS
   ========================================================= */
.projects {
  padding: var(--section-y) 0;
  background: var(--light);
  position: relative;
}

.projects__filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 50px;
}
.chip {
  padding: 11px 22px;
  background: transparent;
  border: 1px solid rgba(13, 27, 42, .15);
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--navy); }
.chip.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  grid-auto-flow: dense;
  gap: 18px;
}

.project {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.project--tall { grid-row: span 2; }
.project--wide { grid-column: span 2; }

.project.is-hidden { display: none; }

.project__media { position: relative; width: 100%; height: 100%; min-height: 280px; }
.project__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
  filter: brightness(.85) contrast(1.05);
}
.project:hover .project__media img { transform: scale(1.06); filter: brightness(.4) contrast(1.05); }

.project__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.project:hover .project__overlay { opacity: 1; }

.project__meta { color: var(--white); transform: translateY(20px); transition: transform .5s var(--ease); }
.project:hover .project__meta { transform: translateY(0); }
.project__meta > span:first-child {
  display: block;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.project__meta h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.project__meta p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin-bottom: 20px;
  max-width: 40ch;
}
.project__cta {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.project__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(13,27,42,.92));
  color: var(--white);
  display: flex; justify-content: space-between; align-items: end;
  transition: opacity .3s var(--ease);
}
.project:hover .project__cap { opacity: 0; }
.project__cap h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.project__cap span {
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}
.project__year {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px !important;
  color: var(--gold) !important;
  letter-spacing: .1em !important;
}

.projects__more { display: flex; justify-content: center; margin-top: 50px; }

@media (max-width: 980px) {
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .project--tall { grid-row: span 1; }
  .project--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .projects__grid { grid-template-columns: 1fr; }
  .project--wide { grid-column: span 1; }
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  padding: var(--section-y) 0;
  background: var(--navy-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0, transparent 60%);
  filter: blur(60px);
}

.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.process__step {
  position: relative;
  padding: 0 30px 30px 0;
}
.process__num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  letter-spacing: -.04em;
  margin-bottom: 26px;
}
.process__line {
  position: absolute;
  top: 36px; left: 80px; right: -10px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.process__step:last-child .process__line { display: none; }

.process__step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  color: var(--white);
}
.process__step p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 32ch;
}

@media (max-width: 980px) {
  .process__list { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .process__line { display: none; }
}
@media (max-width: 540px) {
  .process__list { grid-template-columns: 1fr; gap: 40px; }
  .process__num { font-size: 52px; margin-bottom: 18px; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi {
  padding: var(--section-y) 0;
  background: var(--white);
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.quote {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 38px 32px 34px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.quote:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(212, 175, 55, .3);
}
.quote svg { margin-bottom: 22px; }
.quote blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -.005em;
  color: var(--ink);
  margin-bottom: 28px;
  flex-grow: 1;
}
.quote figcaption { padding-top: 22px; border-top: 1px solid var(--rule); }
.quote figcaption strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.quote figcaption span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.quote--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.quote--featured blockquote { color: var(--white); }
.quote--featured figcaption { border-color: rgba(255,255,255,.12); }
.quote--featured figcaption strong { color: var(--white); }
.quote--featured figcaption span { color: rgba(255,255,255,.6); }

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

/* =========================================================
   CTA STRIP
   ========================================================= */
.ctaStrip {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ctaStrip__inner {
  text-align: center;
  padding: clamp(70px, 9vw, 110px) var(--gutter);
  position: relative;
  z-index: 1;
}
.ctaStrip__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,.18), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,.1), transparent 50%);
  filter: blur(40px);
}
.ctaStrip h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.ctaStrip p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: var(--section-y) 0;
  background: var(--white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 26px 0 38px;
  max-width: 50ch;
}
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.contact__details li { display: flex; align-items: center; gap: 18px; }
.contact__details .contact__icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, .15);
  border-radius: 4px;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.contact__details .contact__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.08) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.contact__details .contact__icon svg { position: relative; z-index: 1; display: block; color: inherit; stroke: currentColor; }
.contact__details li:hover .contact__icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.contact__lbl {
  display: block;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact__details a, .contact__details span:not(.contact__lbl):not(.contact__icon) {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.contact__details a:hover { color: var(--gold-deep); }

/* Form */
.contact__form {
  background: var(--navy);
  padding: 44px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact__form::before {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,.15), transparent 60%);
  filter: blur(30px);
}
.contact__formHead {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.contact__formHead h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.01em;
}
.contact__formHead span {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.contact__formHead strong { color: var(--gold); }

.field { display: block; margin-bottom: 20px; position: relative; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 12px 0;
  font-size: 15px;
  color: var(--white);
  font-family: var(--body);
  transition: border-color .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='2' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field select option { background: var(--navy); color: var(--white); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-bottom-color: #E66; }

.contact__formNote {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}
.contact__success {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(212,175,55,.1);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 14px;
  line-height: 1.6;
}
.contact__success strong { color: var(--gold); margin-right: 4px; }

@media (max-width: 980px) {
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .contact__form { padding: 36px 26px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #08111C;
  color: rgba(255,255,255,.65);
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 60px;
}
.footer__brand p, .footer__brand .footer__lede {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 22px 0 28px;
  max-width: 38ch;
}
.footer__logo { display: flex; align-items: center; }
.footer__logoH {
  height: 64px;
  width: auto;
  display: block;
  max-width: 100%;
  mix-blend-mode: lighten;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  transition: all .3s var(--ease);
}
.footer__social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer__col h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 22px; height: 2px;
  background: var(--gold);
}
.footer__col a, .footer__col span {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .25s var(--ease), padding .25s var(--ease);
}
.footer__col a:hover { color: var(--gold); padding-left: 6px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.footer__bottomInner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--gold); }
.footer__sig {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
}

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottomInner { justify-content: center; text-align: center; }
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.toTop {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all .35s var(--ease);
  box-shadow: 0 10px 24px -8px rgba(212,175,55,.5);
}
.toTop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toTop:hover { background: var(--gold-soft); transform: translateY(-3px); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out) var(--d, 0s), transform .9s var(--ease-out) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   IMAGE FAIL FALLBACKS
   When an image src fails (broken URL, hotlink block, etc.),
   the wrapper gets `.img-fail` and shows a styled placeholder
   so the design never looks "broken".
   ========================================================= */
.hero__cardImg,
.about__imgWrap,
.about__imgSecond,
.project__media {
  /* Always have a tasteful navy fallback behind any image. */
  background-color: #0D1B2A;
  background-image:
    linear-gradient(135deg, rgba(212,175,55,.10) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(212,175,55,.06) 0%, transparent 60%);
}
.img-fail {
  position: relative;
  background-color: #0D1B2A;
  background-image:
    linear-gradient(135deg, rgba(212,175,55,.18) 0%, rgba(13,27,42,1) 60%),
    repeating-linear-gradient(
      45deg,
      transparent 0 28px,
      rgba(212,175,55,.04) 28px 29px
    );
}
.img-fail::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 90,28 90,72 50,95 10,72 10,28' fill='none' stroke='%23D4AF37' stroke-width='2.5'/><path d='M35 35 L35 70 L42 70 L42 50 L52 50 L52 70 L65 70 L65 35 L52 35 L52 45 L42 45 L42 35 Z' fill='%23D4AF37' opacity='0.7'/></svg>") center/contain no-repeat;
  opacity: .55;
}

/* =========================================================
   ACCESSIBILITY UTILITIES
   ========================================================= */
.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;
  top: -100px; left: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  z-index: 1000;
  border-radius: 4px;
  transition: top .2s var(--ease);
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* =========================================================
   FAQ SECTION
   Answer-Engine-Optimized: visible Q&A list with proper
   semantic markup (details/summary + Schema.org microdata)
   ========================================================= */
.faq {
  padding: var(--section-y) 0;
  background: var(--bg);
  position: relative;
}
.faq__inner { max-width: 880px; margin-inline: auto; }
.faq__list {
  margin-top: clamp(40px, 6vw, 70px);
  display: flex; flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, .08);
  border-left: 3px solid var(--gold);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.faq__item:hover {
  border-color: rgba(212, 175, 55, .35);
  border-left-color: var(--gold-deep);
  box-shadow: 0 8px 24px -12px rgba(13, 27, 42, .15);
  transform: translateY(-1px);
}
.faq__item[open] {
  border-left-color: var(--gold-deep);
  box-shadow: 0 12px 28px -14px rgba(13, 27, 42, .18);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  user-select: none;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '';
  flex-shrink: 0;
  width: 28px; height: 28px;
  background:
    linear-gradient(var(--gold), var(--gold)) center/14px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/2px 14px no-repeat,
    var(--navy);
  border-radius: 50%;
  transition: transform .35s var(--ease), background-color .25s var(--ease);
}
.faq__item[open] .faq__q::after {
  transform: rotate(135deg);
}
.faq__a {
  padding: 0 26px 26px 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  animation: faqOpen .35s var(--ease-out);
}
.faq__a p { margin: 0; }
.faq__a strong { color: var(--ink); font-weight: 600; }
.faq__a a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid rgba(156, 123, 31, .3); transition: border-color .2s var(--ease); }
.faq__a a:hover { border-bottom-color: var(--gold-deep); }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 540px) {
  .faq__q { padding: 18px 20px; font-size: 14.5px; gap: 14px; }
  .faq__q::after { width: 26px; height: 26px; }
  .faq__a { padding: 0 20px 22px 20px; font-size: 14.5px; }
}
