:root {
  --ink: #0b1724;
  --navy: #163b70;
  --sea: #1a4f8a;
  --gold: #f29111;
  --gold-soft: #ffb347;
  --sand: #f3efe6;
  --mist: #e7eef4;
  --paper: #fbfaf7;
  --line: rgba(18, 48, 74, 0.14);
  --muted: #5b6b7a;
  --ok: #1f7a4d;
  --radius: 2px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(11, 23, 36, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(200, 150, 46, 0.12), transparent 60%),
    linear-gradient(180deg, #f7f4ee 0%, var(--paper) 42%, #eef3f7 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--gold); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; background: var(--ink); color: #fff;
  padding: .6rem 1rem; z-index: 1000; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(11,23,36,.08); background: rgba(251,250,247,.96); }
.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.header-tools {
  display: flex; align-items: center; gap: .65rem;
  order: 3;
}
.lang-switch {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .86rem; font-weight: 700; letter-spacing: .04em;
  color: var(--muted);
}
.lang-switch a {
  color: var(--navy); text-decoration: none; padding: .25rem .2rem;
}
.lang-switch a.is-active,
.lang-switch a:hover { color: var(--gold); }
.brand { display: flex; align-items: center; gap: .85rem; color: inherit; text-decoration: none; }
.brand img {
  width: auto; height: 58px; max-width: min(220px, 62vw);
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 1.25rem; flex: 1; justify-content: flex-end; order: 2; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; align-items: center; }
.site-nav > ul > li { position: relative; }
.site-nav a {
  display: inline-flex; padding: .55rem .7rem; color: var(--navy);
  text-decoration: none; font-size: .92rem; font-weight: 500;
}
.site-nav a.is-active, .site-nav a:hover { color: var(--gold); }
.site-nav .sub {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: .45rem; display: none; flex-direction: column; gap: .1rem;
}
.site-nav .has-sub:hover .sub,
.site-nav .has-sub:focus-within .sub { display: flex; }
.site-nav .sub a { font-size: .88rem; padding: .55rem .7rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* Floating call / WhatsApp — left & right, like constanta-termopane.ro */
.float-actions { position: fixed; inset: 0; pointer-events: none; z-index: 60; }
.float-btn {
  pointer-events: auto;
  position: fixed; bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: .7rem;
  min-height: 54px; padding: .55rem .85rem .55rem .55rem;
  border-radius: 999px; color: #fff; text-decoration: none;
  box-shadow: 0 14px 34px rgba(11, 23, 36, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 40px rgba(11, 23, 36, .34); }
.float-call { left: 1rem; background: linear-gradient(135deg, #163b70, #1a4f8a); }
.float-wa { right: 1rem; background: linear-gradient(135deg, #1faa59, #128c45); }
.float-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.16); flex: 0 0 auto;
}
.float-label { display: grid; line-height: 1.15; padding-right: .35rem; }
.float-label strong { font-size: .82rem; font-weight: 700; }
.float-label em { font-style: normal; font-size: .72rem; opacity: .9; }

@media (max-width: 640px) {
  .float-label { display: none; }
  .float-btn { padding: .45rem; min-height: 52px; border-radius: 50%; }
  .float-call { left: .75rem; }
  .float-wa { right: .75rem; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; padding: 0 1.15rem; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem;
  text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #1a1408; }
.btn-primary:hover { background: var(--gold-soft); color: #1a1408; }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-secondary:hover { background: #fff; color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--sea); color: #fff; }

.hero {
  position: relative; min-height: min(88vh, 760px);
  display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 28, 56, .88) 6%, rgba(22, 59, 112, .62) 42%, rgba(11, 28, 56, .28) 100%),
    image-set(
      url("/css/images/hero-home.webp") type("image/webp"),
      url("/css/images/hero-home.jpg") type("image/jpeg")
    ) center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-content {
  position: relative; z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 7.5rem 0 4.2rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: .92; font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 .85rem; max-width: 12ch;
  text-wrap: balance;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 500; max-width: 34ch; line-height: 1.45;
  color: rgba(255,255,255,.92);
}
.hero-lead {
  margin: 0 0 1.6rem; max-width: 42ch;
  color: rgba(255,255,255,.78); font-size: 1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}
.section-head { max-width: 46rem; margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; margin: 0 0 .7rem; color: var(--navy); font-weight: 700;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.eyebrow {
  display: inline-block; margin-bottom: .55rem;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.12; margin: 0 0 1rem; color: var(--navy);
}
.split-copy p { color: var(--muted); margin: 0 0 1rem; }
.split-media {
  position: relative; min-height: 360px; overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 360px;
  transition: transform .8s ease;
}
.split-media:hover img { transform: scale(1.04); }

.services-rail {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.service-link {
  display: block; padding: 1.35rem 1.2rem 1.2rem;
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  color: inherit; text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
}
.service-link:hover { border-color: var(--gold); transform: translateY(-3px); background: #fff; color: inherit; }
.service-link h3 {
  margin: 0 0 .45rem; font-family: var(--font-display);
  font-size: 1.55rem; color: var(--navy); font-weight: 700;
}
.service-link p { margin: 0; color: var(--muted); font-size: .94rem; }

.proof {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
.proof-item {
  padding: 1.1rem 1rem; border-top: 2px solid var(--gold);
  background: rgba(255,255,255,.55);
}
.proof-item strong {
  display: block; font-family: var(--font-display);
  font-size: 2rem; line-height: 1; color: var(--navy); margin-bottom: .35rem;
}
.proof-item span { color: var(--muted); font-size: .9rem; }

.band {
  background:
    linear-gradient(120deg, rgba(18,48,74,.94), rgba(26,74,107,.88)),
    url("/css/images/avantaje.jpg") center/cover;
  color: #fff; padding: 4rem 0; margin: 1rem 0;
}
.band-inner { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.band h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 0 0 1rem; max-width: 18ch; line-height: 1.1;
}
.band p { max-width: 48ch; color: rgba(255,255,255,.82); }
.band-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem;
  list-style: none; padding: 0;
}
.band-list li {
  padding: 1rem 1rem 1.1rem; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.band-list strong { display: block; margin-bottom: .35rem; color: var(--gold-soft); }

.news-block {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: stretch;
}
.news-copy {
  padding: 1.6rem; background: #fff; border: 1px solid var(--line);
}
.news-copy h2 {
  font-family: var(--font-display); font-size: 2.2rem; margin: 0 0 .8rem; color: var(--navy);
}
.news-copy h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: var(--ink); }
.news-media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

.page-hero {
  position: relative; min-height: 42vh; display: grid; align-items: end; color: #fff; overflow: hidden;
}
.page-hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,18,30,.88), rgba(8,18,30,.45)),
    var(--page-hero-image, image-set(
      url("/css/images/services.webp") type("image/webp"),
      url("/css/images/services.jpg") type("image/jpeg")
    )) center/cover no-repeat;
}
img, picture { max-width: 100%; height: auto; }
picture { display: contents; }
.split-media picture, .news-media picture, .news-thumb picture { display: block; }
.page-hero-content {
  position: relative; z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto; padding: 5.5rem 0 2.6rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05; margin: 0 0 .7rem; max-width: 16ch;
}
.page-hero p { margin: 0; max-width: 46ch; color: rgba(255,255,255,.82); }

.content-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto; padding: 3rem 0 4.5rem;
  display: grid; grid-template-columns: 1.4fr .75fr; gap: 2rem;
}
.content-main h2 {
  font-family: var(--font-display); font-size: 2rem; color: var(--navy);
  margin: 2rem 0 .8rem; line-height: 1.15;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 1.4rem 0 .5rem; color: var(--sea); font-size: 1.05rem; }
.content-main p, .content-main li { color: var(--muted); }
.content-main ul { padding-left: 1.1rem; }
.content-aside {
  position: sticky; top: 96px; align-self: start;
  padding: 1.25rem; background: #fff; border: 1px solid var(--line);
}
.content-aside h2 {
  font-family: var(--font-display); font-size: 1.55rem; margin: 0 0 .8rem; color: var(--navy);
}
.content-aside p, .content-aside li { color: var(--muted); font-size: .94rem; }
.content-aside .btn { width: 100%; margin-top: .6rem; }

.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.price-plan {
  padding: 1.4rem; background: #fff; border: 1px solid var(--line);
}
.price-plan h3 {
  font-family: var(--font-display); font-size: 1.7rem; margin: 0 0 .4rem; color: var(--navy);
}
.price-plan .amount {
  font-size: 1.15rem; font-weight: 700; color: var(--gold); margin: .8rem 0 1rem;
}
.price-plan ul { margin: 0; padding-left: 1rem; color: var(--muted); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.contact-panel, .contact-form-wrap {
  background: #fff; border: 1px solid var(--line); padding: 1.4rem;
}
.contact-panel h2, .contact-form-wrap h2 {
  font-family: var(--font-display); font-size: 1.8rem; margin: 0 0 1rem; color: var(--navy);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { display: grid; gap: .35rem; font-size: .85rem; color: var(--navy); font-weight: 500; }
.form-grid input, .form-grid textarea {
  width: 100%; border: 1px solid var(--line); background: var(--paper);
  padding: .75rem .8rem; font: inherit; color: var(--ink);
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: 2px solid rgba(200,150,46,.35); border-color: var(--gold);
}
.map-wrap iframe { width: 100%; min-height: 280px; border: 0; }

.faq details {
  border-bottom: 1px solid var(--line); padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: .7rem 0 0; color: var(--muted); }

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  font-size: .95rem;
}
.form-status.is-success {
  background: rgba(34,120,80,.1);
  color: #1f6b48;
  border: 1px solid rgba(34,120,80,.25);
}
.form-status.is-error {
  background: rgba(160,50,50,.08);
  color: #8a2f2f;
  border: 1px solid rgba(160,50,50,.22);
}
.captcha-row input { max-width: 8rem; }

.status-panel {
  width: min(640px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 1.8rem 2rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  text-align: center;
}
.status-panel.is-success { border-color: rgba(34, 120, 80, .28); }
.status-panel.is-error { border-color: rgba(160, 50, 50, .28); }
.status-icon {
  width: 3.2rem; height: 3.2rem; margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 999px; font-size: 1.4rem; font-weight: 700;
}
.status-panel.is-success .status-icon { background: rgba(34,120,80,.12); color: #1f6b48; }
.status-panel.is-error .status-icon { background: rgba(160,50,50,.12); color: #8a2f2f; }
.status-panel h2 {
  font-family: var(--font-display); font-size: 2rem; margin: 0 0 .7rem; color: var(--navy);
}
.status-panel p { margin: 0 auto .9rem; color: var(--muted); max-width: 42ch; }
.status-note { font-size: .95rem; }
.status-actions {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.4rem;
}

.site-footer {
  background: var(--ink); color: rgba(255,255,255,.78); margin-top: 2rem;
  padding: 3.2rem 0 1.4rem;
}
.footer-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 1.5rem;
}
.footer-logo {
  height: auto;
  width: min(200px, 100%);
  display: block;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.12));
}
.footer-wordmark {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .28rem .45rem;
  text-decoration: none;
  line-height: 1;
}
.footer-wordmark-sun {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--gold-soft);
}
.footer-wordmark-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: #fff;
}
.footer-wordmark:hover .footer-wordmark-sun { color: var(--gold); }
.footer-wordmark:hover .footer-wordmark-name { color: rgba(255,255,255,.92); }
.footer-tagline {
  margin: .45rem 0 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}
.footer-brand p { margin: .9rem 0 1rem; max-width: 34ch; }
.footer-brand > .footer-tagline + p { margin-top: .85rem; }
.footer-title {
  font-family: var(--font-display); font-size: 1.35rem; color: #fff;
  margin: 0 0 .8rem; font-weight: 600;
}
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a, .footer-contact a, .footer-social a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: .55rem; margin-top: 1rem; flex-wrap: wrap; align-items: center; }
.social-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  background: transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social .social-icon:hover,
.footer-social .social-icon:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.social-icon svg { display: block; fill: currentColor; }
.social-badge {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  pointer-events: none;
}
.footer-social .social-icon--expert:hover .social-badge,
.footer-social .social-icon--expert:focus-visible .social-badge {
  background: var(--gold-soft);
  color: #1a1408;
  border-color: rgba(255,255,255,.35);
}
.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .86rem; color: rgba(255,255,255,.55);
}

.reviews-section .section-head p {
  margin: .55rem 0 0;
  max-width: 52ch;
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  margin-top: 1.6rem;
}
.review-quote {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--gold);
}
.review-quote p {
  margin: 0 0 .85rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}
.review-quote footer {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  align-items: baseline;
  font-size: .88rem;
}
.review-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}
.review-quote footer span { color: var(--muted); }
.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.8rem 0 0;
}

/* Modern editorial reviews */
.reviews-band {
  margin: 1rem 0 0;
  padding: 4.2rem 0 4.6rem;
  background:
    linear-gradient(180deg, rgba(11, 23, 36, .03), transparent 28%),
    linear-gradient(135deg, #eef3f7 0%, #f7f4ee 55%, #ebe4d6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.reviews-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.reviews-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
  color: var(--navy);
  max-width: 14ch;
}
.reviews-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 36ch;
  justify-self: end;
}
.review-featured {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem 1.2rem;
  margin: 0 0 1.5rem;
  padding: 1.6rem 1.7rem 1.5rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 48, 74, .1);
  border-top: 3px solid var(--gold);
}
.review-mark {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 7rem);
  line-height: .7;
  color: var(--gold);
  font-weight: 600;
  user-select: none;
}
.review-featured-body p {
  margin: .35rem 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.28;
  color: var(--ink);
  font-weight: 500;
}
.review-featured footer,
.review-item footer {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.review-featured cite,
.review-item cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}
.review-featured footer span,
.review-item footer span {
  display: block;
  font-size: .86rem;
  color: var(--muted);
}
.review-stars {
  color: var(--gold);
  letter-spacing: .12em;
  font-size: .95rem;
  line-height: 1;
}
.review-stars--sm { font-size: .78rem; margin-bottom: .7rem; }
.review-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  flex: 0 0 auto;
}
.review-avatar--sm {
  width: 2rem;
  height: 2rem;
  font-size: .82rem;
}
.reviews-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.review-item {
  margin: 0;
  padding: 1.25rem 1.2rem 1.2rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18, 48, 74, .08);
  border-bottom: 2px solid rgba(242, 145, 17, .55);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.review-item:hover {
  transform: translateY(-3px);
  background: #fff;
  border-bottom-color: var(--gold);
}
.review-item p {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.55;
  min-height: 6.5em;
}
.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.9rem 0 0;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.page-links .pagination { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.page-links .pagination a, .page-links .pagination span {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff; color: var(--navy); text-decoration: none; padding: 0 .6rem;
}
.page-links .pagination .current, .page-links .pagination a:hover { border-color: var(--gold); color: var(--gold); }

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
.news-thumb {
  width: 160px; height: 120px; overflow: hidden; background: var(--mist);
  border: 1px solid var(--line);
}
.news-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.news-item h2 {
  font-family: var(--font-display); font-size: 1.45rem; margin: 0 0 .4rem; color: var(--navy);
}
.news-excerpt { margin: 0 0 .6rem; color: var(--muted); font-size: .92rem; }
.news-date { margin: 0 0 .7rem; color: var(--muted); font-size: .85rem; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; }
  .news-thumb { width: 100%; height: 180px; }
}

@media (max-width: 960px) {
  .brand img { height: 46px; max-width: min(190px, 52vw); }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: fixed; inset: 76px 0 auto 0; background: rgba(251,250,247,.98);
    border-bottom: 1px solid var(--line); padding: 1rem;
    display: none; flex-direction: column; align-items: stretch; gap: .8rem;
    justify-content: flex-start; order: 4;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav .sub { position: static; display: flex; box-shadow: none; border: 0; background: transparent; padding-left: .6rem; }
  .header-tools { margin-left: auto; }
  .split, .split.reverse, .services-rail, .proof, .band-list, .news-block, .content-wrap, .pricing, .contact-grid, .footer-grid, .form-grid, .reviews-grid, .reviews-rail, .reviews-head, .review-featured {
    grid-template-columns: 1fr;
  }
  .reviews-lead { justify-self: start; }
  .review-item p { min-height: 0; }
  .review-mark { display: none; }
  .content-aside { position: static; }
  .hero-content { padding-top: 6rem; }
}
