/* =============================================================
   Adapt and Prevail — main.css
   Full visual stylesheet, faithfully matching the HTML site.
   Dark luxury aesthetic: Cormorant Garamond + Jost, gold accents.
============================================================= */

/* ── DESIGN TOKENS ── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-pale:     rgba(201, 168, 76, 0.12);
  --gold-glow:     rgba(201, 168, 76, 0.22);
  --dark:          #080808;
  --dark-2:        #101010;
  --dark-3:        #181818;
  --mid:           #252525;
  --white:         #FFFFFF;
  --off-white:     #F8F5F0;
  --muted:         rgba(255, 255, 255, 0.4);
  --muted-2:       rgba(255, 255, 255, 0.65);

  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'Jost', sans-serif;

  --r-sm:          6px;
  --r-md:          12px;
  --r-lg:          24px;
  --r-pill:        999px;

  --max-w:         1200px;
  --header-h:      72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); }

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── CONTAINER ── */
.apt-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ── PAGE WRAP ── */
.apt-page-wrap { padding-top: var(--header-h); min-height: 60vh; }

/* ── EYEBROW ── */
.apt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.apt-eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.apt-eyebrow span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.apt-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.apt-btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.28);
}
.apt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}
.apt-btn-ghost:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.apt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: border-color 0.3s;
}
.apt-header.scrolled { border-color: rgba(201, 168, 76, 0.28); }

/* Logo */
.apt-logo { display: flex; align-items: center; gap: 12px; }
.apt-logo img { height: 38px; width: auto; object-fit: contain; }
.apt-logo-text { display: flex; flex-direction: column; line-height: 1; }
.apt-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.apt-logo-sub {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Desktop nav */
.apt-nav { display: flex; align-items: center; gap: 32px; }
.apt-nav-list { display: flex; gap: 32px; }
.apt-nav-list li a,
.apt-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.apt-nav-list li a::after,
.apt-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.apt-nav-list li a:hover,
.apt-nav a:hover,
.apt-nav-list li.current-menu-item > a { color: var(--gold); }
.apt-nav-list li a:hover::after,
.apt-nav-list li.current-menu-item > a::after { transform: scaleX(1); }

/* Header right */
.apt-header-right { display: flex; align-items: center; gap: 14px; }
.apt-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.apt-back-link:hover { color: var(--gold); }
.apt-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.apt-btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.apt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.apt-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}
.apt-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.apt-hamburger.open span:nth-child(2) { opacity: 0; }
.apt-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.apt-mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.apt-mobile-nav.open { display: flex; }
.apt-mobile-nav a,
.apt-mobile-nav-list li a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--muted-2);
  display: block;
}
.apt-mobile-nav-list { width: 100%; }
.apt-mobile-book { justify-content: center; margin-top: 14px; }

/* ══════════════════════════════════════════
   ARCHIVE HERO
══════════════════════════════════════════ */
.apt-archive-hero {
  padding: 80px 0 60px;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}
.apt-archive-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.apt-archive-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.apt-archive-title em { font-style: italic; color: var(--gold); }
.apt-archive-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-2);
  max-width: 560px;
}

/* ══════════════════════════════════════════
   ARCHIVE SECTION / CARDS GRID
══════════════════════════════════════════ */
.apt-archive-section { padding: 80px 0; background: var(--dark); }

.apt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* ── CARD ── */
.apt-card {
  background: var(--dark-2);
  border-radius: var(--r-lg);
  border: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.apt-card:hover {
  border-color: rgba(201, 168, 76, 0.28);
  transform: translateY(-4px);
}

/* Card thumbnail */
.apt-card-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-3);
}
.apt-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apt-card:hover .apt-card-thumb img { transform: scale(1.05); }

.apt-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.apt-card-thumb--placeholder span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(201, 168, 76, 0.3);
  letter-spacing: 0.08em;
}

/* Card body */
.apt-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.apt-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.apt-card-sep { color: rgba(201, 168, 76, 0.4); }
.apt-card-cat {
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.2s;
}
.apt-card-cat:hover { opacity: 0.75; }
.apt-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}
.apt-card-title a { transition: color 0.2s; }
.apt-card-title a:hover { color: var(--gold); }
.apt-card-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-2);
  margin-bottom: 20px;
  flex: 1;
}
.apt-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.apt-card-link:hover { gap: 12px; }

/* No posts */
.apt-no-posts {
  text-align: center;
  padding: 80px 20px;
}
.apt-no-posts h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.apt-no-posts p {
  color: var(--muted-2);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════ */
.apt-pagination { display: flex; justify-content: center; }
.apt-pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}
.apt-pagination .page-numbers li a,
.apt-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 0.85rem;
  color: var(--muted-2);
  transition: all 0.2s;
}
.apt-pagination .page-numbers li a:hover { border-color: var(--gold); color: var(--gold); }
.apt-pagination .page-numbers li .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   SINGLE ARTICLE
══════════════════════════════════════════ */
.apt-single-hero {
  position: relative;
  padding: 80px 0 60px;
  background: var(--dark-2);
}
.apt-single-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.apt-single-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.apt-single-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.5) 100%);
}
.apt-single-hero-inner {
  position: relative;
  z-index: 2;
}
.apt-single-cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.2s;
}
.apt-single-cat:hover { background: rgba(201, 168, 76, 0.2); }
.apt-single-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 840px;
  margin-bottom: 24px;
}
.apt-single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.apt-single-sep { color: rgba(201, 168, 76, 0.4); }
.apt-single-author strong { color: var(--gold); }

/* Article layout: content + sidebar */
.apt-single-article { padding: 80px 0; background: var(--dark); }
.apt-single-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: flex-start;
}

/* Article content typography */
.apt-single-content {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}
.apt-single-content p { margin-bottom: 1.5em; }
.apt-single-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin: 2em 0 0.6em;
  line-height: 1.2;
}
.apt-single-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 1.8em 0 0.5em;
}
.apt-single-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 1.5em 0 0.4em;
}
.apt-single-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: border-color 0.2s;
}
.apt-single-content a:hover { border-color: var(--gold); }
.apt-single-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 2em 0;
  background: var(--dark-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
}
.apt-single-content ul,
.apt-single-content ol {
  margin: 1.2em 0 1.2em 1.5em;
  list-style: revert;
}
.apt-single-content li { margin-bottom: 0.5em; }
.apt-single-content img {
  border-radius: var(--r-md);
  margin: 2em auto;
  max-width: 100%;
}
.apt-single-content hr {
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin: 3em 0;
}
.apt-single-content pre {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--r-md);
  padding: 20px;
  overflow-x: auto;
  font-size: 0.85rem;
  margin: 1.5em 0;
}
.apt-single-content code {
  background: var(--dark-3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--gold-light);
}
.apt-single-content pre code {
  background: none;
  padding: 0;
  color: var(--muted-2);
}

/* Tags */
.apt-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.apt-tag {
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  transition: border-color 0.2s, color 0.2s;
}
.apt-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Author box */
.apt-author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--dark-2);
  border-radius: var(--r-lg);
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 48px;
}
.apt-author-avatar img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.apt-author-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.apt-author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.apt-author-bio {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted-2);
}

/* Sidebar */
.apt-single-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.apt-sidebar-cta {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.apt-sidebar-cta-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.apt-sidebar-cta p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.apt-sidebar-widget {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.apt-sidebar-widget-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.apt-sidebar-cats li { padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.apt-sidebar-cats li:last-child { border-bottom: none; }
.apt-sidebar-cats li a {
  font-size: 0.85rem;
  color: var(--muted-2);
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
}
.apt-sidebar-cats li a:hover { color: var(--gold); }
.apt-sidebar-recent li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.apt-sidebar-recent li:last-child { border-bottom: none; }
.apt-sidebar-recent li a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-bottom: 3px;
  transition: color 0.2s;
  line-height: 1.4;
}
.apt-sidebar-recent li a:hover { color: var(--gold); }
.apt-sidebar-recent li time {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Post navigation */
.apt-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 40px;
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  max-width: var(--max-w);
  margin: 0 auto;
}
.apt-post-nav-prev { text-align: left; }
.apt-post-nav-next { text-align: right; }
.apt-post-nav a { display: inline-flex; flex-direction: column; gap: 6px; }
.apt-post-nav-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.apt-post-nav-next .apt-post-nav-label { justify-content: flex-end; }
.apt-post-nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-2);
  transition: color 0.2s;
  line-height: 1.3;
}
.apt-post-nav a:hover .apt-post-nav-title { color: var(--white); }

/* Related articles */
.apt-related { padding: 80px 0; background: var(--dark-3); }
.apt-related-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════
   STATIC PAGE
══════════════════════════════════════════ */
.apt-page-hero {
  padding: 80px 0 60px;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.apt-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}
.apt-page-thumb {
  margin-top: 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-height: 400px;
}
.apt-page-thumb img { width: 100%; object-fit: cover; }
.apt-page-content {
  padding: 80px 40px;
  max-width: 800px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}
.apt-page-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--white); margin: 2em 0 0.6em; }
.apt-page-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--white); margin: 1.6em 0 0.5em; }
.apt-page-content p { margin-bottom: 1.5em; }
.apt-page-content a { color: var(--gold); border-bottom: 1px solid rgba(201, 168, 76, 0.3); }
.apt-page-content a:hover { border-color: var(--gold); }
.apt-page-content ul, .apt-page-content ol { margin: 1em 0 1em 1.5em; list-style: revert; }
.apt-page-content li { margin-bottom: 0.5em; }
.apt-page-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 1.5em 0;
  background: var(--dark-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.apt-footer { background: var(--dark-2); border-top: 1px solid rgba(201, 168, 76, 0.12); }
.apt-footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.apt-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.apt-footer-logo img { height: 34px; width: auto; object-fit: contain; }
.apt-footer-about {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}
.apt-footer-socials { display: flex; gap: 10px; }
.apt-footer-social {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.apt-footer-social:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }
.apt-footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.apt-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.apt-footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}
.apt-footer-col li a { color: var(--muted); transition: color 0.2s; }
.apt-footer-col li a:hover { color: var(--gold); }
.apt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.06em;
}
.apt-footer-bottom a { color: rgba(255, 255, 255, 0.22); transition: color 0.2s; }
.apt-footer-bottom a:hover { color: var(--gold); }

/* ── WhatsApp Float ── */
.apt-wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.apt-wa-float:hover { transform: scale(1.08); }

/* ══════════════════════════════════════════
   WORDPRESS SPECIFIC
══════════════════════════════════════════ */

/* WP alignment classes */
.aligncenter { display: block; margin: 2em auto; }
.alignleft  { float: left; margin: 0 2em 1em 0; }
.alignright { float: right; margin: 0 0 1em 2em; }
.alignwide  { max-width: 960px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }

/* WP caption */
.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px; width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .apt-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .apt-footer-top { grid-template-columns: 1fr 1fr; }
  .apt-footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .apt-container { padding: 0 20px; }
  .apt-header { padding: 0 20px; }

  /* Show hamburger, hide desktop nav */
  .apt-nav { display: none; }
  .apt-hamburger { display: flex; }
  .apt-btn-book { display: none; }
  .apt-back-link { display: none; }

  /* Archive */
  .apt-archive-hero { padding: 56px 0 40px; }

  /* Single */
  .apt-single-container { grid-template-columns: 1fr; }
  .apt-single-sidebar { position: static; }
  .apt-post-nav { padding: 32px 20px; }

  /* Footer */
  .apt-footer-top { grid-template-columns: 1fr; padding: 40px 20px; }
  .apt-footer-brand { grid-column: span 1; }
  .apt-footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
}

@media (max-width: 600px) {
  .apt-cards-grid { grid-template-columns: 1fr; }
  .apt-post-nav { grid-template-columns: 1fr; }
  .apt-post-nav-next { text-align: left; }
  .apt-post-nav-next .apt-post-nav-label { justify-content: flex-start; }
  .apt-archive-title { font-size: 2rem; }
  .apt-single-title { font-size: 2rem; }
}
