/* ==========================================================================
   HAWK GLIDE — Stylesheet
   Theme: black & white with the logo's pink→red gradient accent.
   Direction: "glide" — swift, soaring, upward motion. Sora display + Inter.
   ========================================================================== */

:root {
  /* Core palette */
  --ink:        #0d0d0d;   /* near-black, from logo wordmark */
  --ink-2:      #161616;
  --ink-3:      #1f1f1f;
  --paper:      #ffffff;
  --mist:       #f5f5f6;   /* light section background */
  --line:       #e7e7e9;
  --muted:      #6b6b70;
  --muted-dark: #a6a6ad;

  /* Accent — sampled from the logo wings (pink → red) */
  --accent:     #ef4368;
  --accent-2:   #e11d48;
  --accent-soft:#ff6b8a;
  --grad: linear-gradient(120deg, #ff5d7e 0%, #ef4368 45%, #d6173c 100%);

  /* Type */
  --display: 'Sora', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  /* Rhythm */
  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(13,13,13,.28);
  --shadow-sm: 0 8px 24px -12px rgba(13,13,13,.22);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.center-actions { justify-content: center; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1,h2,h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
p  { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #45454b; line-height: 1.6; }
.big-text { font-size: 1.18rem; color: #3a3a40; }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--accent-soft); }
.accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: -.01em;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(225,29,72,.55); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(225,29,72,.6); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.new-global-btn {
  color: #ee4366 !important;
  border: 1px solid #ee4366 !important;
  padding: 17px 34px !important;
  font-size: 1.02rem !important;
  border-radius: 100px !important;
}
/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(13,13,13,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 3px; width: auto; }

.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  padding: 10px 14px; border-radius: 8px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--accent-2); }
.nav-list > li > a.active { background: rgba(239,67,104,.08); }
.caret { font-size: .7rem; transition: transform .25s; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(620px, 86vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
.dropdown-grid a {
  font-size: .9rem; padding: 8px 10px; border-radius: 8px; color: #2c2c30;
  transition: background .18s, color .18s; font-weight: 500;
}
.dropdown-grid a:hover { background: var(--mist); color: var(--accent-2); }
.dropdown-all {
  display: block; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--accent-2);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-alt { background: var(--mist); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--muted-dark); }
.section-head { margin-bottom: 52px; }
.section-head.center { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 520px at 78% -10%, rgba(239,67,104,.12), transparent 60%), #fff;
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; }
.hero-stats strong { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 800; }
.hero-stats span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* Hero visual — orbiting keywords around an SEO core */
.hero-visual { display: flex; justify-content: center; }
.orbit { position: relative; width: 340px; height: 340px; }
.orbit-ring { position: absolute; inset: 0; border: 1.5px dashed rgba(239,67,104,.35); border-radius: 50%; animation: spin 26s linear infinite; }
.orbit-ring.r2 { inset: 46px; border-color: rgba(13,13,13,.12); animation-duration: 18s; animation-direction: reverse; }
.orbit-core {
  position: absolute; inset: 50%; width: 116px; height: 116px; transform: translate(-50%,-50%);
  background: var(--grad); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 24px 60px -18px rgba(225,29,72,.6); letter-spacing: .04em;
  animation: float 5s var(--ease) infinite;
}
.chip {
  position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-family: var(--display); font-weight: 700; font-size: .82rem; padding: 8px 14px; border-radius: 100px;
  animation: float 6s var(--ease) infinite;
}
.chip.c1 { top: 2%; left: 30%; }
.chip.c2 { top: 32%; right: -6%; animation-delay: .8s; }
.chip.c3 { bottom: 6%; right: 14%; animation-delay: 1.4s; }
.chip.c4 { bottom: 24%; left: -8%; animation-delay: 2s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
.orbit-core { animation: floatCore 5s var(--ease) infinite; }
@keyframes floatCore { 0%,100%{ transform: translate(-50%,-50%) translateY(0);} 50%{ transform: translate(-50%,-50%) translateY(-8px);} }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: radial-gradient(900px 420px at 85% -20%, rgba(239,67,104,.1), transparent 60%), var(--ink);
  color: #fff; padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
}
.page-hero h1 { margin: 8px 0 18px; }
.page-hero .lead { color: var(--muted-dark); max-width: 720px; }
.page-hero .eyebrow { color: var(--accent-soft); }
.service-hero .hero-actions { margin-top: 28px; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: var(--muted-dark); margin-bottom: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent-soft); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: #fff; }

/* ---------- Cards grid (services) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden; display: flex; flex-direction: column;
}
.service-card::before {
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(239,67,104,.1); color: var(--accent-2);
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .02em;
}
.service-card:hover .service-card-icon { background: var(--grad); color: #fff; }
.service-card h3, .service-card .card-title { margin-bottom: 8px; }
.service-card .card-title { font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.service-card p { font-size: .94rem; flex: 1; }
.card-link { margin-top: 16px; font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--accent-2); }
.service-card .btn { margin-top: 18px; align-self: flex-start; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-num {
  font-family: var(--display); font-weight: 800; font-size: 1.4rem;
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 18px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .94rem; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.process-step {
  position: relative; padding: 30px 24px; border-radius: var(--radius);
  background: var(--ink-2); border: 1px solid var(--ink-3);
}
.section:not(.section-dark) .process-step { background: #fff; border-color: var(--line); }
.step-no {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.15rem;
  margin-bottom: 18px;
}
.process-step h3 { margin-bottom: 8px; }

/* ---------- Split layouts ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { margin-bottom: 16px; }
.split-copy .lead, .split-copy p { margin-bottom: 24px; }

.check-list { display: grid; gap: 12px; margin-bottom: 28px; }
.check-list li { position: relative; padding-left: 34px; color: #3a3a40; font-weight: 500; }
.check-list.light li { color: var(--muted-dark); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}

/* Result bars visual */
.split-visual { display: flex; flex-direction: column; align-items: center; }
.result-bars {
  display: flex; align-items: flex-end; gap: 16px; height: 280px; width: 100%;
  max-width: 380px; padding: 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.section-dark .result-bars, .page-hero .result-bars { background: var(--ink-2); border-color: var(--ink-3); }
.bar {
  flex: 1; height: var(--h); min-height: 12px; border-radius: 8px 8px 4px 4px;
  background: var(--grad); position: relative; display: flex; align-items: flex-end; justify-content: center;
  animation: grow 1s var(--ease) both;
}
.bar span { position: absolute; bottom: -24px; font-size: .72rem; color: var(--muted); font-weight: 600; }
@keyframes grow { from { height: 0; } }
.result-caption { font-size: .82rem; color: var(--muted); margin-top: 34px; }

/* Stat cards (about) */
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.stat-card strong { display: block; font-family: var(--display); font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card span { font-size: .88rem; color: var(--muted); }

/* ---------- Included grid (service page) ---------- */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 14px; }
.included-item {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px; font-weight: 500; color: #2c2c30;
}
.included-item .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: .75rem; font-weight: 700;
}

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px; }
.industry {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px; text-align: center; font-family: var(--display); font-weight: 600; font-size: .95rem;
  transition: transform .25s var(--ease), color .25s, border-color .25s;
}
.industry:hover { transform: translateY(-3px); color: var(--accent-2); border-color: var(--accent-soft); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 24px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 16px; }
.testimonial blockquote { font-size: 1.06rem; color: #2c2c30; line-height: 1.55; margin-bottom: 18px; }
.testimonial figcaption { font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.section-dark .faq-item { border-color: var(--ink-3); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: inherit;
}
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(239,67,104,.1); color: var(--accent-2); display: grid; place-items: center; font-size: 1.2rem; transition: transform .3s var(--ease), background .3s, color .3s; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--grad); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 22px; max-width: 760px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(44px,5vw,64px) 0; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band .btn-primary { background: #fff; color: var(--accent-2); box-shadow: 0 14px 34px -12px rgba(0,0,0,.4); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius); padding: 32px; }
.form-wrap-light { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.form-title { font-size: 1.4rem; margin-bottom: 22px; }
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .02em; }
.form-wrap:not(.form-wrap-light) .field label { color: #d8d8dc; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  font-family: var(--body); font-size: .95rem; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.form-wrap:not(.form-wrap-light) .field input,
.form-wrap:not(.form-wrap-light) .field select,
.form-wrap:not(.form-wrap-light) .field textarea { background: var(--ink-3); border-color: #2c2c30; color: #fff; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(239,67,104,.18);
}
.field textarea { resize: vertical; }
.form-note { font-size: .9rem; margin-top: 4px; min-height: 1em; }
.form-note.ok { color: #2bb673; }
.form-note.err { color: var(--accent-2); }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.contact-card { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.contact-label { display: block; font-family: var(--display); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 6px; }
.contact-value { font-weight: 600; color: var(--ink); word-break: break-word; }

/* ---------- Footer ---------- */
.global-footer-img {
  padding: 10px;
  background-color: #fff;
  border-radius: 15px;
	margin-bottom:15px;
}
.site-footer { background: var(--ink); color: #fff; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: auto; margin-bottom: 18px;}
.footer-brand p { color: var(--muted-dark); font-size: .92rem; margin-bottom: 16px; max-width: 360px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: var(--accent-soft); }
.footer-col h3 { font-size: 1rem; margin-bottom: 18px; color: #fff; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--muted-dark); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-col p { color: var(--muted-dark); font-size: .92rem; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid var(--ink-3); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted); font-size: .84rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--grad); color: #fff;
  font-size: 1.3rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- 404 ---------- */
.notfound { padding-top: 90px; padding-bottom: 90px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .orbit { width: 280px; height: 280px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); box-shadow: var(--shadow);
  }
  .main-nav.open { max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 24px; }
  .nav-list > li > a { padding: 14px 10px; border-radius: 8px; }
  .nav-cta { margin-top: 10px; }
  .nav-cta .btn { width: 100%; }
  .dropdown {
    position: static; transform: none; width: 100%; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 0 12px;
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 900px; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .contact-cards, .stat-cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   WordPress core / theme integration styles (appended)
   ============================================================ */

/* Accessibility: screen-reader text */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #fff;
	clip: auto !important;
	clip-path: none;
	color: #0d0d0d;
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	height: auto;
	left: 6px;
	line-height: normal;
	padding: 14px 22px;
	text-decoration: none;
	top: 6px;
	width: auto;
	z-index: 100000;
}

/* Custom logo sizing */
.custom-logo-link { display: inline-block; line-height: 0; }
.custom-logo { max-height: 30px; width: auto; height: auto; }

/* Editable page content (the_content) */
.entry-content { line-height: 1.75; }
.entry-content > * + * { margin-top: 1.1rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content h3 { margin-top: 1.5rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.4rem; }
.entry-content li + li { margin-top: 0.4rem; }
.entry-content a { color: var(--accent, #ef4368); }
.entry-content img { max-width: 100%; height: auto; border-radius: 12px; }
.entry-content blockquote {
	border-left: 3px solid var(--accent, #ef4368);
	padding-left: 1.2rem;
	font-style: italic;
	color: #444;
}

/* WordPress alignment + caption classes */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1100px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: #666; text-align: center; margin-top: 0.4rem; }
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* Pagination */
.pagination { margin-top: 2.5rem; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.7rem;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	color: #0d0d0d;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--grad, linear-gradient(135deg, #ef4368, #e11d48));
	color: #fff;
	border-color: transparent;
}

/* Page links (multi-page posts) */
.page-links { margin-top: 1.5rem; font-weight: 600; display: flex; gap: 0.5rem; }

/* Comments (minimal) */
.comments-area { margin-top: 3rem; }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: 1rem 0; border-bottom: 1px solid #eee; }
