/*
Theme Name: IPTV Ireland - Shamrock
Theme URI: https://iptvshamrock.com/
Author: IPTV Ireland (Shamrock)
Author URI: https://iptvshamrock.com/
Description: Production-ready custom WordPress theme for IPTV Ireland (iptvshamrock.com). Local National Brand design family — "Emerald Aerial" identity. Mobile-first, accessible, fast, SEO-focused, fully localized for the Irish market (English, EUR). No jQuery, inline SVG icons, schema-ready.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptvshamrock
Tags: business, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, blog
*/

/* =========================================================================
   IPTV IRELAND — SHAMROCK  ·  DESIGN SYSTEM
   Design family: Local National Brand · Concept: "Emerald Aerial"
   Prefix: shk-
   ========================================================================= */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------- */
:root {
  /* Brand / surfaces */
  --shk-bg: #fbfaf6;
  --shk-bg-soft: #f1f5f0;
  --shk-bg-emerald: #0f2a1d;
  --shk-bg-emerald-2: #123626;
  --shk-surface: #ffffff;

  /* Text */
  --shk-heading: #0f2a1d;
  --shk-body: #36433c;
  --shk-muted: #6b766f;
  --shk-on-dark: #eef5ef;
  --shk-on-dark-muted: #b6c7bb;

  /* Brand colours */
  --shk-emerald: #1e7a46;
  --shk-emerald-dark: #155e36;
  --shk-emerald-light: #2e9e5b;
  --shk-amber: #e8a317;       /* primary CTA accent */
  --shk-amber-dark: #c9890b;
  --shk-success: #2e9e5b;
  --shk-warning: #d97706;
  --shk-whatsapp: #25d366;
  --shk-whatsapp-dark: #1da851;

  /* Lines & shadows */
  --shk-border: #e2e6df;
  --shk-border-strong: #cdd5cb;
  --shk-shadow-sm: 0 1px 2px rgba(15, 42, 29, .06), 0 1px 3px rgba(15, 42, 29, .05);
  --shk-shadow-md: 0 8px 24px rgba(15, 42, 29, .08), 0 2px 6px rgba(15, 42, 29, .05);
  --shk-shadow-lg: 0 24px 60px rgba(15, 42, 29, .14), 0 6px 18px rgba(15, 42, 29, .08);

  /* Radii */
  --shk-r-sm: 10px;
  --shk-r-md: 14px;
  --shk-r-lg: 20px;
  --shk-r-xl: 28px;
  --shk-r-pill: 999px;

  /* Typography */
  --shk-font-head: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shk-font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --shk-container: 1180px;
  --shk-container-narrow: 820px;
  --shk-gap: clamp(1rem, 3vw, 2rem);
  --shk-section-y: clamp(3.25rem, 7vw, 6rem);
  --shk-header-h: 76px;

  /* Motion */
  --shk-ease: cubic-bezier(.22, .61, .36, 1);
  --shk-dur: .28s;
}

/* ---------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--shk-font-body);
  font-size: 1.0625rem;       /* 17px base — readable on mobile */
  line-height: 1.65;
  color: var(--shk-body);
  background: var(--shk-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--shk-emerald); text-decoration: none; transition: color var(--shk-dur) var(--shk-ease); }
a:hover { color: var(--shk-emerald-dark); }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--shk-font-head);
  color: var(--shk-heading);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; color: var(--shk-heading); }

/* Accessibility helpers */
.shk-skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--shk-amber); color: #1a1205; font-weight: 700;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--shk-r-sm) 0;
}
.shk-skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--shk-amber); outline-offset: 2px; border-radius: 4px; }
.shk-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------
   3. LAYOUT
   --------------------------------------------------------------- */
.shk-container { width: 100%; max-width: var(--shk-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.shk-narrow { max-width: var(--shk-container-narrow); margin-inline: auto; }
.shk-section { padding-block: var(--shk-section-y); }
.shk-section--soft { background: var(--shk-bg-soft); }
.shk-section--emerald { background: var(--shk-bg-emerald); color: var(--shk-on-dark); }
.shk-section--emerald h1, .shk-section--emerald h2, .shk-section--emerald h3 { color: #fff; }

.shk-section-head { max-width: 640px; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.shk-section-head--center { margin-inline: auto; text-align: center; }
.shk-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--shk-font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--shk-emerald);
  margin-bottom: .85rem;
}
.shk-section--emerald .shk-eyebrow { color: var(--shk-amber); }
.shk-eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.shk-lead { font-size: 1.15rem; color: var(--shk-muted); }
.shk-section--emerald .shk-lead { color: var(--shk-on-dark-muted); }

.shk-grid { display: grid; gap: var(--shk-gap); }
.shk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.shk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.shk-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------- */
.shk-btn {
  --_bg: var(--shk-amber); --_fg: #1a1205;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--shk-font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--shk-r-pill); border: 0; cursor: pointer;
  background: var(--_bg); color: var(--_fg); white-space: nowrap;
  transition: transform var(--shk-dur) var(--shk-ease), box-shadow var(--shk-dur) var(--shk-ease), background var(--shk-dur);
  box-shadow: 0 6px 18px rgba(232, 163, 23, .28);
}
.shk-btn:hover { transform: translateY(-2px); color: var(--_fg); box-shadow: 0 12px 26px rgba(232, 163, 23, .36); }
.shk-btn:active { transform: translateY(0); }
.shk-btn svg { width: 1.2em; height: 1.2em; }

.shk-btn--secondary {
  --_bg: transparent; --_fg: var(--shk-emerald);
  box-shadow: none; border: 1.5px solid var(--shk-border-strong);
}
.shk-btn--secondary:hover { background: var(--shk-bg-soft); box-shadow: none; --_fg: var(--shk-emerald-dark); }
.shk-section--emerald .shk-btn--secondary { --_fg: #fff; border-color: rgba(255,255,255,.35); }
.shk-section--emerald .shk-btn--secondary:hover { background: rgba(255,255,255,.08); }

.shk-btn--emerald { --_bg: var(--shk-emerald); --_fg: #fff; box-shadow: 0 6px 18px rgba(30,122,70,.28); }
.shk-btn--emerald:hover { --_bg: var(--shk-emerald-dark); color: #fff; box-shadow: 0 12px 26px rgba(30,122,70,.34); }

.shk-btn--wa { --_bg: var(--shk-whatsapp); --_fg: #06351c; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.shk-btn--wa:hover { --_bg: var(--shk-whatsapp-dark); color: #06351c; }

.shk-btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.shk-btn--block { width: 100%; }

/* ---------------------------------------------------------------
   5. HEADER
   --------------------------------------------------------------- */
.shk-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--shk-border);
}
.shk-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--shk-header-h); }
.shk-brand { display: inline-flex; align-items: center; gap: .6rem; }
.shk-brand img { height: 46px; width: auto; }
.shk-brand__text { font-family: var(--shk-font-head); font-weight: 800; font-size: 1.2rem; color: var(--shk-heading); letter-spacing: -.02em; }
.shk-brand__text span { color: var(--shk-emerald); }

.shk-nav { display: flex; align-items: center; gap: .35rem; }
.shk-nav ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.shk-nav a {
  font-family: var(--shk-font-head); font-weight: 600; font-size: .96rem; color: var(--shk-heading);
  padding: .55rem .8rem; border-radius: var(--shk-r-sm); display: inline-block;
}
.shk-nav a:hover, .shk-nav .current-menu-item > a { color: var(--shk-emerald); background: var(--shk-bg-soft); }
.shk-header__actions { display: flex; align-items: center; gap: .6rem; }

.shk-burger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: var(--shk-surface);
  border: 1px solid var(--shk-border); border-radius: var(--shk-r-sm); cursor: pointer;
}
.shk-burger span { display: block; width: 22px; height: 2px; background: var(--shk-heading); border-radius: 2px; transition: transform var(--shk-dur) var(--shk-ease), opacity var(--shk-dur); }
.shk-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.shk-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.shk-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------
   6. HERO (local national identity)
   --------------------------------------------------------------- */
.shk-hero { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.shk-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(46,158,91,.12), transparent 60%),
    radial-gradient(50% 60% at 5% 90%, rgba(232,163,23,.10), transparent 60%);
}
.shk-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.shk-hero__eyebrow { margin-bottom: 1rem; }
.shk-hero h1 { margin-bottom: 1.1rem; }
.shk-hero h1 .shk-mark { color: var(--shk-emerald); }
.shk-hero__lead { font-size: 1.2rem; color: var(--shk-body); max-width: 42ch; margin-bottom: 1.6rem; }
.shk-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.shk-hero__chips { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }
.shk-chip { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--shk-heading); }
.shk-chip svg { width: 18px; height: 18px; color: var(--shk-emerald); flex: none; }

.shk-hero__visual { position: relative; }
.shk-hero__card {
  border-radius: var(--shk-r-xl); overflow: hidden; box-shadow: var(--shk-shadow-lg);
  border: 1px solid var(--shk-border); background: var(--shk-surface);
}
.shk-hero__card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.shk-hero__badge {
  position: absolute; bottom: -18px; left: -18px; background: var(--shk-surface);
  border: 1px solid var(--shk-border); border-radius: var(--shk-r-lg); box-shadow: var(--shk-shadow-md);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.shk-hero__badge strong { font-family: var(--shk-font-head); font-size: 1.35rem; display: block; line-height: 1; }
.shk-hero__badge small { color: var(--shk-muted); font-size: .82rem; }
.shk-hero__badge .shk-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--shk-success); box-shadow: 0 0 0 4px rgba(46,158,91,.18); }

/* ---------------------------------------------------------------
   7. TRUST STATS STRIP
   --------------------------------------------------------------- */
.shk-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--shk-border); border: 1px solid var(--shk-border); border-radius: var(--shk-r-lg); overflow: hidden; }
.shk-stat { background: var(--shk-surface); padding: 1.5rem 1.25rem; text-align: center; }
.shk-stat__num { font-family: var(--shk-font-head); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--shk-emerald); line-height: 1; }
.shk-stat__label { font-size: .9rem; color: var(--shk-muted); margin-top: .35rem; }

/* ---------------------------------------------------------------
   8. CARDS (feature / why / support / step)
   --------------------------------------------------------------- */
.shk-card {
  background: var(--shk-surface); border: 1px solid var(--shk-border);
  border-radius: var(--shk-r-lg); padding: 1.6rem; box-shadow: var(--shk-shadow-sm);
  transition: transform var(--shk-dur) var(--shk-ease), box-shadow var(--shk-dur) var(--shk-ease), border-color var(--shk-dur);
}
.shk-card:hover { transform: translateY(-4px); box-shadow: var(--shk-shadow-md); border-color: var(--shk-border-strong); }
.shk-card__icon {
  width: 52px; height: 52px; border-radius: var(--shk-r-md); display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(46,158,91,.16), rgba(30,122,70,.08));
  color: var(--shk-emerald); margin-bottom: 1rem;
}
.shk-card__icon svg { width: 26px; height: 26px; }
.shk-card h3 { margin-bottom: .5rem; }
.shk-card p { color: var(--shk-body); margin: 0; }

/* Numbered step cards */
.shk-step { position: relative; padding-top: 2.4rem; }
.shk-step__num {
  position: absolute; top: 0; left: 1.6rem; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--shk-amber); color: #1a1205;
  font-family: var(--shk-font-head); font-weight: 800; display: grid; place-items: center; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(232,163,23,.3);
}

/* ---------------------------------------------------------------
   9. PRICING
   --------------------------------------------------------------- */
.shk-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
.shk-plan {
  position: relative; background: var(--shk-surface); border: 1.5px solid var(--shk-border);
  border-radius: var(--shk-r-lg); padding: 1.75rem 1.5rem; display: flex; flex-direction: column;
  transition: transform var(--shk-dur) var(--shk-ease), box-shadow var(--shk-dur) var(--shk-ease);
}
.shk-plan:hover { transform: translateY(-4px); box-shadow: var(--shk-shadow-md); }
.shk-plan--featured { border-color: var(--shk-emerald); box-shadow: var(--shk-shadow-md); }
.shk-plan__ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--shk-emerald); color: #fff; font-family: var(--shk-font-head); font-weight: 700;
  font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: var(--shk-r-pill);
  white-space: nowrap;
}
.shk-plan__name { font-family: var(--shk-font-head); font-weight: 700; font-size: 1.05rem; color: var(--shk-heading); }
.shk-plan__price { font-family: var(--shk-font-head); font-weight: 800; font-size: 2.4rem; color: var(--shk-heading); line-height: 1; margin: .6rem 0 .2rem; }
.shk-plan__price span { font-size: 1rem; font-weight: 600; color: var(--shk-muted); }
.shk-plan__per { color: var(--shk-muted); font-size: .9rem; margin-bottom: 1.1rem; }
.shk-plan__list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .55rem; }
.shk-plan__list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .96rem; }
.shk-plan__list svg { width: 18px; height: 18px; color: var(--shk-success); flex: none; margin-top: .15rem; }
.shk-plan .shk-btn { margin-top: auto; }

/* ---------------------------------------------------------------
   10. DEVICE / CONTENT SHOWCASE
   --------------------------------------------------------------- */
.shk-devices { display: grid; grid-template-columns: repeat(6, 1fr); gap: .9rem; }
.shk-device {
  background: var(--shk-surface); border: 1px solid var(--shk-border); border-radius: var(--shk-r-md);
  padding: 1.1rem .75rem; text-align: center; font-weight: 600; font-size: .9rem; color: var(--shk-heading);
}
.shk-device svg { width: 30px; height: 30px; margin: 0 auto .55rem; color: var(--shk-emerald); }

.shk-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.shk-showcase__media { border-radius: var(--shk-r-xl); overflow: hidden; box-shadow: var(--shk-shadow-md); border: 1px solid var(--shk-border); }
.shk-showcase__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.shk-checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.shk-checklist li { display: flex; gap: .6rem; align-items: flex-start; }
.shk-checklist svg { width: 20px; height: 20px; color: var(--shk-success); flex: none; margin-top: .2rem; }

/* ---------------------------------------------------------------
   11. FAQ ACCORDION
   --------------------------------------------------------------- */
.shk-faq { display: grid; gap: .75rem; max-width: 800px; margin-inline: auto; }
.shk-faq__item { background: var(--shk-surface); border: 1px solid var(--shk-border); border-radius: var(--shk-r-md); overflow: hidden; }
.shk-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--shk-font-head); font-weight: 600; font-size: 1.05rem; color: var(--shk-heading);
  padding: 1.15rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.shk-faq__q:hover { color: var(--shk-emerald); }
.shk-faq__icon { flex: none; width: 22px; height: 22px; transition: transform var(--shk-dur) var(--shk-ease); color: var(--shk-emerald); }
.shk-faq__q[aria-expanded="true"] .shk-faq__icon { transform: rotate(45deg); }
.shk-faq__a { max-height: 0; overflow: hidden; transition: max-height var(--shk-dur) var(--shk-ease); }
.shk-faq__a-inner { padding: 0 1.3rem 1.25rem; color: var(--shk-body); }

/* ---------------------------------------------------------------
   12. TABLES → CARDS (responsive)
   --------------------------------------------------------------- */
.shk-table-wrap { overflow-x: auto; border-radius: var(--shk-r-lg); border: 1px solid var(--shk-border); }
.shk-table { width: 100%; border-collapse: collapse; background: var(--shk-surface); min-width: 560px; }
.shk-table th, .shk-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--shk-border); }
.shk-table th { font-family: var(--shk-font-head); font-weight: 700; color: var(--shk-heading); background: var(--shk-bg-soft); }
.shk-table tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------------
   13. GUARANTEE / CTA BANNER
   --------------------------------------------------------------- */
.shk-cta-banner {
  background: linear-gradient(135deg, var(--shk-bg-emerald), var(--shk-bg-emerald-2));
  color: var(--shk-on-dark); border-radius: var(--shk-r-xl); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.shk-cta-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(50% 80% at 80% 0%, rgba(46,158,91,.35), transparent 60%);
}
.shk-cta-banner > * { position: relative; z-index: 1; }
.shk-cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.shk-cta-banner p { color: var(--shk-on-dark-muted); max-width: 52ch; margin: 0 auto 1.6rem; font-size: 1.1rem; }
.shk-cta-banner .shk-hero__cta { justify-content: center; }

.shk-guarantee { display: flex; align-items: center; gap: 1.25rem; background: var(--shk-surface); border: 1px solid var(--shk-border); border-left: 4px solid var(--shk-success); border-radius: var(--shk-r-lg); padding: 1.5rem; box-shadow: var(--shk-shadow-sm); }
.shk-guarantee svg { width: 48px; height: 48px; color: var(--shk-success); flex: none; }

/* ---------------------------------------------------------------
   14. FOOTER
   --------------------------------------------------------------- */
.shk-footer { background: var(--shk-bg-emerald); color: var(--shk-on-dark-muted); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.shk-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.shk-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.shk-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.shk-footer a { color: var(--shk-on-dark-muted); }
.shk-footer a:hover { color: #fff; }
.shk-footer__brand img { height: 48px; margin-bottom: 1rem; }
.shk-footer__brand p { max-width: 36ch; }
.shk-footer__contact { display: grid; gap: .6rem; margin-top: 1rem; }
.shk-footer__contact a { display: inline-flex; align-items: center; gap: .55rem; }
.shk-footer__contact svg { width: 18px; height: 18px; color: var(--shk-amber); flex: none; }
.shk-footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.shk-footer__bottom a { color: var(--shk-on-dark-muted); }
.shk-footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------------------------------------------------------------
   15. STICKY MOBILE ACTION BAR
   --------------------------------------------------------------- */
.shk-mobile-bar { display: none; }

/* ---------------------------------------------------------------
   16. BREADCRUMBS
   --------------------------------------------------------------- */
.shk-breadcrumbs { font-size: .88rem; color: var(--shk-muted); padding-block: 1rem; }
.shk-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.shk-breadcrumbs li::after { content: "/"; margin-left: .4rem; color: var(--shk-border-strong); }
.shk-breadcrumbs li:last-child::after { content: ""; }
.shk-breadcrumbs a { color: var(--shk-emerald); }

/* ---------------------------------------------------------------
   17. PAGE HERO (inner pages)
   --------------------------------------------------------------- */
.shk-pagehero { background: var(--shk-bg-soft); border-bottom: 1px solid var(--shk-border); padding-block: clamp(2rem, 5vw, 3.5rem); }
.shk-pagehero h1 { margin-bottom: .6rem; }
.shk-pagehero p { color: var(--shk-muted); font-size: 1.1rem; max-width: 60ch; margin: 0; }

/* ---------------------------------------------------------------
   18. BLOG
   --------------------------------------------------------------- */
.shk-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--shk-gap); }
.shk-post-card { background: var(--shk-surface); border: 1px solid var(--shk-border); border-radius: var(--shk-r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--shk-dur) var(--shk-ease), box-shadow var(--shk-dur); }
.shk-post-card:hover { transform: translateY(-4px); box-shadow: var(--shk-shadow-md); }
.shk-post-card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--shk-bg-soft); }
.shk-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.shk-post-card__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.shk-post-card__meta { font-size: .82rem; color: var(--shk-muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.shk-post-card h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.shk-post-card h3 a { color: var(--shk-heading); }
.shk-post-card h3 a:hover { color: var(--shk-emerald); }
.shk-post-card__excerpt { color: var(--shk-body); font-size: .96rem; margin-bottom: 1rem; }
.shk-post-card__more { margin-top: auto; font-family: var(--shk-font-head); font-weight: 600; }

.shk-article { max-width: 760px; margin-inline: auto; }
.shk-article img { border-radius: var(--shk-r-md); margin-block: 1.5rem; }
.shk-article h2 { margin: 2rem 0 .9rem; }
.shk-article h3 { margin: 1.6rem 0 .7rem; }
.shk-article p { margin-bottom: 1.2rem; }
.shk-article ul, .shk-article ol { margin-bottom: 1.2rem; }
.shk-article__meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--shk-muted); font-size: .92rem; margin-bottom: 1.5rem; }

.shk-sidebar { display: grid; gap: 1.5rem; align-content: start; }
.shk-widget { background: var(--shk-surface); border: 1px solid var(--shk-border); border-radius: var(--shk-r-lg); padding: 1.4rem; }
.shk-widget h4 { margin-bottom: .9rem; }

/* ---------------------------------------------------------------
   19. PROSE (legal / generic content)
   --------------------------------------------------------------- */
.shk-prose { max-width: 800px; margin-inline: auto; }
.shk-prose h2 { margin: 2rem 0 .8rem; }
.shk-prose h3 { margin: 1.5rem 0 .6rem; }
.shk-prose p, .shk-prose li { color: var(--shk-body); }
.shk-prose ul, .shk-prose ol { margin-bottom: 1.2rem; }
.shk-updated { display: inline-flex; align-items: center; gap: .5rem; background: var(--shk-bg-soft); border: 1px solid var(--shk-border); border-radius: var(--shk-r-pill); padding: .45rem 1rem; font-size: .88rem; color: var(--shk-muted); margin-bottom: 1.5rem; }

/* ---------------------------------------------------------------
   20. FORMS
   --------------------------------------------------------------- */
.shk-field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.shk-field label { font-family: var(--shk-font-head); font-weight: 600; font-size: .95rem; color: var(--shk-heading); }
.shk-field input, .shk-field textarea, .shk-field select {
  width: 100%; font: inherit; padding: .85rem 1rem; border: 1.5px solid var(--shk-border-strong);
  border-radius: var(--shk-r-sm); background: var(--shk-surface); color: var(--shk-body);
}
.shk-field input:focus, .shk-field textarea:focus, .shk-field select:focus { outline: none; border-color: var(--shk-emerald); box-shadow: 0 0 0 3px rgba(30,122,70,.15); }
.shk-form-card { background: var(--shk-surface); border: 1px solid var(--shk-border); border-radius: var(--shk-r-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shk-shadow-sm); }

/* ---------------------------------------------------------------
   21. SUPPORT / CONTACT CARDS
   --------------------------------------------------------------- */
.shk-support-card { text-align: center; }
.shk-support-card .shk-card__icon { margin-inline: auto; }

/* ---------------------------------------------------------------
   22. PAGINATION
   --------------------------------------------------------------- */
.shk-pagination { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: 2.5rem; }
.shk-pagination a, .shk-pagination span {
  display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .6rem;
  border-radius: var(--shk-r-sm); border: 1px solid var(--shk-border); font-family: var(--shk-font-head); font-weight: 600;
  background: var(--shk-surface); color: var(--shk-heading);
}
.shk-pagination a:hover { border-color: var(--shk-emerald); color: var(--shk-emerald); }
.shk-pagination .current { background: var(--shk-emerald); color: #fff; border-color: var(--shk-emerald); }

/* ---------------------------------------------------------------
   23. SCROLL REVEAL
   --------------------------------------------------------------- */
.shk-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--shk-ease), transform .6s var(--shk-ease); }
.shk-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .shk-reveal { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------
   24. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .shk-hero__grid { grid-template-columns: 1fr; }
  .shk-hero__visual { order: -1; max-width: 540px; }
  .shk-devices { grid-template-columns: repeat(3, 1fr); }
  .shk-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .shk-nav { display: none; }
  .shk-burger { display: flex; }
  .shk-nav--open {
    display: block; position: fixed; inset: var(--shk-header-h) 0 0; background: var(--shk-bg);
    padding: 1.25rem clamp(1rem, 4vw, 2rem) 6rem; overflow-y: auto; z-index: 99; border-top: 1px solid var(--shk-border);
  }
  .shk-nav--open ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .shk-nav--open a { padding: .9rem 1rem; font-size: 1.1rem; border-radius: var(--shk-r-sm); }
  .shk-nav--open .shk-header__actions { display: flex; margin-top: 1rem; }
  .shk-header__actions .shk-btn--desktop { display: none; }

  .shk-grid--3, .shk-grid--4, .shk-plans, .shk-stats, .shk-posts { grid-template-columns: 1fr 1fr; }
  .shk-showcase { grid-template-columns: 1fr; }
  .shk-showcase--reverse .shk-showcase__media { order: -1; }

  .shk-mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    gap: .6rem; padding: .7rem clamp(.75rem, 3vw, 1rem) calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(251,250,246,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--shk-border);
  }
  .shk-mobile-bar .shk-btn { flex: 1; }
  body { padding-bottom: 76px; }
}
@media (max-width: 560px) {
  .shk-grid--2, .shk-grid--3, .shk-grid--4, .shk-plans, .shk-stats, .shk-posts, .shk-devices { grid-template-columns: 1fr; }
  .shk-stats { border-radius: var(--shk-r-md); }
  .shk-stat { padding: 1.1rem; }
  .shk-footer__grid { grid-template-columns: 1fr; }
  .shk-footer__bottom { flex-direction: column; align-items: flex-start; }
  .shk-hero__badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
}

/* ---------------------------------------------------------------
   25. CITY / LANDING HERO (skyline banner)
   --------------------------------------------------------------- */
.shk-city-hero { position: relative; min-height: clamp(320px, 46vw, 460px); display: flex; align-items: flex-end; overflow: hidden; }
.shk-city-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.shk-city-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,42,29,.15) 0%, rgba(15,42,29,.55) 55%, rgba(15,42,29,.88) 100%); }
.shk-city-hero__inner { position: relative; z-index: 2; padding-block: clamp(2rem, 5vw, 3.5rem); color: #fff; }
.shk-city-hero h1 { color: #fff; }
.shk-city-hero p { color: rgba(255,255,255,.9); max-width: 56ch; font-size: 1.15rem; }
.shk-city-hero .shk-eyebrow { color: var(--shk-amber); }
.shk-city-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

.shk-localbar { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; padding: 1.1rem 0; }
.shk-localbar span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--shk-heading); font-size: .95rem; }
.shk-localbar svg { width: 18px; height: 18px; color: var(--shk-emerald); }

/* WordPress core helper classes */
.alignnone { margin: 1rem 0; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignleft { float: left; margin: .5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: .5rem 0 1rem 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--shk-muted); text-align: center; margin-top: .4rem; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); word-wrap: normal !important;
}
.sticky, .gallery-caption, .bypostauthor { display: block; }
