/*
Theme Name:  Statskan
Theme URI:   https://statskan.com
Author:      Statskan
Description: Professional homework help theme — cream palette, global audience, scalable to 100+ subject pages.
Version:     2.2
License:     GNU General Public License v2 or later
Text Domain: statskan
*/

/* ─── GOOGLE FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --cream-mid:   #F2EDE4;
  --cream-dark:  #E8E0D4;
  --ink:         #1A1714;
  --ink-mid:     #4A4540;
  --ink-light:   #8A837A;
  --gold:        #B8975A;
  --gold-dark:   #A0824A;
  --gold-light:  #D4B07A;
  --gold-pale:   #F5EDD8;
  --white:       #FFFFFF;
  --border:      rgba(90, 75, 55, 0.12);
  --border-mid:  rgba(90, 75, 55, 0.22);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm:   0 1px 4px rgba(90,75,55,0.08);
  --shadow-md:   0 4px 20px rgba(90,75,55,0.12);
  --max-width:   1060px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.serif { font-family: var(--font-serif); }
h1 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.5px; }
h2 { font-size: clamp(22px, 3vw, 32px); letter-spacing: -0.3px; }
h3 { font-size: 17px; }
h4 { font-size: 15px; }
p  { color: var(--ink-mid); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section           { padding: 72px 0; }
.section-white     { background: var(--white); }
.section-cream     { background: var(--cream); }
.section-cream-mid { background: var(--cream-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.75;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.15s, border-color 0.18s;
  line-height: 1.4;
}
.btn:hover         { transform: translateY(-1px); text-decoration: none; }
.btn:active        { transform: translateY(0); }
.btn-gold          { background: var(--gold); color: var(--white); }
.btn-gold:hover    { background: var(--gold-dark); color: var(--white); }
.btn-outline       { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold-pale); color: var(--gold-dark); border-color: var(--gold-dark); }
.btn-dark          { background: var(--ink); color: var(--white); }
.btn-dark:hover    { background: #2d2825; color: var(--white); }
.btn-lg    { padding: 14px 30px; font-size: 15px; }
.btn-sm    { padding: 8px 16px; font-size: 13px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.3px;
}
.site-logo em       { color: var(--gold); font-style: normal; }
.site-logo:hover    { text-decoration: none; color: var(--ink); }
.nav-menu           { display: flex; align-items: center; gap: 28px; }
.nav-menu a         { font-size: 14px; font-weight: 500; color: var(--ink-mid); text-decoration: none; letter-spacing: 0.1px; transition: color 0.18s; }
.nav-menu a:hover,
.nav-menu a.current { color: var(--gold); }
.nav-cta            { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle         { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--ink); }
.nav-toggle span    { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.2s; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 72px;
}
.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.hero-left { flex: 1; max-width: 520px; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.hero h1    { font-family: var(--font-serif); color: var(--ink); margin-bottom: 20px; }
.hero-desc  { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.hero-cta   { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── HERO FORM BOX ──────────────────────────────────────────── */
.hero-form {
  flex-shrink: 0;
  width: 440px;
  max-width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.hero-form-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  font-family: var(--font-serif);
}

/* Native fallback form fields */
.form-field         { margin-bottom: 14px; }
.form-field label   { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--ink-light); margin-bottom: 5px; }
.form-field select,
.form-field input,
.form-field textarea { width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 9px 14px; font-size: 13.5px; font-family: var(--font-body); color: var(--ink); outline: none; transition: border-color 0.18s; resize: vertical; }
.form-field textarea { border-radius: 12px; }
.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); box-shadow: none; }
.form-submit { width: 100%; background: var(--gold); color: var(--white); border: none; border-radius: 600px; padding: 14px; font-size: 14px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: background 0.18s; }
.form-submit:hover  { background: var(--gold-dark); }
.form-note          { font-size: 11.5px; color: var(--ink-light); text-align: center; margin-top: 10px; margin-bottom: 0; }

/* ─── WPFORMS — HERO BOX ─────────────────────────────────────── */
.hero-form .wpforms-container,
.hero-form .wpforms-form       { width: 100% !important; padding: 0 !important; margin: 0 !important; }
.hero-form .wpforms-field      { margin-bottom: 12px !important; padding: 0 !important; }
.hero-form .wpforms-field-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: var(--ink-light) !important;
  margin-bottom: 5px !important;
  display: block !important;
}
.hero-form .wpforms-field-required { color: var(--gold) !important; }

/* Pill-shaped inputs & selects */
.hero-form .wpforms-field input,
.hero-form .wpforms-field select {
  border: 1px solid rgba(90,75,55,0.12) !important;
  border-radius: 50px !important;
  font-family: 'DM Sans', sans-serif !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
  background: var(--white) !important;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  color: var(--ink) !important;
  height: 44px !important;
  -webkit-appearance: none !important;
}

/* Rounded textarea */
.hero-form .wpforms-field textarea {
  border: 1px solid rgba(90,75,55,0.12) !important;
  border-radius: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
  background: var(--white) !important;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  color: var(--ink) !important;
  height: 120px !important;
  resize: none !important;
}

/* Gold focus border */
.hero-form .wpforms-field input:focus,
.hero-form .wpforms-field select:focus,
.hero-form .wpforms-field textarea:focus {
  border-color: #B8975A !important;
  box-shadow: none !important;
}

/* Submit button — pill shaped gold */
.hero-form .wpforms-submit,
.wpforms-submit {
  background: #B8975A !important;
  color: #fff !important;
  border: none !important;
  border-radius: 600px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  width: 100% !important;
  padding: 14px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: background 0.18s !important;
  box-shadow: none !important;
  display: block !important;
}
.hero-form .wpforms-submit:hover,
.wpforms-submit:hover { background: #A0824A !important; }

.hero-form .wpforms-submit-container { padding: 0 !important; margin-top: 6px !important; }
.hero-form .wpforms-container .wpforms-form { padding: 0 !important; }
.hero-form .wpforms-error { font-size: 12px !important; color: #c0392b !important; margin-top: 4px !important; }
.hero-form .wpforms-page-indicator { display: none !important; }

/* ─── WPFORMS — SUBMIT SECTION ───────────────────────────────── */
#submit .wpforms-container  { max-width: 100% !important; }
#submit .wpforms-field input,
#submit .wpforms-field select,
#submit .wpforms-field textarea {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  box-shadow: none !important;
}
#submit .wpforms-field input:focus,
#submit .wpforms-field select:focus,
#submit .wpforms-field textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: none !important;
  outline: none !important;
}
#submit .wpforms-submit-container { padding: 0 !important; }
#submit .wpforms-submit {
  background: var(--gold) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 600px !important;
  padding: 13px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  box-shadow: none !important;
}
#submit .wpforms-submit:hover { background: var(--gold-dark) !important; }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar   { background: var(--cream-mid); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stats-inner { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item   { text-align: center; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: 12px; color: var(--ink-light); font-weight: 500; }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.steps-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card   { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; transition: box-shadow 0.2s; }
.step-card:hover { box-shadow: var(--shadow-md); }
.step-number { font-family: var(--font-serif); font-size: 44px; font-weight: 600; color: var(--cream-dark); line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-size: 16px; color: var(--ink); margin-bottom: 9px; }
.step-card p  { font-size: 13.5px; color: var(--ink-mid); line-height: 1.65; margin: 0; }

/* ─── SUBJECTS GRID ──────────────────────────────────────────── */
.subjects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.subject-card  { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 16px; text-align: center; cursor: pointer; transition: all 0.18s; text-decoration: none; display: block; }
.subject-card:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-3px); box-shadow: var(--shadow-sm); text-decoration: none; }
.subject-icon  { font-size: 28px; margin-bottom: 10px; display: block; }
.subject-name  { font-size: 13.5px; font-weight: 600; color: var(--ink); display: block; }
.subject-sub   { font-size: 11.5px; color: var(--ink-light); margin-top: 3px; display: block; }

/* ─── BENEFITS ───────────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card  { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px 22px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: var(--gold-light); }
.benefit-icon  { width: 42px; height: 42px; background: var(--gold-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); margin-bottom: 14px; }
.benefit-card h3 { font-size: 14.5px; color: var(--ink); margin-bottom: 7px; }
.benefit-card p  { font-size: 13px; color: var(--ink-mid); line-height: 1.65; margin: 0; }

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card   { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.review-stars  { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.review-text   { font-size: 13.5px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--ink); display: block; }
.reviewer-info { font-size: 12px; color: var(--ink-light); display: block; }

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; }
.pricing-card.featured { border: 2px solid var(--gold); }
.plan-badge    { display: inline-block; background: var(--gold-pale); color: var(--gold-dark); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.5px; }
.plan-name     { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.plan-price    { font-family: var(--font-serif); font-size: 36px; font-weight: 600; color: var(--gold); margin: 12px 0 4px; line-height: 1; }
.plan-price span { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--ink-light); }
.plan-features { margin: 18px 0 26px; border-top: 1px solid var(--border); }
.plan-features li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-mid); padding: 8px 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border-bottom: none; }
.check-mark    { color: #5C8A3C; font-weight: 700; flex-shrink: 0; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-item      { border-bottom: 1px solid var(--border); }
.faq-question  { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; gap: 16px; user-select: none; }
.faq-toggle    { font-size: 22px; color: var(--gold); flex-shrink: 0; line-height: 1; transition: transform 0.22s; font-weight: 300; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer    { font-size: 14px; color: var(--ink-mid); line-height: 1.8; padding-bottom: 20px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band    { background: var(--ink); padding: 72px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-serif); color: var(--white); font-size: clamp(22px, 3vw, 32px); margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 32px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer        { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 0 0; }
.footer-grid        { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo        { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--white); display: block; margin-bottom: 12px; text-decoration: none; }
.footer-logo em     { color: var(--gold); font-style: normal; }
.footer-logo:hover  { text-decoration: none; color: var(--white); }
.footer-desc        { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 22px; }
.footer-col h4      { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col li      { margin-bottom: 9px; }
.footer-col a       { font-size: 13px; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom      { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,0.28); }

/* ─── SUBJECT PAGE ───────────────────────────────────────────── */
.subject-hero    { background: var(--white); border-bottom: 1px solid var(--border); padding: 60px 0 52px; }
.subject-hero h1 { font-family: var(--font-serif); margin-bottom: 14px; }
.subject-hero p  { font-size: 16px; max-width: 560px; }
.subject-topics  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-card      { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; transition: all 0.18s; }
.topic-card:hover{ border-color: var(--gold); background: var(--gold-pale); }
.topic-card h3   { font-size: 14.5px; margin-bottom: 6px; color: var(--ink); }
.topic-card p    { font-size: 13px; color: var(--ink-mid); margin: 0; }

/* ─── BREADCRUMBS ────────────────────────────────────────────── */
.breadcrumbs      { padding: 14px 0; font-size: 13px; color: var(--ink-light); border-bottom: 1px solid var(--border); background: var(--white); }
.breadcrumbs a    { color: var(--gold); }
.breadcrumbs span { margin: 0 6px; color: var(--border-mid); }

/* ─── CONTENT & SIDEBAR ──────────────────────────────────────── */
.page-hero       { background: var(--white); border-bottom: 1px solid var(--border); padding: 52px 0; }
.page-hero h1    { font-family: var(--font-serif); margin-bottom: 12px; }
.page-hero p     { font-size: 16px; max-width: 560px; }
.content-wrap    { max-width: 760px; }
.content-wrap h2 { font-family: var(--font-serif); margin: 2rem 0 0.75rem; }
.content-wrap h3 { margin: 1.5rem 0 0.5rem; }
.content-wrap p  { margin-bottom: 1rem; }
.content-wrap ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.content-wrap ul li { color: var(--ink-mid); margin-bottom: 0.4rem; }
.sidebar-layout  { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.sidebar-widget  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 22px; }
.sidebar-widget h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sidebar-widget li { margin-bottom: 8px; }
.sidebar-widget a  { font-size: 13.5px; color: var(--ink-mid); }
.sidebar-widget a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Sticky header */
  .site-header { position: sticky; top: 0; z-index: 1000; }
  /* Mobile nav */
  .nav-menu {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 28px 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-menu--open { display: flex; }
  .nav-menu a     { font-size: 15px; padding: 4px 0; }
  .nav-toggle     { display: block; }
  /* Hero */
  .hero-inner { flex-direction: column; }
  .hero-form  { width: 100%; max-width: 550px; margin: 0 auto; }
  /* Grids */
  .steps-grid,
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid,
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .sidebar-layout{ grid-template-columns: 1fr; }
  .stats-inner   { gap: 28px; }
}

@media (max-width: 580px) {
  .section       { padding: 48px 0; }
  .hero          { padding: 48px 0; }
  .steps-grid,
  .subjects-grid,
  .benefits-grid,
  .reviews-grid,
  .pricing-grid,
  .footer-grid,
  .subject-topics { grid-template-columns: 1fr; }
  .hero-cta      { flex-direction: column; }
  .nav-cta .btn-outline { display: none; }
  .stats-inner   { gap: 20px; }
  .hero-form .wpforms-submit { width: 100% !important; }
}

/* ─── ACCESSIBILITY FOCUS STYLES ─────────────────────────────── */
.btn:focus-visible,
.wpforms-submit:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

  height: 58px !important;
}
.wa-label {
  background: #1A1714 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  transform: translateX(10px) !important;
  transition: opacity 0.2s, transform 0.2s !important;
  position: static !important;
}
.wa-float:hover .wa-label {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
/* Hide any emoji that might appear */
.wa-btn::before { display: none !important; }
@media (max-width: 580px) {
  .wa-float { bottom: 20px !important; right: 20px !important; }
  .wa-btn { width: 52px !important; height: 52px !important; min-width: 52px !important; }
  .wa-label { display: none !important; }
}
