/* 300 — body */
@font-face {
  font-family: 'Taviraj';
  src: url('/fonts/Taviraj-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

/* 600 — nav/buttons */
@font-face {
  font-family: 'Taviraj';
  src: url('/fonts/Taviraj-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

/* Cormorant Garamond */  
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Italic-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 400 600;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: 'Taviraj', sans-serif;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-pale:   #F3ECD8;
  --charcoal:    #1C1C1A;
  --charcoal-mid:#2A2825;
  --black:       #000000;
  --white:       #F8F6F2;
  --pure-white:  #FFFFFF;
  --grey-dark:   #4A4845;
  --grey-mid:    #7A7670;
  --grey-light:  #C8C4BE;
  --grey-pale:   #EDEAE4;
  --creme:       #F5EDD8;
  --border:      rgba(0,0,0,0.1);
  --border-gold: rgba(201,168,76,0.3);
  --shadow:      0 4px 28px rgba(0,0,0,0.07);
  --shadow-lg:   0 16px 56px rgba(0,0,0,0.13);
}
html { scroll-behavior: smooth; margin: 0; padding: 0; overscroll-behavior-y: none; }
*, *::before, *::after { box-sizing: border-box; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
body { font-family: 'Taviraj', sans-serif; background: var(--white); color: var(--charcoal-mid); overflow-x: hidden; overscroll-behavior-y: none; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  background: rgba(248,246,242,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
  animation: fadeDown 0.6s ease both;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { height: 40px; width: 40px; object-fit: contain; }
.nav-logo-text { font-family: 'Taviraj', serif; font-size: 1.22rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.02em; }
.nav-logo-text em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links > li > a { font-size: 0.67rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-mid); text-decoration: none; padding: 8px 14px; transition: color 0.2s; display: block; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--charcoal); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.5rem; color: var(--gold); transition: transform 0.25s; }
.nav-dropdown.open > a::after { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); background: var(--charcoal);
  min-width: 240px; box-shadow: var(--shadow-lg); z-index: 600;
  border-top: 2px solid var(--gold);
}
.nav-dropdown.open .dropdown-menu { display: block; animation: fadeDown 0.2s ease both; }
.dropdown-menu a { display: block; padding: 13px 22px; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, background 0.2s; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav-cta { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); border: none; padding: 11px 26px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.25s, transform 0.2s; margin-left: 14px; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu { overscroll-behavior: contain; display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--charcoal); z-index: 490; overflow-y: auto; padding: 36px 32px 60px; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: rgba(255,255,255,0.7); text-decoration: none; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-sub { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); padding: 22px 0 8px; display: block; font-family: 'Taviraj', sans-serif; }
.mobile-indent { padding-left: 16px !important; font-size: 1.1rem !important; color: rgba(255,255,255,0.4) !important; }
.mobile-cta { margin-top: 32px; background: var(--gold) !important; color: var(--charcoal) !important; text-align: center; padding: 18px !important; font-size: 0.72rem !important; font-weight: 600 !important; letter-spacing: 0.13em; text-transform: uppercase; font-family: 'Taviraj', sans-serif !important; border-bottom: none !important; }

/* ── GOLD BAR ── */
.gold-bar { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent); }

/* ── SPLIT HERO ── */
.split-hero { display: grid; grid-template-columns: 46% 54%; min-height: 100vh; padding-top: 72px; }
.split-hero-left { background: var(--charcoal); display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; position: relative; overflow: hidden; }
.split-hero-left::before { content: ''; position: absolute; bottom: -120px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
.split-hero-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; display: block; }
.split-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 3.8vw, 4.8rem); font-weight: 300; line-height: 1.06; color: #fff; margin-bottom: 22px; }
.split-hero-title em { font-style: italic; color: var(--gold); }
.split-hero-sub { font-size: 0.9rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.5); max-width: 400px; margin-bottom: 44px; }
.split-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.split-hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(201,168,76,0.18); padding-top: 40px; }
.split-hero-stat { flex: 1; }
.split-hero-stat + .split-hero-stat { border-left: 1px solid rgba(255,255,255,0.07); padding-left: 28px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--creme); line-height: 1; }
.stat-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 6px; }
.split-hero-right { position: relative; overflow: hidden; }
.split-hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 8s ease; }
.split-hero-right:hover img { transform: scale(1.03); }

/* ── PAGE HERO ── */
.page-hero { position: relative; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; padding-top: 72px; }
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.1) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 60px 64px 72px; max-width: 700px; }
.page-hero-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; display: block; }
.page-hero-title { text-shadow: 0 2px 16px rgba(0,0,0,0.6); font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4.5vw, 4.4rem); font-weight: 300; color: var(--white); line-height: 1.08; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { text-shadow: 0 1px 8px rgba(0,0,0,0.5); font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.55); max-width: 500px; margin-top: 16px; }

/* ── SECTIONS ── */
.section { padding: 96px 64px; }
.bg-white  { background: var(--white); }
.bg-pale   { background: var(--grey-pale); }
.bg-dark   { background: var(--charcoal); }
.centered  { text-align: center; }
.section-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 2.8vw, 2.9rem); font-weight: 300; color: var(--charcoal); line-height: 1.12; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.on-dark { color: #fff; }
.section-lead { font-size: 0.87rem; font-weight: 300; line-height: 1.9; color: var(--grey-mid); max-width: 560px; margin-top: 14px; }
.section-lead.on-dark { color: rgba(255,255,255,0.45); }
.centered .section-lead { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-gold         { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); border: 2px solid var(--gold); padding: 13px 30px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-gold:hover   { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); background: transparent; border: 2px solid var(--gold); padding: 13px 30px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }
.btn-dark         { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: #fff; background: var(--charcoal-mid); border: 2px solid var(--charcoal-mid); padding: 13px 30px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-dark:hover   { background: var(--gold); border-color: var(--gold); color: var(--charcoal); transform: translateY(-2px); }
.btn-outline-white { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.75); background: transparent; border: 2px solid rgba(255,255,255,0.25); padding: 13px 30px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ── DIAMOND MARKER ── */
.diamond { color: var(--gold); font-size: 0.45rem; flex-shrink: 0; margin-top: 6px; }

/* ── FORMS ── */
.form-wrap { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-mid); }
.form-input, .form-select, .form-textarea { font-family: 'Taviraj', sans-serif; font-size: 0.85rem; font-weight: 300; color: var(--charcoal); background: var(--white); border: 1px solid rgba(0,0,0,0.15); padding: 12px 15px; outline: none; transition: border-color 0.25s, box-shadow 0.25s; -webkit-appearance: none; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { font-family: 'Taviraj', sans-serif; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--charcoal); padding: 14px 34px; cursor: pointer; transition: all 0.25s; align-self: flex-start; }
.form-submit:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 0.7rem; font-weight: 300; color: var(--grey-light); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(0,0,0,0.08); }
.t-card { background: var(--white); padding: 40px 32px; border-top: 2px solid var(--gold); }
.t-card.on-dark { background: rgba(255,255,255,0.04); border-top-color: var(--gold); }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold); opacity: 0.25; line-height: 0.7; margin-bottom: 18px; }
.t-text  { font-size: 0.84rem; font-weight: 300; line-height: 1.85; color: var(--grey-mid); font-style: italic; margin-bottom: 24px; }
.t-text.on-dark { color: rgba(255,255,255,0.55); }
.t-author { font-size: 0.74rem; font-weight: 400; color: var(--charcoal); }
.t-author.on-dark { color: var(--gold); }
.t-role  { font-size: 0.67rem; font-weight: 300; color: var(--grey-light); margin-top: 3px; }
.t-role.on-dark { color: rgba(255,255,255,0.3); }

/* ── FEATURE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(0,0,0,0.1); }
.f-card { background: var(--white); padding: 40px 32px; transition: background 0.3s; }
.f-card:hover { background: var(--grey-pale); }
.f-card.on-dark { background: var(--charcoal); }
.f-card.on-dark:hover { background: #242422; }
.fc-num   { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 14px; }
.fc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.fc-title.on-dark { color: var(--gold); }
.fc-desc  { font-size: 0.77rem; font-weight: 300; line-height: 1.85; color: var(--grey-mid); }
.fc-desc.on-dark { color: rgba(255,255,255,0.45); }

/* ── PAIN POINTS ── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,0,0,0.08); }
.pain-item { background: var(--white); padding: 24px 26px; display: flex; gap: 14px; align-items: flex-start; }
.pain-item.on-pale { background: var(--grey-pale); }
.pain-title { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.pain-desc  { font-size: 0.75rem; font-weight: 300; line-height: 1.75; color: var(--grey-mid); }

/* ── EDITORIAL LIST (How We Help — Option A) ── */
.editorial-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 0; }
.editorial-anchor { position: relative; padding: 0 48px 0 0; }
.editorial-line { position: absolute; top: 0; right: 32px; width: 2px; background: var(--gold); height: 100%; }
.editorial-anchor-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: #fff; line-height: 1.15; position: sticky; top: 110px; }
.editorial-anchor-title em { font-style: italic; color: var(--gold); display: block; }
.editorial-list { display: flex; flex-direction: column; }
.editorial-item { display: grid; grid-template-columns: 88px 1fr; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 32px 0; transition: background 0.2s; }
.editorial-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.editorial-item:hover .ei-title { color: var(--gold); }
.ei-num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; color: var(--gold); opacity: 0.25; line-height: 1; padding-top: 4px; }
.ei-body {}
.ei-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: #fff; margin-bottom: 7px; transition: color 0.2s; line-height: 1.2; }
.ei-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.42); }

@media (max-width: 960px) {
  .editorial-wrap { grid-template-columns: 1fr; }
  .editorial-anchor { padding: 0 0 36px 0; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 8px; }
  .editorial-line { display: none; }
  .editorial-anchor-title { position: static; }
  .editorial-item { grid-template-columns: 56px 1fr; padding: 24px 0; }
  .ei-num { font-size: 2rem; }
}

/* ── FOOTER BUSINESS INFO ── */
.footer-info { display: flex; flex-direction: column; gap: 5px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-info-row { font-size: 0.63rem; font-weight: 300; color: rgba(255,255,255,0.22); line-height: 1.6; }
.footer-info-row strong { color: rgba(255,255,255,0.38); font-weight: 600; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 0.88rem; font-weight: 400; color: var(--charcoal); transition: color 0.2s; user-select: none; gap: 20px; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-icon {transform: rotate(45deg); background: var(--gold); color: var(--charcoal); }
.faq-answer {font-size: 0.81rem; font-weight: 300; line-height: 1.9; color: var(--grey-mid); max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.5s; }
.faq-item.open .faq-answer { max-height: 1000px; padding-bottom: 20px; }


/* ── FOOTER ── */
footer { background: var(--black); padding: 72px 64px 40px; border-top: 2px solid var(--gold); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { font-family: 'Taviraj', serif; font-size: 1.3rem; font-weight: 150; color: #fff; margin-bottom: 14px; display: block; }
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-tagline { font-size: 0.75rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.28); max-width: 220px; }
.footer-col-title { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.74rem; font-weight: 300; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.63rem; color: rgba(255,255,255,0.18); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.63rem; color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)} }
.reveal { opacity:0; transform:translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.rd1{transition-delay:0.1s} .rd2{transition-delay:0.2s} .rd3{transition-delay:0.3s} .rd4{transition-delay:0.4s}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 960px)
══════════════════════════════════════════ */
@media (max-width: 960px) {

  /* Nav */
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; padding: 12px 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

  /* Split hero */
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-right { height: 52vw; min-height: 260px; order: -1; }
  .split-hero-left { padding: 48px 28px 56px; }

  /* Page hero */
  .page-hero { min-height: 380px; }
  .page-hero-content { padding: 40px 24px 52px; }
  .page-hero-title { font-size: clamp(2rem, 6vw, 3.2rem); }

  /* Sections */
  .section { padding: 60px 24px; }

  /* Grids → single column */
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
  .pain-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* Services rows — stack left/right panels */
  .section [style*="grid-template-columns:1fr 2fr"],
  .section [style*="grid-template-columns: 1fr 2fr"] { display: block !important; }

  /* Process 4-col → 2-col */
  .section [style*="grid-template-columns:repeat(4,1fr)"],
  .section [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* About / pain / general 2-col grids → single col */
  .section [style*="grid-template-columns:1fr 1fr"],
  .section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Why avansera stat mini-grid */
  .section [style*="grid-template-columns:1fr 1fr"][style*="gap:2px"],
  .section [style*="grid-template-columns: 1fr 1fr"][style*="gap: 2px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Buttons — minimum tap target */
  .btn-gold, .btn-dark, .btn-outline-gold, .btn-outline-white {
    min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  }
  .form-submit { min-height: 48px; width: 100%; }

  /* CTA bands — reduce padding */
  [style*="padding:88px 64px"] { padding: 60px 24px !important; }
  [style*="padding:80px 64px"] { padding: 56px 24px !important; }
  [style*="padding:72px 64px"] { padding: 52px 24px !important; }
  [style*="padding:64px 64px"] { padding: 48px 24px !important; }
  [style*="padding:64px"] { padding: 48px 24px !important; }

  /* Enquiry form grid → stack */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Footer */
  footer { padding: 52px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Cookie banner — stack on tablet */
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; }

  /* FAQ sticky sidebar → normal flow */
  [style*="position:sticky"] { position: static !important; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Nav */
  nav { height: 64px; }
  .mobile-menu { top: 64px; padding: 28px 24px 80px; }
  .mobile-menu a { font-size: 1.4rem; padding: 16px 0; min-height: 44px; display: flex; align-items: center; }
  .nav-logo-text { font-size: 1.05rem; }

  /* Split hero */
  .split-hero-right { height: 58vw; }
  .split-hero-left { padding: 36px 20px 48px; }
  .split-hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .split-hero-sub { font-size: 0.84rem; margin-bottom: 32px; }
  .split-hero-actions { flex-direction: column; gap: 10px; }
  .split-hero-actions a { width: 100%; text-align: center; }
  .split-hero-stats { flex-direction: column; gap: 16px; padding-top: 28px; }
  .split-hero-stat + .split-hero-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; }

  /* Page hero */
  .page-hero { min-height: 320px; }
  .page-hero-content { padding: 32px 20px 44px; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero-sub { font-size: 0.82rem; }

  /* Sections */
  .section { padding: 48px 20px; }
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }

  /* All inline padded sections */
  [style*="padding:56px 64px"] { padding: 44px 20px !important; }
  [style*="padding:52px 44px"] { padding: 36px 20px !important; }
  [style*="padding:48px 40px"] { padding: 32px 20px !important; }
  [style*="padding:48px 44px"] { padding: 32px 20px !important; }
  [style*="padding:40px 32px"] { padding: 28px 20px !important; }

  /* Cards */
  .f-card { padding: 32px 20px; }
  .t-card { padding: 28px 20px; }
  .num-block { padding: 36px 20px; }

  /* Buttons — full width on mobile */
  .split-hero-actions .btn-gold,
  .split-hero-actions .btn-dark,
  .split-hero-actions .btn-outline-white,
  .split-hero-actions .btn-outline-gold { width: 100%; justify-content: center; }

  /* CTA bands */
  [style*="padding:88px 64px"],
  [style*="padding:80px 64px"],
  [style*="padding:72px 64px"],
  [style*="padding:64px 64px"],
  [style*="padding:64px"] { padding: 48px 20px !important; }

  /* Process grid → single column */
  .section [style*="grid-template-columns:repeat(4,1fr)"],
  .section [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* About team grid → single col */
  .section [style*="grid-template-columns:1fr 1fr"][style*="gap:2px"] {
    grid-template-columns: 1fr !important;
  }

  /* Services who-we-serve 3-col → single col */
  .section > div[style*="grid-template-columns:repeat(3,1fr)"],
  .section > div[style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Editorial how-we-help */
  .editorial-item { grid-template-columns: 48px 1fr; padding: 20px 0; }
  .ei-num { font-size: 1.7rem; }
  .ei-title { font-size: 1.1rem; }

  /* FAQ */
  .faq-question { font-size: 0.83rem; padding: 16px 0; min-height: 44px; }

  /* Forms */
  .form-input, .form-select, .form-textarea { font-size: 1rem; } /* prevents iOS zoom on focus */
  .form-submit { min-height: 52px; font-size: 0.7rem; }

  /* Footer */
  footer { padding: 44px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Cookie banner */
  #cookie-banner { padding: 16px 20px; gap: 14px; }
  #cookie-banner p { font-size: 0.72rem; }
  #cookie-banner button { width: 100%; padding: 12px; }
  #cookie-banner > div:last-child { width: 100%; flex-direction: column; gap: 8px; }

  /* FAQ — hide sidebar on mobile, let questions breathe */
  .faq-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
  .faq-sidebar { display: none !important; }

  /* Insights — stack articles on mobile */
  .insights-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════
   PRINT STYLESHEET
══════════════════════════════════════════ */
@media print {
  nav, .mobile-menu, #cookie-banner, .split-hero-right,
  .btn-gold, .btn-dark, .btn-outline-gold, .btn-outline-white,
  .nav-cta, .hamburger { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }

  .split-hero-left, .section, .page-hero-content {
    background: #fff !important;
    color: #000 !important;
    padding: 20pt 0 !important;
  }
  .split-hero-title, .page-hero-title, .section-title {
    color: #000 !important;
    font-size: 18pt !important;
  }
  .section-lead, .split-hero-sub { color: #333 !important; }

  footer { background: #fff !important; color: #000 !important; border-top: 1pt solid #ccc; }
  .footer-brand, .footer-tagline, .footer-info-row,
  .footer-col-title, .footer-col ul a,
  .footer-copy, .footer-legal a { color: #000 !important; }

  .page-hero { min-height: auto !important; }
  .page-hero-overlay { display: none !important; }
  .page-hero-bg { display: none !important; }

  h1, h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE  (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .split-hero-title { font-size: 2rem; }
  .page-hero-title  { font-size: 1.75rem; }
  .section-title    { font-size: 1.5rem; }
  .stat-num         { font-size: 2rem; }
  .section          { padding: 40px 16px; }
  .page-hero-content { padding: 28px 16px 40px; }
  .split-hero-left  { padding: 32px 16px 44px; }
  .f-card           { padding: 28px 16px; }
  footer            { padding: 40px 16px 24px; }
  .footer-top       { gap: 24px; }
  #cookie-banner    { padding: 14px 16px; }
}


@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}