/*
Theme Name: Fly Thai Sky
Theme URI: https://flythaisky.com
Author: Fresh Digital
Author URI: https://freshdigital.com.au
Description: Custom WordPress theme for Fly Thai Sky — Thailand's indoor skydiving wind tunnel. Booking-first, bilingual (EN/TH), SEO-optimised with structured data baked in. Built to integrate with Amelia or Bookly booking plugins.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: flythaisky
Tags: booking, tourism, bilingual, one-column, custom-colors
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand — pulled from the Fly Thai Sky logo */
  --fts-red: #e31e2d;
  --fts-red-dark: #b8121f;
  --fts-blue: #1e3a8f;
  --fts-blue-dark: #142a6b;
  --fts-navy: #0c1a3e;
  --fts-sky: #eef4fd;
  --fts-white: #ffffff;
  --fts-off-white: #f7f9fc;
  --fts-grey: #5a6478;
  --fts-grey-light: #dde3ee;
  --fts-ink: #101828;
  --fts-gold: #ffb020;

  --fts-gradient-hero: linear-gradient(160deg, rgba(12,26,62,.92) 0%, rgba(30,58,143,.82) 55%, rgba(227,30,45,.55) 130%);
  --fts-gradient-cta: linear-gradient(135deg, var(--fts-red) 0%, var(--fts-red-dark) 100%);

  --fts-font-head: "Kanit", "Prompt", -apple-system, "Segoe UI", sans-serif;
  --fts-font-body: "Sarabun", "Inter", -apple-system, "Segoe UI", sans-serif;

  --fts-radius: 14px;
  --fts-radius-lg: 24px;
  --fts-shadow: 0 8px 30px rgba(12, 26, 62, .10);
  --fts-shadow-lg: 0 18px 50px rgba(12, 26, 62, .18);
  --fts-container: 1200px;
  --fts-transition: all .25s ease;
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fts-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fts-ink);
  background: var(--fts-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fts-blue); text-decoration: none; transition: var(--fts-transition); }
a:hover { color: var(--fts-red); }
h1, h2, h3, h4, h5 {
  font-family: var(--fts-font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fts-navy);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.3em; }
:focus-visible { outline: 3px solid var(--fts-gold); outline-offset: 2px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important; word-wrap: normal !important;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--fts-navy); color: #fff; padding: 10px 18px; z-index: 9999; }
.skip-link:focus { left: 0; }

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.fts-container { max-width: var(--fts-container); margin: 0 auto; padding: 0 24px; }
.fts-section { padding: clamp(56px, 8vw, 110px) 0; }
.fts-section--sky { background: var(--fts-sky); }
.fts-section--navy { background: var(--fts-navy); color: #dbe4f7; }
.fts-section--navy h2, .fts-section--navy h3 { color: #fff; }
.fts-grid { display: grid; gap: 28px; }
.fts-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fts-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fts-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .fts-grid--3, .fts-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fts-grid--2, .fts-grid--3, .fts-grid--4 { grid-template-columns: 1fr; }
}
.fts-kicker {
  display: inline-block;
  font-family: var(--fts-font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fts-red);
  margin-bottom: 10px;
}
.fts-section--navy .fts-kicker { color: var(--fts-gold); }
.fts-section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 52px); }
.fts-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.fts-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fts-font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 32px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: var(--fts-transition); line-height: 1;
}
.fts-btn--primary { background: var(--fts-gradient-cta); color: #fff !important; box-shadow: 0 8px 22px rgba(227,30,45,.35); }
.fts-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(227,30,45,.45); }
.fts-btn--ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.55); }
.fts-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.fts-btn--blue { background: var(--fts-blue); color: #fff !important; }
.fts-btn--blue:hover { background: var(--fts-blue-dark); transform: translateY(-2px); }
.fts-btn--outline { background: transparent; color: var(--fts-blue) !important; border-color: var(--fts-blue); }
.fts-btn--outline:hover { background: var(--fts-blue); color: #fff !important; }
.fts-btn--lg { padding: 18px 42px; font-size: 1.1rem; }

/* ==========================================================================
   5. HEADER / NAV
   ========================================================================== */
.fts-topbar {
  background: var(--fts-navy); color: #c8d4ef; font-size: .82rem;
  padding: 7px 0;
}
.fts-topbar .fts-container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.fts-topbar a { color: #fff; font-weight: 600; }
.fts-topbar__contact { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.fts-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(12,26,62,.08);
}
.fts-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 0; }
.fts-logo { display: flex; align-items: center; gap: 12px; font-family: var(--fts-font-head); }
.fts-logo img { max-height: 56px; width: auto; }
.fts-logo__text { font-size: 1.35rem; font-weight: 800; color: var(--fts-navy); line-height: 1; }
.fts-logo__text span { color: var(--fts-red); }
.fts-logo__tag { display: block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fts-grey); font-weight: 500; }
.fts-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.fts-nav a {
  display: block; padding: 10px 14px; font-family: var(--fts-font-head);
  font-weight: 500; font-size: .95rem; color: var(--fts-navy); border-radius: 8px;
}
.fts-nav a:hover, .fts-nav .current-menu-item > a { color: var(--fts-red); background: var(--fts-sky); }
.fts-nav .sub-menu {
  position: absolute; min-width: 220px; background: #fff; border-radius: 12px;
  box-shadow: var(--fts-shadow-lg); padding: 8px; display: none; flex-direction: column;
}
.fts-nav li { position: relative; }
.fts-nav li:hover > .sub-menu, .fts-nav li:focus-within > .sub-menu { display: flex; }
.fts-header__actions { display: flex; align-items: center; gap: 12px; }

/* Language toggle */
.fts-lang { display: inline-flex; border: 1.5px solid var(--fts-grey-light); border-radius: 999px; overflow: hidden; }
.fts-lang a {
  padding: 6px 13px; font-size: .82rem; font-weight: 700;
  font-family: var(--fts-font-head); color: var(--fts-grey);
}
.fts-lang a.is-active { background: var(--fts-blue); color: #fff; }

/* Mobile nav */
.fts-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.fts-burger span { display: block; width: 26px; height: 3px; background: var(--fts-navy); margin: 5px 0; border-radius: 2px; transition: var(--fts-transition); }
@media (max-width: 1080px) {
  .fts-burger { display: block; }
  .fts-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: var(--fts-shadow-lg); padding: 16px 24px 24px;
  }
  .fts-nav.is-open { display: block; }
  .fts-nav ul { flex-direction: column; align-items: stretch; }
  .fts-nav .sub-menu { position: static; box-shadow: none; display: flex; padding-left: 16px; }
  .fts-header__actions .fts-btn { display: none; }
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.fts-hero {
  position: relative; min-height: min(88vh, 820px);
  display: flex; align-items: center; color: #fff; overflow: hidden;
  background: var(--fts-navy);
}
.fts-hero__media, .fts-hero__media video, .fts-hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.fts-hero::after { content: ""; position: absolute; inset: 0; background: var(--fts-gradient-hero); }
.fts-hero__content { position: relative; z-index: 2; max-width: 780px; padding: clamp(80px, 12vw, 140px) 0; }
.fts-hero h1 { color: #fff; margin-bottom: .4em; }
.fts-hero h1 em { font-style: normal; color: var(--fts-gold); }
.fts-hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #e6ecfa; max-width: 620px; margin-bottom: 2em; }
.fts-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.fts-hero__badges { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 46px; }
.fts-hero__badge { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #dbe4f7; }
.fts-hero__badge svg { flex: none; }

/* Wind-line decorative motif */
.fts-windlines { position: absolute; right: -60px; top: 20%; z-index: 1; opacity: .35; pointer-events: none; }

/* ==========================================================================
   7. STATS BAR / COUNTERS
   ========================================================================== */
.fts-stats { background: var(--fts-blue); color: #fff; padding: 34px 0; }
.fts-stats .fts-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.fts-stat__num { font-family: var(--fts-font-head); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; color: #fff; }
.fts-stat__num sup { color: var(--fts-gold); font-size: .55em; }
.fts-stat__label { font-size: .88rem; color: #c8d4ef; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 720px) { .fts-stats .fts-container { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   8. CARDS (packages, audience, posts)
   ========================================================================== */
.fts-card {
  background: #fff; border-radius: var(--fts-radius-lg); overflow: hidden;
  box-shadow: var(--fts-shadow); transition: var(--fts-transition);
  display: flex; flex-direction: column;
}
.fts-card:hover { transform: translateY(-6px); box-shadow: var(--fts-shadow-lg); }
.fts-card__media { position: relative; aspect-ratio: 16/10; background: var(--fts-sky); }
.fts-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fts-card__flag {
  position: absolute; top: 16px; left: 16px; background: var(--fts-red); color: #fff;
  font-family: var(--fts-font-head); font-size: .75rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
}
.fts-card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.fts-card__body h3 { margin-bottom: .4em; }
.fts-card__body p { color: var(--fts-grey); font-size: .96rem; flex: 1; }
.fts-card__meta { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 18px; }
.fts-price { font-family: var(--fts-font-head); font-size: 1.8rem; font-weight: 800; color: var(--fts-blue); }
.fts-price__note { font-size: .8rem; color: var(--fts-grey); }
.fts-card--featured { border: 3px solid var(--fts-red); position: relative; }

.fts-card__list { list-style: none; padding: 0; margin: 0 0 20px; }
.fts-card__list li { padding: 6px 0 6px 30px; position: relative; font-size: .93rem; color: var(--fts-grey); }
.fts-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: 6px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--fts-sky);
  color: var(--fts-blue); font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Audience split tiles */
.fts-tile {
  position: relative; border-radius: var(--fts-radius-lg); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; color: #fff;
}
.fts-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fts-tile:hover img { transform: scale(1.06); }
.fts-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,26,62,.92) 0%, rgba(12,26,62,.15) 55%); }
.fts-tile__body { position: relative; z-index: 2; padding: 30px; }
.fts-tile__body h3 { color: #fff; }
.fts-tile__body p { color: #dbe4f7; font-size: .95rem; }
.fts-tile__link { font-family: var(--fts-font-head); font-weight: 700; color: var(--fts-gold) !important; }

/* ==========================================================================
   9. HOW IT WORKS / STEPS
   ========================================================================== */
.fts-steps { counter-reset: step; }
.fts-step { position: relative; padding: 30px 26px; background: #fff; border-radius: var(--fts-radius-lg); box-shadow: var(--fts-shadow); }
.fts-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--fts-font-head); font-size: 3rem; font-weight: 800;
  color: var(--fts-sky); -webkit-text-stroke: 1.5px var(--fts-blue);
  display: block; line-height: 1; margin-bottom: 14px;
}
.fts-step h3 { font-size: 1.2rem; }
.fts-step p { color: var(--fts-grey); font-size: .94rem; margin: 0; }

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.fts-quote {
  background: #fff; border-radius: var(--fts-radius-lg); padding: 32px;
  box-shadow: var(--fts-shadow); position: relative;
}
.fts-quote::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 5rem; line-height: 0;
  color: var(--fts-red); position: absolute; top: 38px; left: 26px; opacity: .25;
}
.fts-quote__stars { color: var(--fts-gold); letter-spacing: 3px; margin-bottom: 12px; font-size: 1.05rem; }
.fts-quote__text { font-size: 1rem; color: var(--fts-ink); }
.fts-quote__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.fts-quote__author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.fts-quote__name { font-family: var(--fts-font-head); font-weight: 700; font-size: .95rem; }
.fts-quote__origin { font-size: .8rem; color: var(--fts-grey); }

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.fts-faq { max-width: 860px; margin: 0 auto; }
.fts-faq__item { background: #fff; border: 1.5px solid var(--fts-grey-light); border-radius: var(--fts-radius); margin-bottom: 14px; overflow: hidden; }
.fts-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--fts-font-head); font-size: 1.05rem; font-weight: 600; color: var(--fts-navy);
  padding: 20px 56px 20px 24px; position: relative;
}
.fts-faq__q::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--fts-sky); color: var(--fts-blue);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: var(--fts-transition);
}
.fts-faq__item.is-open .fts-faq__q::after { content: "–"; background: var(--fts-red); color: #fff; }
.fts-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.fts-faq__a-inner { padding: 0 24px 22px; color: var(--fts-grey); font-size: .96rem; }
.fts-faq__cats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.fts-faq__cat {
  padding: 8px 20px; border-radius: 999px; border: 1.5px solid var(--fts-grey-light);
  background: #fff; font-family: var(--fts-font-head); font-weight: 600; font-size: .88rem;
  color: var(--fts-grey); cursor: pointer; transition: var(--fts-transition);
}
.fts-faq__cat.is-active, .fts-faq__cat:hover { background: var(--fts-blue); border-color: var(--fts-blue); color: #fff; }

/* ==========================================================================
   12. GALLERY
   ========================================================================== */
.fts-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fts-gallery a { border-radius: var(--fts-radius); overflow: hidden; display: block; position: relative; aspect-ratio: 1; }
.fts-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fts-gallery a:hover img { transform: scale(1.08); }
.fts-gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 720px) { .fts-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   13. CTA BANNER
   ========================================================================== */
.fts-cta {
  position: relative; background: var(--fts-navy); color: #fff; overflow: hidden;
  text-align: center; padding: clamp(60px, 9vw, 110px) 24px;
}
.fts-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 110%, rgba(227,30,45,.45), transparent 55%),
    radial-gradient(ellipse at 85% -10%, rgba(30,58,143,.9), transparent 60%);
}
.fts-cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.fts-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.fts-cta p { color: #c8d4ef; font-size: 1.12rem; margin-bottom: 2em; }

/* ==========================================================================
   14. BOOKING PAGE / PLUGIN MOUNT
   ========================================================================== */
.fts-booking-shell {
  background: #fff; border-radius: var(--fts-radius-lg); box-shadow: var(--fts-shadow-lg);
  padding: clamp(24px, 4vw, 48px); max-width: 980px; margin: 0 auto;
}
.fts-booking-placeholder {
  border: 2px dashed var(--fts-grey-light); border-radius: var(--fts-radius);
  padding: 48px 30px; text-align: center; color: var(--fts-grey);
}
.fts-booking-placeholder strong { color: var(--fts-navy); }
.fts-booking-steps { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.fts-booking-steps span {
  font-family: var(--fts-font-head); font-size: .85rem; font-weight: 600;
  background: var(--fts-sky); color: var(--fts-blue); padding: 8px 18px; border-radius: 999px;
}

/* Contact channels */
.fts-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fts-channel {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border-radius: var(--fts-radius); padding: 20px; box-shadow: var(--fts-shadow);
  font-family: var(--fts-font-head); font-weight: 600; color: var(--fts-navy) !important;
}
.fts-channel:hover { transform: translateY(-3px); }
.fts-channel__icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800;
}
.fts-channel__icon--line { background: #06c755; }
.fts-channel__icon--wa { background: #25d366; }
.fts-channel__icon--wc { background: #07c160; }
.fts-channel__icon--tel { background: var(--fts-blue); }
.fts-channel__icon--mail { background: var(--fts-red); }
.fts-channel small { display: block; font-family: var(--fts-font-body); font-weight: 400; color: var(--fts-grey); font-size: .8rem; }
@media (max-width: 860px) { .fts-channels { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fts-channels { grid-template-columns: 1fr; } }

/* ==========================================================================
   15. PAGE HERO (inner pages)
   ========================================================================== */
.fts-page-hero {
  background: var(--fts-navy); color: #fff; position: relative; overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(46px, 7vw, 84px);
}
.fts-page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(227,30,45,.35), transparent 50%),
    radial-gradient(ellipse at 5% 90%, rgba(30,58,143,.85), transparent 55%);
}
.fts-page-hero .fts-container { position: relative; z-index: 2; }
.fts-page-hero h1 { color: #fff; }
.fts-page-hero p { color: #c8d4ef; max-width: 640px; font-size: 1.1rem; margin-bottom: 0; }
.fts-breadcrumb { font-size: .82rem; color: #8fa2cf; margin-bottom: 18px; }
.fts-breadcrumb a { color: #c8d4ef; }
.fts-breadcrumb a:hover { color: var(--fts-gold); }

/* ==========================================================================
   16. CONTENT / PROSE
   ========================================================================== */
.fts-prose { max-width: 780px; }
.fts-prose h2 { margin-top: 1.6em; }
.fts-prose img { border-radius: var(--fts-radius); }
.fts-prose blockquote {
  border-left: 4px solid var(--fts-red); margin: 1.5em 0; padding: .5em 0 .5em 1.4em;
  color: var(--fts-grey); font-style: italic;
}
.fts-two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 900px) { .fts-two-col { grid-template-columns: 1fr; } }
.fts-two-col img { border-radius: var(--fts-radius-lg); box-shadow: var(--fts-shadow-lg); }

/* Requirement / info tables */
.fts-info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--fts-radius); overflow: hidden; box-shadow: var(--fts-shadow); }
.fts-info-table th, .fts-info-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--fts-grey-light); font-size: .95rem; }
.fts-info-table th { background: var(--fts-blue); color: #fff; font-family: var(--fts-font-head); font-weight: 600; }
.fts-info-table tr:last-child td { border-bottom: 0; }

/* Alert / notice */
.fts-notice {
  display: flex; gap: 14px; background: #fff8e8; border: 1.5px solid #ffd98a;
  border-radius: var(--fts-radius); padding: 18px 22px; font-size: .93rem; color: #7a5b13;
}

/* ==========================================================================
   17. BLOG
   ========================================================================== */
.fts-post-card .fts-card__media { aspect-ratio: 16/9; }
.fts-post-card__date { font-size: .8rem; color: var(--fts-grey); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.fts-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.fts-pagination .page-numbers {
  padding: 10px 18px; border-radius: 10px; background: #fff; box-shadow: var(--fts-shadow);
  font-family: var(--fts-font-head); font-weight: 600;
}
.fts-pagination .current { background: var(--fts-blue); color: #fff; }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.fts-footer { background: var(--fts-navy); color: #b8c6e8; font-size: .93rem; }
.fts-footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(48px, 7vw, 80px) 0; }
.fts-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1em; }
.fts-footer a { color: #b8c6e8; }
.fts-footer a:hover { color: var(--fts-gold); }
.fts-footer ul { list-style: none; margin: 0; padding: 0; }
.fts-footer li { margin-bottom: 10px; }
.fts-footer__brand img { max-height: 60px; margin-bottom: 16px; }
.fts-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.fts-footer__social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.fts-footer__social a:hover { background: var(--fts-red); color: #fff; }
.fts-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .8rem; }
.fts-footer__bottom .fts-container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fts-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 980px) { .fts-footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fts-footer__main { grid-template-columns: 1fr; } }

/* Sticky mobile book bar */
.fts-mobile-book {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: #fff; box-shadow: 0 -6px 24px rgba(12,26,62,.16); padding: 10px 14px;
  gap: 10px;
}
.fts-mobile-book .fts-btn { flex: 1; justify-content: center; padding: 13px 10px; font-size: .95rem; }
@media (max-width: 760px) {
  .fts-mobile-book { display: flex; }
  body { padding-bottom: 68px; }
}

/* WordPress core classes */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--fts-grey); text-align: center; padding-top: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }
.sticky { display: block; }
.bypostauthor, .gallery-caption { font-size: inherit; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* === mockup additions: split hero + video reel === */
.fts-hero__grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:40px; align-items:center; position:relative; z-index:2; }
.fts-reel-wrap { display:flex; justify-content:center; padding:40px 0; }
.fts-reel { position:relative; width:min(300px,72vw); aspect-ratio:464/848; border-radius:34px;
  border:5px solid rgba(255,255,255,.35); overflow:hidden; box-shadow:0 30px 80px rgba(0,0,10,.55);
  background:#000; transform:rotate(2.5deg); }
.fts-reel video { width:100%; height:100%; object-fit:cover; display:block; }
.fts-reel__tag { position:absolute; left:14px; bottom:14px; background:rgba(12,26,62,.75); color:#fff;
  font-family:var(--fts-font-head); font-size:.78rem; font-weight:600; padding:6px 13px; border-radius:999px; backdrop-filter:blur(6px); }
@media (max-width:900px){ .fts-hero__grid{ grid-template-columns:1fr; } .fts-reel{ transform:none; } .fts-reel-wrap{ padding-top:0; } }
