/*
Theme Name: HQ Theme
Theme URI: https://santorinitourshq.com
Description: Custom theme for SantoriniToursHQ — Mobile First
Author: SantoriniToursHQ
Version: 2.1
*/

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:  #0b2a5c;
  --blue-mid:   #1a4a8a;
  --blue-sky:   #3a7bd5;
  --white:      #ffffff;
  --cream:      #faf7f2;
  --gold:       #c8924a;
  --gold-light: #e8b878;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #8a8aaa;
  --border:     #e8e4dc;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#hq-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,42,92,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,74,0.3);
  height: 64px;
  display: flex; align-items: center;
  padding: 0 20px;
  justify-content: space-between;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.nav-logo span { color: var(--gold-light); }
.nav-links { display: none; }
.nav-cta { display: none; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: var(--blue-deep);
  border-bottom: 2px solid var(--gold);
  padding: 16px 20px; flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .mob-cta {
  background: var(--gold); color: var(--white) !important;
  text-align: center; padding: 14px; border-radius: 4px; margin-top: 10px;
  font-weight: 600; border-bottom: none !important;
}

@media (min-width: 900px) {
  #hq-nav { padding: 0 40px; }
  .nav-logo { font-size: 1.3rem; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    display: inline-block; background: var(--gold); color: var(--white) !important;
    padding: 8px 18px; border-radius: 4px; font-size: 0.8rem; font-weight: 600;
  }
  .nav-hamburger { display: none; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hq-hero {
  min-height: 100svh;
  background:
    linear-gradient(to bottom, rgba(11,42,92,0.72) 0%, rgba(11,42,92,0.35) 45%, rgba(11,42,92,0.78) 100%),
    linear-gradient(135deg, #0b2a5c 0%, #1a4a8a 30%, #3a7bd5 55%, #6baed6 75%, #c8dff0 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 90px 20px 52px;
  position: relative; overflow: hidden;
}
.hero-skyline {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180'%3E%3Cpath fill='%23faf7f2' d='M0,140 C80,120 120,85 180,95 C220,103 240,125 280,115 C310,107 320,75 360,65 C400,55 420,95 460,85 C490,77 500,48 540,43 C575,38 590,72 630,68 C665,64 680,38 720,35 C760,32 775,65 815,62 C850,59 865,32 900,28 C938,24 952,58 990,55 C1025,52 1040,26 1080,22 C1120,18 1135,50 1170,46 C1205,42 1220,16 1260,13 C1305,10 1340,44 1380,41 L1440,38 L1440,180 L0,180 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,146,74,0.2); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 5px 16px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
#hq-hero h1 { font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
#hq-hero h1 em { font-style: italic; color: var(--gold-light); }
#hq-hero p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 480px; line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.hero-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; width: 100%; }
.hero-btns a { width: 100%; max-width: 300px; text-align: center; }
.btn-primary {
  display: block; background: var(--gold); color: var(--white);
  padding: 14px 28px; border-radius: 4px; font-size: 0.9rem; font-weight: 600;
  border: 2px solid var(--gold); transition: all 0.2s;
}
.btn-outline {
  display: block; background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 4px; font-size: 0.9rem; font-weight: 500;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s;
}
.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; color: var(--white); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-light); display: block; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }

@media (min-width: 768px) {
  #hq-hero h1 { font-size: 3.5rem; }
  #hq-hero p { font-size: 1.1rem; }
  .hero-btns { flex-direction: row; justify-content: center; }
  .hero-btns a { width: auto; }
  .hero-stats { gap: 48px; margin-top: 56px; }
  .stat-num { font-size: 2.2rem; }
}
@media (min-width: 1100px) { #hq-hero h1 { font-size: 5rem; } }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.hq-section { padding: 52px 20px; }
.hq-section.cream { background: var(--cream); }
.hq-section.dark { background: var(--blue-deep); }
.hq-container { max-width: 1200px; margin: 0 auto; }
.section-badge {
  display: inline-block; color: var(--gold);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.section-badge.light { color: var(--gold-light); }
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; max-width: 540px; }
.section-sub.light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 36px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

@media (min-width: 768px) {
  .hq-section { padding: 72px 32px; }
  .section-title { font-size: 2.4rem; }
}

/* ═══════════════════════════════════════
   ABOUT — grid-based (no flex) to avoid
   LiteSpeed critical-CSS override conflict
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.about-visual {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #1a4a8a, #3a7bd5, #6baed6);
  border-radius: 10px;
  display: flex; align-items: flex-end;
  padding: 20px; position: relative; overflow: hidden;
  min-width: 0;
}
.about-content { min-width: 0; }
.about-visual-tag {
  position: absolute; top: 16px; right: 0;
  background: var(--gold); color: white;
  padding: 5px 14px 5px 12px; font-size: 0.78rem; font-weight: 600;
  border-radius: 4px 0 0 4px;
}
.about-visual-badge {
  background: rgba(11,42,92,0.88); backdrop-filter: blur(8px);
  border: 1px solid var(--gold); border-radius: 6px;
  padding: 12px 16px; color: white; max-width: 100%;
}
.about-visual-badge strong { font-family: 'Playfair Display', serif; font-size: 1rem; display: block; color: var(--gold-light); }
.about-visual-badge span { font-size: 0.75rem; opacity: 0.8; white-space: nowrap; }
.about-text { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.about-feature-chip {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  padding: 10px 12px; border-radius: 6px; font-size: 0.83rem; font-weight: 500;
}
.about-feature-chip .chip-icon { font-size: 1rem; flex-shrink: 0; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-visual { height: 420px; padding: 28px; }
  .about-visual-badge strong { font-size: 1.1rem; }
  .about-text { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════
   TOUR CARDS
═══════════════════════════════════════ */
.tours-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tours-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.tour-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  background: var(--white); transition: all 0.3s;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(11,42,92,0.12); border-color: var(--gold); }
.tour-card-img { height: 190px; position: relative; overflow: hidden; }
.tour-card-img .bg { position: absolute; inset: 0; transition: transform 0.4s; }
.tour-card:hover .bg { transform: scale(1.06); }
.bg-catamaran { background: linear-gradient(135deg, #0b2a5c, #1a6aaa, #3aa8d5); }
.bg-wine      { background: linear-gradient(135deg, #6b1a3a, #aa2a5a, #d4694a); }
.bg-food      { background: linear-gradient(135deg, #3a2200, #8a5520, #c49959); }
.bg-walking   { background: linear-gradient(135deg, #1a3a0b, #2a6a1a, #5aaa3a); }
.bg-sunset    { background: linear-gradient(135deg, #6b2a0b, #c84a1a, #e87830); }
.bg-photo     { background: linear-gradient(135deg, #2a0b5a, #5a1aaa, #8a3ad4); }
.tour-card-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 2.8rem; z-index: 1; }
.tour-card-label {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(11,42,92,0.88); color: var(--white);
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.tour-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.tour-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 7px; color: var(--text-dark); }
.tour-card-desc { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; flex: 1; font-weight: 300; }
.tour-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.tour-card-price { font-size: 0.78rem; color: var(--text-light); }
.tour-card-price strong { color: var(--gold); font-size: 0.92rem; font-weight: 600; }
.tour-card-link { font-size: 0.78rem; font-weight: 600; color: var(--blue-mid); display: flex; align-items: center; gap: 3px; }
.tour-card-link::after { content: '→'; transition: transform 0.2s; }
.tour-card:hover .tour-card-link::after { transform: translateX(4px); }

/* ═══════════════════════════════════════
   FEATURED TOUR
═══════════════════════════════════════ */
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.featured-visual {
  width: 100%; height: 260px; border-radius: 10px;
  background: linear-gradient(135deg, #0b2a5c 0%, #1a6aaa 40%, #3aa8d5 70%, #6bcce8 100%);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.featured-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.perk { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.5; }
.perk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.featured-btns { display: flex; flex-direction: column; gap: 10px; }
.btn-gold { display: block; text-align: center; background: var(--gold); color: var(--white); padding: 14px 24px; border-radius: 4px; font-size: 0.9rem; font-weight: 600; border: 2px solid var(--gold); transition: all 0.2s; }
.btn-ghost { display: block; text-align: center; background: transparent; color: rgba(255,255,255,0.8); padding: 14px 24px; border-radius: 4px; font-size: 0.9rem; font-weight: 500; border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s; }

@media (min-width: 900px) {
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .featured-visual { height: 440px; font-size: 7rem; }
  .featured-btns { flex-direction: row; }
  .btn-gold, .btn-ghost { display: inline-block; text-align: left; }
}

/* ═══════════════════════════════════════
   ARTICLES
═══════════════════════════════════════ */
.articles-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .articles-grid { grid-template-columns: 2fr 1fr; gap: 24px; } }

.article-featured {
  border-radius: 10px; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: all 0.3s;
}
.article-featured:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,42,92,0.1); }
.article-featured-img {
  height: 220px;
  background: linear-gradient(135deg, #0b2a5c 0%, #1a4a8a 50%, #3a7bd5 100%);
  position: relative; display: flex; align-items: flex-end; padding: 20px;
}
.art-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); font-size: 3rem; }
.article-cat {
  background: var(--gold); color: var(--white); padding: 3px 10px; border-radius: 20px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.article-featured-body { padding: 20px; flex: 1; }
.article-featured-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); line-height: 1.3; }
.article-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 14px; }
.article-meta { font-size: 0.73rem; color: var(--text-light); display: flex; gap: 10px; flex-wrap: wrap; }

.articles-sidebar { display: flex; flex-direction: column; gap: 12px; }
.article-small {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px;
  display: flex; gap: 12px; align-items: flex-start; transition: all 0.25s;
}
.article-small:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(11,42,92,0.07); }
.article-small-icon { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.icon-bg1 { background: linear-gradient(135deg, #1a4a8a, #3a7bd5); }
.icon-bg2 { background: linear-gradient(135deg, #6b1a3a, #d4694a); }
.icon-bg3 { background: linear-gradient(135deg, #3a2200, #c49959); }
.icon-bg4 { background: linear-gradient(135deg, #1a3a0b, #5aaa3a); }
.article-small-cat { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.article-small-title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 600; color: var(--text-dark); line-height: 1.35; }
.article-small-meta { font-size: 0.7rem; color: var(--text-light); margin-top: 4px; }

/* ═══════════════════════════════════════
   HIDDEN GEMS
═══════════════════════════════════════ */
.gems-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
@media (min-width: 540px) { .gems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gems-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.gem-card {
  border-radius: 10px; padding: 22px 18px; text-align: center;
  border: 1px solid var(--border); background: var(--white); transition: all 0.3s;
}
.gem-card:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,42,92,0.08); }
.gem-icon { font-size: 2rem; margin-bottom: 12px; }
.gem-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.gem-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
.gem-tag { display: inline-block; margin-top: 10px; background: rgba(200,146,74,0.15); color: var(--gold); padding: 3px 10px; border-radius: 12px; font-size: 0.68rem; font-weight: 600; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin: 0 auto; }
.newsletter-form input {
  width: 100%; padding: 13px 18px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: var(--white);
  font-size: 0.9rem; outline: none; font-family: inherit; transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  width: 100%; background: var(--gold); color: var(--white);
  padding: 14px 22px; border-radius: 4px; border: none;
  font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { font-size: 0.73rem; color: rgba(255,255,255,0.35); margin-top: 12px; }

@media (min-width: 600px) {
  .newsletter-form { flex-direction: row; max-width: 460px; }
  .newsletter-form input { flex: 1; width: auto; }
  .newsletter-form button { width: auto; white-space: nowrap; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#hq-footer { background: #070f1e; padding: 48px 20px 24px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; display: block; }
.footer-logo span { color: var(--gold-light); }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.75; font-weight: 300; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.4); font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 20px auto 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.22); text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom a { color: rgba(255,255,255,0.3); }
.affiliate-note { max-width: 1200px; margin: 14px auto 0; font-size: 0.7rem; color: rgba(255,255,255,0.18); text-align: center; line-height: 1.6; }

/* ═══════════════════════════════════════
   SINGLE PAGE (tours & articles)
═══════════════════════════════════════ */
.hq-single { padding-top: 64px; }
.hq-single-hero {
  height: 280px;
  background: linear-gradient(135deg, #0b2a5c, #1a4a8a, #3a7bd5);
  display: flex; align-items: flex-end; padding: 24px 20px;
  position: relative; overflow: hidden;
}
.hq-single-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hq-single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,42,92,0.88) 0%, rgba(11,42,92,0.15) 100%); }
.hq-single-hero-content { position: relative; z-index: 1; }
.hq-single-hero h1 { font-size: clamp(1.6rem, 5vw, 2.8rem); color: var(--white); margin-bottom: 10px; }
.hq-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.hq-breadcrumb a { color: var(--gold-light); }
.hq-single-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border); font-size: 0.8rem; color: var(--text-light);
}
.hq-single-meta .meta-cat {
  background: rgba(200,146,74,0.15); color: var(--gold);
  padding: 3px 10px; border-radius: 20px;
  font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.hq-single-body { max-width: 820px; margin: 0 auto; padding: 36px 20px; }
.hq-single-body p { font-size: 1rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 22px; font-weight: 300; }
.hq-single-body h2 { font-size: 1.7rem; color: var(--text-dark); margin: 36px 0 14px; }
.hq-single-body h3 { font-size: 1.3rem; color: var(--text-dark); margin: 24px 0 10px; }
.hq-single-body ul { margin-bottom: 22px; }
.hq-single-body ul li { font-size: 0.97rem; color: var(--text-mid); padding: 5px 0 5px 20px; position: relative; line-height: 1.7; }
.hq-single-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.hq-single-body img { border-radius: 8px; margin: 28px 0; }
.hq-single-body blockquote {
  border-left: 3px solid var(--gold); margin: 28px 0; padding: 14px 20px;
  background: var(--cream); border-radius: 0 6px 6px 0;
  font-style: italic; color: var(--text-mid);
}

@media (min-width: 768px) {
  .hq-single-hero { height: 380px; padding: 36px 40px; }
  .hq-single-body { padding: 52px 32px; }
  .hq-single-body p { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════
   VIATOR AFFILIATE BOX
═══════════════════════════════════════ */
.hq-viator-box {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  border-radius: 10px; padding: 28px 24px; margin: 36px 0;
  text-align: center; border: 1px solid rgba(200,146,74,0.3);
}
.hq-viator-box h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.hq-viator-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.hq-viator-btn {
  display: inline-block; background: var(--gold); color: var(--white);
  padding: 13px 28px; border-radius: 4px; font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.hq-viator-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.hq-viator-note { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ═══════════════════════════════════════
   RELATED POSTS
═══════════════════════════════════════ */
.hq-related { background: var(--cream); padding: 48px 20px; }
.hq-related-inner { max-width: 820px; margin: 0 auto; }
.hq-related h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.hq-related-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 540px) { .hq-related-grid { grid-template-columns: repeat(3, 1fr); } }
.hq-related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px; transition: all 0.25s;
}
.hq-related-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(11,42,92,0.08); }
.hq-related-card .rc-cat { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 5px; }
.hq-related-card .rc-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; }

/* ═══════════════════════════════════════
   PAGE TEMPLATE
═══════════════════════════════════════ */
.hq-page { padding-top: 64px; }
.hq-page-hero { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); padding: 56px 20px 40px; text-align: center; }
.hq-page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--white); margin-bottom: 10px; }
.hq-page-hero p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; }
.hq-page-body { max-width: 860px; margin: 0 auto; padding: 48px 20px; }
.hq-page-body p { font-size: 1rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 22px; font-weight: 300; }
.hq-page-body h2 { font-size: 1.7rem; color: var(--text-dark); margin: 36px 0 14px; }

/* ═══════════════════════════════════════
   ARCHIVE
═══════════════════════════════════════ */
.hq-archive { padding-top: 64px; }
.hq-archive-hero { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid), var(--blue-sky)); padding: 52px 20px 36px; text-align: center; }
.hq-archive-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--white); margin-bottom: 8px; }
.hq-archive-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.hq-archive-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
@media (min-width: 600px) { .hq-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hq-archive-grid { grid-template-columns: repeat(3, 1fr); padding: 52px 32px; } }

.hq-post-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: var(--white); display: flex; flex-direction: column; transition: all 0.3s; }
.hq-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,42,92,0.1); border-color: var(--gold); }
.hq-post-card-thumb { height: 180px; background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); position: relative; overflow: hidden; }
.hq-post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hq-post-card:hover .hq-post-card-thumb img { transform: scale(1.05); }
.hq-post-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.hq-post-card-cat { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 7px; }
.hq-post-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.hq-post-card-excerpt { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; flex: 1; font-weight: 300; }
.hq-post-card-meta { font-size: 0.72rem; color: var(--text-light); margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
#hq-top-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 500;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-deep); border: 2px solid var(--gold);
  color: var(--white); font-size: 1.1rem;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 14px rgba(11,42,92,0.3); transition: all 0.2s;
}
#hq-top-btn:hover { background: var(--gold); }
