/* ═══════════════════════════════════════════════
   PEACE ALLIANCE V2 — Editorial Luxury Style
   ═══════════════════════════════════════════════ */

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

:root {
  --teal:      #3A8FA3;
  --teal-dark: #2C7087;
  --purple:    #4A3080;
  --lavender:  #9B7EC8;
  --lav-light: #F0EBF8;
  --black:     #111111;
  --offwhite:  #FAFAF8;
  --mid:       #888;
  --text:      #222;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--offwhite);
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
.page { display: none; }
.page.active { display: block; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 0.2rem; }
.nav-links a {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-contact {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.05em;
}

/* ── HERO V2 ── */
.hero-v2 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay-v2 {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(74,48,128,0.72) 0%, rgba(17,17,17,0.55) 60%, rgba(58,143,163,0.45) 100%);
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-text h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.hero-sub {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: white; }

/* ── BUTTONS ── */
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.7);
  color: white;
  padding: 13px 32px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-ghost:hover { background: white; color: var(--purple); border-color: white; }

.btn-ghost-dark {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  padding: 13px 32px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 1.5rem;
}
.btn-ghost-dark:hover { background: white; color: var(--purple); }

.btn-text {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.2s;
  cursor: pointer;
  margin-top: 1.5rem;
}
.btn-text:hover { color: var(--purple); border-color: var(--purple); }

.btn-primary-v2 {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary-v2:hover { background: var(--teal); }
.btn-primary-v2.full { width: 100%; text-align: center; }

/* ── INTRO LINE ── */
.intro-line {
  background: var(--purple);
  color: white;
  padding: 14px 2rem;
}
.line-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.divider { opacity: 0.4; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

/* ── RULE ── */
.rule {
  width: 48px;
  height: 2px;
  background: var(--lavender);
  margin: 1.5rem 0;
}
.rule.centered { margin: 1.5rem auto; }

/* ── ABOUT V2 ── */
.about-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-text-col {
  padding: 7rem 5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--offwhite);
}
.about-text-col h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
}
.about-text-col h2 em { color: var(--purple); font-weight: 400; }
.about-text-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}
.about-img-col { overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SERVICES MOSAIC ── */
.services-v2 { background: white; padding: 6rem 0 0; }
.services-header { text-align: center; padding: 0 2rem 3rem; }
.services-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--black);
}
.services-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
}
.mosaic-item {
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
}
.mosaic-item.big { grid-row: span 2; }
.mosaic-content { max-width: 320px; }
.mosaic-icon { font-size: 2.5rem; display: block; margin-bottom: 1.2rem; }
.mosaic-item h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.mosaic-item p { font-size: 14px; line-height: 1.7; }
.mosaic-item.dark { background: var(--purple); color: white; }
.mosaic-item.dark h3 { color: white; }
.mosaic-item.dark p { opacity: 0.8; }
.mosaic-item.teal { background: var(--teal); color: white; }
.mosaic-item.teal h3 { color: white; }
.mosaic-item.teal p { opacity: 0.85; }
.mosaic-item.light { background: var(--lav-light); }
.mosaic-item.light h3 { color: var(--purple); }
.mosaic-item.light p { color: #555; }
.mosaic-item.light-purple { background: #E8E0F5; }
.mosaic-item.light-purple h3 { color: var(--purple); }
.mosaic-item.light-purple p { color: #555; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}
.quote-band .section-label { color: rgba(255,255,255,0.5); }
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}
.quote-band blockquote em { color: var(--lavender); }

/* ── SPLIT V2 ── */
.split-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-v2.img-left .split-img { order: 1; }
.split-v2.img-left .split-txt { order: 2; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-txt {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--offwhite);
}
.split-txt h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
}
.split-txt h2 em { color: var(--purple); }
.split-txt p { font-size: 15px; line-height: 1.8; color: #555; }
.check-list-v2 { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.check-list-v2 li { font-size: 14px; color: #555; letter-spacing: 0.01em; }

/* ── CLIENT LOVE ── */
.client-love {
  background: white;
  padding: 7rem 3rem;
}
.cl-header { text-align: center; margin-bottom: 3.5rem; }
.cl-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--black);
}
.cl-sub { font-size: 15px; color: var(--mid); margin-top: 0.8rem; }
.cl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #eee;
}
.cl-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid #eee;
}
.cl-item:last-child { border-right: none; }
.cl-stars { color: var(--lavender); font-size: 1rem; margin-bottom: 1.2rem; }
.cl-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}
.cl-name { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-weight: 600; }

/* ── CTA V2 ── */
.cta-v2 {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal-dark) 100%);
  text-align: center;
  padding: 7rem 2rem;
  color: white;
}
.cta-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.cta-inner h2 em { font-style: italic; color: rgba(255,255,255,0.8); }
.cta-inner p { font-size: 15px; opacity: 0.85; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ── PAGE HERO V2 ── */
.page-hero-v2 {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal-dark) 100%);
  color: white;
  text-align: center;
  padding: 8rem 2rem 5rem;
  margin-top: 72px;
}
.page-hero-v2 h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.page-hero-v2 p { font-size: 16px; opacity: 0.85; }

/* ── CONTAINER V2 ── */
.container-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

/* ── TESTIMONIALS PAGE ── */
.t-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5px;
  background: #eee;
  border: 1px solid #eee;
}
.t-item-v2 {
  background: white;
  padding: 3rem 2.5rem;
}
.t-item-v2 .cl-stars { margin-bottom: 1.2rem; }
.t-item-v2 .cl-quote { font-size: 1.1rem; margin-bottom: 1.2rem; }

/* ── HIRING PAGE ── */
.hiring-intro-v2 { margin-bottom: 2rem; }
.hiring-intro-v2 h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 300; line-height: 1.1; }
.hiring-intro-v2 h2 em { color: var(--purple); }
.hiring-lead { font-size: 16px; line-height: 1.8; color: #555; max-width: 640px; }
.perks-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.perk-v2 { padding: 2rem; background: var(--lav-light); border-top: 3px solid var(--lavender); }
.perk-v2 span { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.perk-v2 h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--purple); margin-bottom: 0.5rem; }
.perk-v2 p { font-size: 13px; color: #666; line-height: 1.5; }
.jobs-v2 { display: flex; flex-direction: column; gap: 0; border: 1px solid #eee; }
.job-v2 {
  padding: 2.5rem 3rem;
  border-bottom: 1px solid #eee;
  background: white;
  transition: background 0.2s;
}
.job-v2:last-child { border-bottom: none; }
.job-v2:hover { background: #f9f7ff; }
.job-header-v2 { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.8rem; }
.job-header-v2 h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--purple); flex: 1; }
.job-tags-v2 { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-tags-v2 span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lav-light);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.job-v2 > p { font-size: 14px; color: #666; line-height: 1.6; }
.hiring-note-v2 {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--lav-light);
  text-align: center;
  font-size: 14px;
  color: #666;
}
.hiring-note-v2 a { color: var(--teal); font-weight: 600; }

/* ── CONSULTATION / CONTACT ── */
.consult-v2, .contact-v2 { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.consult-left h2, .contact-left-v2 h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.15; }
.consult-left h2 em, .contact-left-v2 h2 em { color: var(--purple); }
.consult-left p, .contact-left-v2 p { font-size: 15px; color: #555; line-height: 1.8; }
.contact-callout-v2 {
  background: var(--lav-light);
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 3px solid var(--lavender);
}
.contact-callout-v2 p { font-size: 15px; color: var(--purple); margin-bottom: 0.4rem; }
.cb { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.cb > span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cb strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 4px; }
.cb p { font-size: 14px; color: #666; line-height: 1.5; }

/* ── FORM V2 ── */
.form-v2 {
  background: white;
  padding: 3rem;
  box-shadow: 0 4px 40px rgba(74,48,128,0.08);
}
.form-v2 h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 2rem;
}
.form-row-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: #888; margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text);
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
}

/* ── FOOTER V2 ── */
.footer-v2 { background: var(--black); color: white; }
.footer-top-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top-v2 img { height: 60px; }
.footer-nav-v2 { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-nav-v2 a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-nav-v2 a:hover { opacity: 1; }
.footer-mid-v2 {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 3rem;
  align-items: center;
}
.fm-col h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.4; margin-bottom: 1.2rem; }
.fm-col p { font-size: 13px; opacity: 0.5; line-height: 2; }
.large-name { text-align: center; }
.large-name h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.6;
  line-height: 1.3;
}
.footer-bottom-v2 { text-align: center; padding: 1.5rem; font-size: 11px; opacity: 0.3; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--teal);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 999;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  z-index: 190;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  border-bottom: 2px solid var(--lav-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.03em;
}
.mobile-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.mobile-contact p { font-size: 13px; color: var(--purple); line-height: 2.2; }

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .hamburger { display: flex; }

  .hero-v2 { height: 85vh; min-height: 500px; }
  .hero-text h1 { font-size: 3rem; }
  .hero-sub { font-size: 14px; }

  .about-v2 { grid-template-columns: 1fr; }
  .about-img-col { height: 280px; order: -1; }
  .about-text-col { padding: 3rem 1.5rem; }

  .services-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-item.big { grid-row: span 1; grid-column: span 2; }
  .mosaic-item { padding: 2.5rem 2rem; }

  .quote-band { padding: 4rem 1.5rem; }
  .quote-band blockquote { font-size: 1.4rem; }

  .split-v2 { grid-template-columns: 1fr; }
  .split-img { height: 260px; }
  .split-v2.img-left .split-img { order: -1; }
  .split-txt { padding: 3rem 1.5rem; }

  .client-love { padding: 4rem 1.5rem; }
  .cl-grid { grid-template-columns: 1fr; }
  .cl-item { border-right: none; border-bottom: 1px solid #eee; }

  .cta-v2 { padding: 4rem 1.5rem; }

  .page-hero-v2 { padding: 6rem 1.5rem 3rem; }
  .page-hero-v2 h1 { font-size: 2.5rem; }

  .container-v2 { padding: 3rem 1.5rem; }
  .t-grid-v2 { grid-template-columns: 1fr; }

  .perks-v2 { grid-template-columns: 1fr 1fr; }
  .job-v2 { padding: 2rem 1.5rem; }
  .job-header-v2 { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .consult-v2, .contact-v2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-v2 { padding: 2rem 1.5rem; }
  .form-row-v2 { grid-template-columns: 1fr; }

  .footer-top-v2 { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 2rem 1.5rem; }
  .footer-nav-v2 { flex-direction: column; gap: 0.5rem; }
  .footer-mid-v2 { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .large-name { text-align: left; }
  .large-name h1 { font-size: 1.5rem; }
}

/* ── COUNTY GRID ── */
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.county-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  padding: 0.75rem 1rem;
  border-left: 2px solid #2a7c6e;
  background: #fff;
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE 500px ── */
@media (max-width: 500px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text { padding: 1.5rem; }
  .btn-ghost { padding: 12px 22px; font-size: 10px; }
  .services-mosaic { grid-template-columns: 1fr; }
  .mosaic-item.big { grid-column: span 1; }
  .perks-v2 { grid-template-columns: 1fr; }
  .intro-line { display: none; }
  .about-text-col h2 { font-size: 2rem; }
  .quote-band blockquote { font-size: 1.2rem; }
  .cl-header h2 { font-size: 2rem; }
  .cta-inner h2 { font-size: 2.2rem; }
  .page-hero-v2 h1 { font-size: 2rem; }
  .fg input, .fg select, .fg textarea { font-size: 16px; } /* prevents zoom on iOS */
}
