
h1, h2, h3{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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


:root{
  /* Blue + Orange palette (calm + warm) */
  --brand-blue: #1e5aa8;
  --brand-blue-dark: #184a88;
  --brand-orange: #f47c20;
  --brand-orange-dark: #d66512;

  --ink: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;

  --bg: #ffffff;
  --bg-soft: #f4f8ff;         /* soft blue tint */
  --bg-warm: #fff4ea;         /* soft orange tint */
  --card: #ffffff;

  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.10);

  --max-width: 1120px;

  --radius-lg: 22px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.nav-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img{ height:110px; width:auto; }

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

nav a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--yellow);
}

.nav-cta {
  display: none;
}

/* Buttons */

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.btn-outline {
  border: 1px solid #e2e8f0;
  background-color: transparent;
  color: #0f172a;
}

.btn-outline-dark {
  border-color: #cbd5e1;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  padding: 0 1rem 2.6rem;
  gap: 2rem;
  align-items: center;
}

.hero-media img {
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 32rem;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #4b5563;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.hero-footnote {
  font-size: 0.87rem;
  color: var(--muted);
}

/* Sections base */

section {
  padding: 2.8rem 1rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.section-intro {
  color: #4b5563;
  font-size: 0.98rem;
  max-width: 38rem;
}

/* About */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.about-text p {
  margin-bottom: 0.9rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.about-list {
  list-style: none;
  margin-top: 0.4rem;
}

.about-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
  color: #4b5563;
}

.about-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.about-card {
  border-radius: 1.1rem;
  background-color: #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.about-card-body {
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.9rem;
  color: #475569;
}

.about-card-body strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.pill {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background-color: #e2e8f0;
  color: #0f172a;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.service-card {
  border-radius: 0.95rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #e5e7eb;
}

.service-content {
  padding: 0.9rem 1rem 1rem;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.service-body {
  font-size: 0.9rem;
  color: #4b5563;
}

.service-note {
  margin-top: 1.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background-color: #fef9c3;
  font-size: 0.85rem;
  color: #713f12;
}

/* Testimonial */

.testimonial {
  margin-top: 1.8rem;
  border-radius: 1rem;
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 1.4rem 1.5rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  font-size: 4rem;
  color: rgba(148, 163, 184, 0.25);
  top: -1.1rem;
  left: 0.6rem;
}

.testimonial-footer {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* Contact */

.contact-section {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.contact-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.2rem 1.3rem 1.35rem;
  border: 1px solid #e2e8f0;
}

.contact-card-media {
  padding: 0.4rem;
}

.contact-image {
  border-radius: 0.9rem;
  height: 100%;
  object-fit: cover;
}

.contact-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.contact-details {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.contact-details a {
  color: var(--blue);
  font-weight: 600;
}

.contact-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background-color: #e0f2fe;
  color: #0f172a;
}

form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

label {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.1rem;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background-color: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-helper {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: -0.2rem;
  margin-bottom: 0.4rem;
}

.btn-submit {
  justify-content: center;
  width: fit-content;
}

/* Footer */

footer {
  border-top: 1px solid #e2e8f0;
  padding: 1.25rem 1rem 1.5rem;
  font-size: 0.8rem;
  background-color: white;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: #6b7280;
}

.non-medical-note {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  nav ul {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1rem;
  }

  .hero-media {
    order: -1;
  }

  .two-column,
  .services-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  section {
    padding: 2.4rem 1rem;
  }

  .hero {
    padding-bottom: 2.2rem;
  }

  .service-card {
    border-radius: 0.8rem;
  }

  .contact-card {
    padding: 1.05rem 1.1rem 1.15rem;
  }
}



/* ---------- Quiet-water style overrides ---------- */

header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.logo-img{ height:110px; width:auto; }

.nav-desktop ul{
  list-style:none;
  display:flex;
  gap: 22px;
  margin:0;
  padding:0;
}

.nav-desktop a{
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover{
  border-bottom-color: var(--muted);
  text-decoration: none;
}

.nav-cta{
  display: inline-flex;
}

.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  align-items:center;
  justify-content:center;
  gap: 5px;
}

.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.nav-mobile{
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 14px 18px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.nav-mobile a{
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
}

.nav-mobile a:hover{
  background: var(--bg-soft);
  text-decoration:none;
}

.nav-mobile-cta{
  margin-top: 6px;
  justify-content: center;
}

/* Buttons */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.0);
  background: linear-gradient(135deg, #334155, var(--brand-blue-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(30, 90, 168, 0.22);
  cursor:pointer;
}

.btn-primary:hover{
  filter: brightness(0.98);
  text-decoration:none;
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  color: var(--ink);
  font-weight: 700;
}

.btn-outline-dark{
  border-color: rgba(15, 23, 42, 0.18);
}

.btn-outline:hover{
  background: var(--bg-soft);
  text-decoration:none;
}

/* Hero */
.hero{
  position: relative;
  min-height: 72vh;
  display:flex;
  align-items: stretch;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(244, 124, 32, 0.12), transparent 60%),
              radial-gradient(900px 600px at 85% 20%, rgba(30, 90, 168, 0.14), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.03);
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.84) 35%,
    rgba(255,255,255,0.30) 65%,
    rgba(255,255,255,0.12) 100%);
}

.hero-inner{
  position:relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 18px 72px;
  display:flex;
  align-items:center;
}

.hero-content{
  max-width: 640px;
}

.hero-kicker{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
  color: var(--brand-orange-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  margin: 0 0 14px;
}

.hero h1{
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 12px;
}

.hero-subtitle{
  font-size: 1.08rem;
  color: var(--text);
  max-width: 56ch;
  margin: 0 0 20px;
}

.hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 18px;
}

.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.trust-item{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  font-weight: 600;
  color: var(--ink);
}

/* Sections */
.section{
  padding: 68px 0;
}

.section-alt{
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(255,255,255,1) 70%);
}

.section-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
}

.section-header{
  max-width: 820px;
  margin-bottom: 26px;
}

.section-kicker{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 90, 168, 0.10);
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title{
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 1.18;
}

.section-intro{
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* About */
.two-column{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 26px;
  align-items:start;
}

.value-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  padding: 14px 14px;
}

.value-card h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.value-card p{
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.about-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-card-body{
  padding: 16px 16px 18px;
}

.card-title{
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.note{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(244, 124, 32, 0.10);
  border: 1px solid rgba(244, 124, 32, 0.20);
  color: var(--ink);
  font-weight: 600;
}

/* Cards / services */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.12);
}

.service-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-body{
  padding: 14px 14px 16px;
}

.card-body h3{
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.card-body p{
  margin: 0;
  color: var(--muted);
}

/* Process */
.process{
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  padding: 18px;
}

.process-header h3{
  margin: 0 0 2px;
  font-size: 1.25rem;
}

.process-header p{
  margin: 0 0 14px;
  color: var(--muted);
}

.process-steps{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-steps li{
  display:flex;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  background: #fff;
}

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(30, 90, 168, 0.12);
  border: 1px solid rgba(30, 90, 168, 0.25);
  font-weight: 800;
  color: var(--brand-blue-dark);
  flex: 0 0 34px;
}

/* Quotes */
.quote-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.quote-card blockquote{
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--ink);
}

.quote-card figcaption{
  color: var(--muted);
  font-weight: 600;
}

.small-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items:start;
}

.contact-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-lead{
  margin-top: 6px;
  color: var(--muted);
}

.contact-details{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  color: var(--text);
}

.contact-form{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  padding: 18px;
  box-shadow: var(--shadow);
}

label{
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #fff;
  font: inherit;
}

input:focus, textarea:focus{
  outline: 3px solid rgba(244, 124, 32, 0.22);
  border-color: rgba(244, 124, 32, 0.35);
}

.form-row{ margin-bottom: 12px; }
.form-row.two{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-footnote{
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Footer */
footer{
  padding: 32px 18px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.footer-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  gap: 16px;
  align-items:flex-start;
}

.footer-brand{
  max-width: 520px;
}

.footer-brand p{
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 980px){
  .cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-column{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: 1fr; }
  .quote-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav-desktop{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .nav-cta{ display:none; }
  .hero-inner{ padding-top: 84px; }
  .hero-media::after{
    background: linear-gradient(180deg,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.78) 45%,
      rgba(255,255,255,0.26) 100%);
  }
}



/* --- Quiet Water close-match layout --- */
.qw-hero{
  padding: 56px 0 10px;
  background: #fff;
}
.qw-hero-grid{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}
.qw-hero-copy h1{
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  line-height: 1.05;
}
.qw-hero-copy .lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}
.qw-hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.qw-hero-features{
  display: grid;
  gap: 14px;
}
.qw-feature{
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,0.07);
}
.qw-feature-title{
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(255,255,255,0.75);
}
.qw-feature img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.qw-feature::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.25));
}
.qw-feature:hover{ transform: translateY(-1px); }

.qw-section{ padding: 64px 0; }
.qw-section-alt{ background: var(--bg-soft); }
.qw-h2{ margin: 0 0 14px; }
.qw-h3{ margin: 0 0 10px; font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }

.qw-split{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}
.qw-split-reverse{ grid-template-columns: 0.95fr 1.05fr; }
.qw-card-img{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
  background: #fff;
}
.qw-card-img img{ width:100%; height: 320px; object-fit: cover; display:block; }

.qw-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
}
.qw-bullets li{ margin: 8px 0; }

.qw-copy .qw-body{ margin: 0 0 12px; color: var(--text); }

.qw-steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.qw-step{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}
.qw-step-num{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(30, 90, 168, 0.10);
  border: 1px solid rgba(30, 90, 168, 0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--brand-blue-dark);
  margin-bottom: 10px;
}
.qw-step h3{ margin: 0 0 6px; font-size: 1.05rem; }
.qw-step p{ margin: 0; color: var(--muted); }

.qw-cta-row{ margin: 18px 0 8px; }

.qw-why{
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.qw-why-list{ margin: 8px 0 0; padding-left: 18px; }
.qw-why-list li{ margin: 8px 0; }

.qw-services{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.qw-service{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}
.qw-service h3{
  margin: 0;
  padding: 14px 14px 10px;
  font-size: 1.05rem;
}
.qw-service img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display:block;
}

.qw-testimonial{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
  padding: 18px;
  max-width: 980px;
}
.qw-testimonial p{ margin: 0 0 10px; color: var(--ink); font-weight: 600; }
.qw-testimonial-sig{ color: var(--muted); font-weight: 700; }

@media (max-width: 980px){
  .qw-hero-grid{ grid-template-columns: 1fr; }
  .qw-split, .qw-split-reverse{ grid-template-columns: 1fr; }
  .qw-steps{ grid-template-columns: 1fr; }
  .qw-services{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qw-card-img img{ height: 260px; }
}
@media (max-width: 520px){
  .qw-services{ grid-template-columns: 1fr; }
}



/* --- Nav fixes: prevent mobile menu showing on desktop --- */
.nav-mobile{ display:none; }
.nav-mobile[hidden]{ display:none !important; }
body.menu-open .nav-mobile{ display:flex; }
@media (max-width: 820px){
  body.menu-open .nav-mobile{ display:flex; }
}

/* Bigger logo in header */
.logo-img{ height:110px; width:auto; }
@media (max-width: 820px){
  .logo-img{ height:110px; width:auto; }
}


/* ---- Contact form final polish (single-column stacked) ---- */
.contact-form--stacked {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 14px;
}

.contact-form--stacked label {
  display: block;
  font-weight: 700;
  margin: 0 0 6px 2px;
}

.contact-form--stacked input,
.contact-form--stacked textarea {
  width: 100%;
  box-sizing: border-box;
}

.contact-form--stacked textarea {
  min-height: 140px;
  resize: vertical;
}

/* Ensure button spans full width on all screens */
.contact-form--stacked button,
.contact-form--stacked .btn,
.contact-form--stacked input[type="submit"] {
  width: 100%;
}

/* If the page has a fixed header, ensure anchors don't hide under it */
:root { --sticky-header-offset: 88px; }
section[id] { scroll-margin-top: var(--sticky-header-offset); }


/* ---- Header logo visibility ---- */
header img,
.navbar img,
.site-header img {
  max-height: 78px !important;
  width: auto;
}
@media (max-width: 768px) {
  header img,
  .navbar img,
  .site-header img {
    max-height: 64px !important;
  }
}


/* ---- Contact form final layout polish ---- */
.contact-form--stacked {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form--stacked label {
  font-weight: 700;
}

.contact-form--stacked input,
.contact-form--stacked textarea {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form--stacked textarea {
  min-height: 150px;
}

.contact-form--stacked button {
  margin-top: 8px;
  height: 48px;
  font-size: 16px;
}

/* ---- Fixed header CTA: Free Consultation + Call button ---- */
.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-right:12px;
}
.header-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  background: rgba(40, 52, 111, 0.10);
  border: 1px solid rgba(40, 52, 111, 0.18);
  white-space:nowrap;
}
.header-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
  border: 1px solid rgba(40, 52, 111, 0.25);
}
@media (max-width: 768px){
  .header-cta{gap:8px; margin-right:8px;}
  .header-badge{display:none;}
  .header-call{padding:10px 12px; font-size:14px;}
}

/* =========================
   Premium polish overrides
   ========================= */

/* Header: glass + shadow on scroll */
header{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 52, 111, 0.08);
  transition: box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}
header.is-scrolled{
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.10);
  border-bottom-color: rgba(40, 52, 111, 0.12);
}

.nav-wrapper{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo-img{ height:110px; width:auto; }

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-left: auto;
}

.header-badge{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  background: rgba(40, 52, 111, 0.08);
  border: 1px solid rgba(40, 52, 111, 0.14);
  white-space: nowrap;
}

.btn-call{
  font-weight: 900;
}

/* Make the primary CTA feel premium */
.btn-primary{
  box-shadow: 0 10px 22px rgba(40, 52, 111, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(40, 52, 111, 0.20);
}
.btn-outline{
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn-outline:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

/* Services: consistent image crop + hover lift */
.service-card img,
.card img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}
.service-card,
.card{
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.service-card:hover,
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.10);
}

/* Contact form: tighten alignment */
.contact-form--stacked{
  max-width: 560px;
}
.contact-form--stacked input,
.contact-form--stacked textarea{
  border: 1px solid rgba(17, 24, 39, 0.14);
}
.contact-form--stacked input:focus,
.contact-form--stacked textarea:focus{
  outline: none;
  border-color: rgba(40, 52, 111, 0.55);
  box-shadow: 0 0 0 4px rgba(40, 52, 111, 0.12);
}

/* Mobile header fit */
@media (max-width: 768px){ .logo-img{ height:86px; width:auto; } }
  .header-badge{ display:none; }
  .header-actions{ gap: 8px; }
  .btn-quote{ padding-left: 1.05rem; padding-right: 1.05rem; }
  .btn-call{ display:none; } /* keep header clean on mobile */
  .nav-mobile-call{ display:inline-flex; margin-top: 10px; width: 100%; justify-content:center; }
}

/* ---- Hero section ---- */
.hero{
  padding: 2.5rem 1rem 1.75rem;
}
.hero-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1{
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}
.hero-sub{
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 0 1.25rem;
}
.hero-cta{
  display:flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-media{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(17,24,39,0.14);
}
.hero-media img{
  width:100%;
  height:auto;
  display:block;
}
.hero-trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.75rem;
}
.trust-item{
  display:flex;
  align-items:flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,0.10);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}
.trust-icon{
  display:inline-flex;
  width: 28px;
  height: 28px;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  font-weight: 900;
  background: rgba(40, 52, 111, 0.10);
}
.trust-item strong{ font-size: 0.95rem; }
.trust-item span{ font-size: 0.85rem; opacity: 0.85; }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-trust{ grid-template-columns: 1fr; }
}

/* ---- Contact form clean single-column ---- */
.contact-form--stacked{
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form--stacked .form-row,
.contact-form--stacked .form-grid{
  display: contents !important;
}
.contact-form--stacked label{
  margin: 0 0 6px 2px;
  font-weight: 800;
}
.contact-form--stacked input,
.contact-form--stacked textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,0.14);
  box-sizing: border-box;
}
.contact-form--stacked textarea{ min-height: 170px; }
.contact-form--stacked button,
.contact-form--stacked input[type="submit"]{
  width:100%;
  height: 52px;
  font-size: 16px;
}

/* =========================
   v11 Pro layout overrides
   ========================= */
:root{
  --max: 1160px;
  --ink: #111827;
  --muted: rgba(17,24,39,0.72);
  --brand: #0c1863;
  --accent: #706040;
}
.site-header{
  position: fixed; top:0; left:0; right:0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40,52,111,0.10);
}
.site-header.is-scrolled{ box-shadow: 0 14px 34px rgba(17,24,39,0.10); }

.nav-wrapper{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  gap:18px;
}
.logo-img{ height: 92px; width:auto; display:block; }

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
  margin-left: 6px;
}
.nav-links a{
  text-decoration:none;
  color: rgba(17,24,39,0.82);
  font-weight: 700;
}
.nav-links a:hover{ color: var(--brand); }

.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-badge{
  display:inline-flex;
  padding: 7px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  background: rgba(40,52,111,0.08);
  border: 1px solid rgba(40,52,111,0.14);
}
.menu-toggle{
  display:none;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.95);
  font-weight:900;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight:900;
}
.btn-primary{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 12px 26px rgba(41,53,111,0.18);
}
.btn-outline{
  color: var(--brand);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(41,53,111,0.24);
}
body{ padding-top: 122px; }

.mobile-menu{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px 16px;
  border-top: 1px solid rgba(17,24,39,0.08);
}
.mobile-menu a{
  display:block;
  padding: 12px 4px;
  font-weight:800;
  text-decoration:none;
  color: rgba(17,24,39,0.84);
}
.mobile-cta{ display:grid; gap:10px; margin-top:10px; }

.hero{ padding: 34px 16px 10px; }
.hero-container{
  max-width: var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 10px;
  font-size: clamp(2.1rem, 3.7vw, 3.4rem);
  line-height:1.06;
  color: var(--ink);
}
.hero-sub{ margin:0 0 16px; color: var(--muted); font-size: 1.06rem; }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 14px; }
.hero-media{
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 24px 54px rgba(17,24,39,0.14);
  border: 1px solid rgba(17,24,39,0.08);
}
.hero-media img{ width:100%; height:auto; display:block; }

.hero-trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.trust-item{
  display:grid;
  grid-template-columns: 16px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(17,24,39,0.10);
}
.trust-dot{ width:10px; height:10px; border-radius:999px; background: var(--accent); margin-top:5px; }
.trust-item strong{ font-size: 0.92rem; }
.trust-item span{ font-size: 0.84rem; color: var(--muted); }

.contact-form{
  max-width: 720px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.field{ display:flex; flex-direction:column; gap:6px; }
.field-wide{ grid-column: 1 / -1; }
.field label{ font-weight:900; color: rgba(17,24,39,0.82); }
.field input, .field textarea{
  width:100%;
  box-sizing:border-box;
  border-radius:14px;
  border: 1px solid rgba(17,24,39,0.14);
  padding: 12px 14px;
  font-size:16px;
  background: rgba(255,255,255,0.95);
}
.field textarea{ min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus{
  outline:none;
  border-color: rgba(41,53,111,0.55);
  box-shadow: 0 0 0 4px rgba(41,53,111,0.12);
}
.form-note{ margin: 6px 0 0; color: rgba(17,24,39,0.60); font-size:0.95rem; }

@media (max-width: 980px){
  .hero-container{ grid-template-columns: 1fr; }
  .hero-trust{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .nav-links{ display:none; }
  .header-badge{ display:none; }
  .btn-call{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .logo-img{ height: 78px; }
  body{ padding-top: 108px; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* =========================
   v12 Real hero banner
   ========================= */

.hero--banner{ padding: 22px 0 10px; }
.hero-banner{
  --hero-image: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}
.hero-banner::before{
  content: "";
  display:block;
  height: 380px;
  border-radius: 26px;
  background-image:
    linear-gradient(90deg, rgba(17,24,39,0.64) 0%, rgba(17,24,39,0.34) 46%, rgba(17,24,39,0.08) 70%, rgba(17,24,39,0.00) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 70px rgba(17,24,39,0.16);
  border: 1px solid rgba(17,24,39,0.08);
}
.hero-content{
  position: relative;
  margin-top: -380px;
  height: 380px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px 28px;
  max-width: 560px;
}
.hero-eyebrow{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 12px;
}
.hero--banner h1{
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.05;
}
.hero--banner .hero-sub{
  margin: 0;
  color: rgba(255,255,255,0.90);
  font-size: 1.05rem;
}
.hero--banner .hero-cta{ margin-top: 8px; }
.hero--banner .btn-outline{
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
}
.hero--banner .btn-outline:hover{ background: rgba(255,255,255,0.16); }

.hero--banner .hero-trust{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.trust-pill{
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  font-weight: 900;
  font-size: 13px;
}

@media (max-width: 820px){
  .hero-banner::before{ height: 440px; }
  .hero-content{
    margin-top: -440px;
    height: 440px;
    max-width: 100%;
    padding: 22px 18px;
  }
  .hero--banner .hero-trust{ gap: 8px; }
}
/* Contact logo fill */
.contact-logo{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 18px 10px 6px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(17,24,39,0.08);
}
.contact-logo img{
  height: 140px;
  width: auto;
  max-width: 100%;
  opacity: 0.92;
}
@media (max-width: 900px){
  .contact-logo img{ height: 120px; }
}
/* =========================
   v16 Brand palette alignment
   ========================= */
:root{
  --brand: #0c1863;
  --brand-soft: #102080;
  --accent: #706040;
}
.logo-img{ height: 110px !important; width:auto !important; }
@media (max-width: 820px){ .logo-img{ height: 90px !important; } }

.btn-primary{ background: var(--brand) !important; }
.btn-outline{
  color: var(--brand) !important;
  border-color: rgba(41,53,111,0.24) !important;
}
.header-badge{
  background: rgba(245,154,27,0.16) !important;
  border-color: rgba(245,154,27,0.28) !important;
}
.trust-dot{ background: var(--accent) !important; }


/* ===== HERO REBUILD ===== */
.hero { padding: 80px 0 40px; background: linear-gradient(135deg,#fff6e9,#f5f7ff); }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 24px;
}
.hero-text h1 { font-size: clamp(32px,4vw,48px); line-height:1.1; margin-bottom:12px; }
.hero-text p { font-size: 1.05rem; margin-bottom:20px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
.hero-badges span {
  display:inline-block;
  background:#ffffffaa;
  padding:6px 12px;
  border-radius:999px;
  font-size:0.85rem;
  margin-right:8px;
}
.hero-image img {
  width:100%;
  height:auto;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns:1fr; }
}
/* =========================
   v20 HERO HARD RESET (removes boxed overlay + tall blank space)
   ========================= */

/* Neutralize any previous hero/card styles */
.hero, .hero-section, .hero-wrap, .hero-card, .hero-bg, .hero-overlay {
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.hero, .hero-section, .hero-wrap {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* New hero */
.hero-v20{
  padding: 72px 0 40px;
  background: linear-gradient(135deg, rgba(245,154,27,0.10), rgba(41,53,111,0.10));
}
.hero-v20__inner{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.hero-v20__eyebrow{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 10px;
}
.hero-v20__title{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 0 0 12px 0;
}
.hero-v20__lead{
  font-size: 1.05rem;
  margin: 0 0 18px 0;
  opacity: .9;
  max-width: 56ch;
}
.hero-v20__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-v20__badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-v20__badge{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(17,24,39,0.08);
  font-size: .85rem;
  opacity: .95;
}
.hero-v20__media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
}
@media (max-width: 980px){
  .hero-v20__inner{ grid-template-columns: 1fr; }
  .hero-v20__media img{ height: 340px; }
}
@media (max-width: 540px){
  .hero-v20{ padding: 62px 0 34px; }
  .hero-v20__media img{ height: 280px; }
}
/* =========================
   v21 HERO SIDE-BY-SIDE (desktop) + constrained height
   ========================= */
.hero-v21{
  padding: 76px 0 46px;
  background: linear-gradient(135deg, rgba(245,154,27,0.10), rgba(41,53,111,0.10));
}
.hero-v21__container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.hero-v21__copy{ flex: 1 1 520px; min-width: 320px; }
.hero-v21__eyebrow{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 10px;
}
.hero-v21__title{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 0 0 12px 0;
}
.hero-v21__lead{
  font-size: 1.05rem;
  margin: 0 0 18px 0;
  opacity: .9;
  max-width: 56ch;
}
.hero-v21__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-v21__badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-v21__badge{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(17,24,39,0.08);
  font-size: .85rem;
  opacity: .95;
}
.hero-v21__media{
  flex: 0 0 520px;
  max-width: 520px;
}
.hero-v21__media img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
  display:block;
}
@media (max-width: 980px){
  .hero-v21__container{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-v21__media{ flex: 0 0 auto; max-width: 100%; }
  .hero-v21__media img{ height: 300px; }
}


/* --- Mobile header polish (keep desktop intact) --- */
@media (max-width: 900px){
  .nav-links{ display:none !important; }
  .menu-toggle{ display:inline-flex !important; }
  .header-actions{ gap:10px; flex-wrap:wrap; justify-content:flex-end; }
  .logo-img{ width:150px; height:auto; }
  .header-actions .btn,
  .header-actions .btn-pill{
    padding:10px 14px;
    font-size:14px;
    line-height:1.1;
    white-space:nowrap;
  }
}
@media (max-width: 560px){
  .logo-img{ width:165px; }
  .header-actions{
    gap:8px;
  }
  .header-actions .btn,
  .header-actions .btn-pill{
    padding:9px 12px;
    font-size:13px;
  }
}

