/*
Theme Name: Vortex Starter Pro
Author: Taylor Code
Description: A minimal theme built with best practices.
Version: 3.15.5
Tags: photography, food-and-drink, three-columns, custom-header, footer-widgets
License: GNU General Public License v3 or later
Requires at least: 6.2
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tested up to: 6.5
Text Domain: vortex-starter-pro
*/
:root {
  --c-bg: #faf8f5;
  --c-surface: #ffffff;
  --c-text: #2c2c2c;
  --c-text-muted: #6b6560;
  --c-heading: #1a2332;
  --c-accent: #c45e3a;
  --c-accent-hover: #a84d2f;
  --c-border: #d4cfc7;
  --c-light: #f0ece6;
  --c-dark: #1a2332;
  --c-white: #ffffff;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1140px;
  --max-w-narrow: 760px;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent-hover); }

/* ── HEADER ── */
.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-heading);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.site-logo:hover { color: var(--c-accent); }
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 2px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--transition);
}
.site-nav a:hover::after, .site-nav .current-menu-item a::after { width: 100%; }
.site-nav a:hover { color: var(--c-accent); }

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-heading);
  position: absolute;
  left: 6px;
  transition: var(--transition);
}
.menu-toggle span { top: 50%; transform: translateY(-50%); }
.menu-toggle span::before { content: ''; top: -7px; }
.menu-toggle span::after { content: ''; top: 7px; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 24px;
    box-shadow: var(--shadow);
  }
  .site-nav.active { display: block; }
  .site-nav ul { flex-direction: column; gap: 12px; }
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--max-w-narrow); margin: 0 auto; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.35;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 24px;
}
.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 32px;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn:hover { background: var(--c-accent-hover); color: var(--c-white); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
}
.btn--outline:hover { background: var(--c-accent); color: var(--c-white); }

/* ── EDITORIAL CONTENT ── */
.ed-article { padding: 60px 0; }
.ed-article h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--c-heading);
  line-height: 1.2;
  margin-bottom: 24px;
}
.ed-article h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--c-heading);
  line-height: 1.25;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.ed-article h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--c-heading);
  margin: 32px 0 12px;
}
.ed-article p { margin-bottom: 20px; }
.ed-article ul, .ed-article ol {
  margin: 0 0 20px 24px;
}
.ed-article li { margin-bottom: 8px; }
.ed-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.ed-meta__author { font-weight: 600; color: var(--c-heading); }
.ed-meta__sep { width: 4px; height: 4px; background: var(--c-border); border-radius: 50%; }

/* ── PULL-QUOTE ── */
.pullquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  color: var(--c-heading);
  line-height: 1.5;
  padding: 32px 0 32px 28px;
  margin: 40px 0;
  border-left: 4px solid var(--c-accent);
  position: relative;
}
.pullquote cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: var(--c-text-muted);
  margin-top: 12px;
  font-family: var(--font-sans);
}

/* ── DIVIDER ── */
.ed-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 40px 0;
}
.ed-divider--accent {
  border-top: 3px solid var(--c-accent);
  width: 60px;
  margin: 40px auto;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin: 40px 0;
}
.card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card__body { padding: 24px; }
.card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--c-heading);
  line-height: 1.3;
  margin-bottom: 10px;
}
.card__excerpt {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.card__link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-accent);
}
.card__link:hover { color: var(--c-accent-hover); }

/* ── FAQ ── */
.faq { margin: 48px 0; padding-top: 32px; border-top: 1px solid var(--c-border); }
.faq h2 { border-top: none; padding-top: 0; margin-top: 0; }
.faq__item {
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}
.faq__q {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__q::after { content: '+'; font-size: 22px; color: var(--c-accent); flex-shrink: 0; margin-left: 16px; }
.faq__a { padding-top: 12px; color: var(--c-text-muted); display: none; }
.faq__item.active .faq__a { display: block; }
.faq__item.active .faq__q::after { content: '−'; }

/* ── SUBSCRIBE FORM ── */
.subscribe-box {
  background: var(--c-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  margin: 48px 0;
  text-align: center;
}
.subscribe-box h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--c-heading);
  margin-bottom: 8px;
}
.subscribe-box p { color: var(--c-text-muted); margin-bottom: 24px; }
.subscribe-box form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.subscribe-box input {
  flex: 1 1 160px;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--c-white);
  transition: border-color var(--transition);
}
.subscribe-box input:focus {
  outline: none;
  border-color: var(--c-accent);
}

/* ── CONTACT FORM ── */
.contact-form { max-width: 560px; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--c-heading);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-sans);
  margin-bottom: 20px;
  transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--c-light);
  border-left: 4px solid var(--c-border);
  padding: 20px 24px;
  margin: 40px 0;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
  padding: 16px 0;
}
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb span { margin: 0 8px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  margin-top: 80px;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--c-white); }
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  color: var(--c-white);
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-col p, .footer-col li { font-size: 14px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── ABOUT SECTION ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 48px 0;
}
@media (max-width: 768px) { .about-section { grid-template-columns: 1fr; } }

/* ── SUCCESS PAGE ── */
.success-page {
  text-align: center;
  padding: 120px 24px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.success-page h1 { font-family: var(--font-serif); font-size: 42px; color: var(--c-heading); margin-bottom: 16px; }
.success-page p { font-size: 18px; color: var(--c-text-muted); margin-bottom: 32px; }

/* ── LEGAL PAGES ── */
.legal-content { padding: 60px 0; }
.legal-content h1 { font-family: var(--font-serif); font-size: 36px; color: var(--c-heading); margin-bottom: 32px; }
.legal-content h2 { font-family: var(--font-serif); font-size: 22px; color: var(--c-heading); margin: 36px 0 12px; border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 18px; color: var(--c-heading); margin: 24px 0 8px; }
.legal-content p { margin-bottom: 16px; font-size: 15px; color: var(--c-text); }
.legal-content ul { margin: 0 0 16px 24px; font-size: 15px; }
.legal-content li { margin-bottom: 6px; }

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--c-light);
  border-radius: var(--radius);
  margin: 40px 0;
}
.author-box__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-box__name { font-weight: 700; color: var(--c-heading); font-size: 16px; }
.author-box__bio { font-size: 14px; color: var(--c-text-muted); margin-top: 4px; }

/* ── READ ALSO ── */
.read-also { margin: 48px 0; padding-top: 32px; border-top: 1px solid var(--c-border); }
.read-also h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--c-heading);
  margin-bottom: 24px;
}

/* ── COOKIE CONSENT ── */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}
.cc-banner.visible { display: block; }
.cc-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cc-banner__text {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.cc-banner__text a { color: var(--c-accent); }
.cc-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cc-btn {
  flex: 1 1 auto;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.cc-btn--accept { background: var(--c-accent); color: var(--c-white); }
.cc-btn--accept:hover { background: var(--c-accent-hover); }
.cc-btn--settings { background: rgba(255,255,255,0.15); color: var(--c-white); }
.cc-btn--settings:hover { background: rgba(255,255,255,0.25); }
.cc-btn--reject { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.cc-btn--reject:hover { background: rgba(255,255,255,0.15); color: var(--c-white); }

/* ── COOKIE MODAL ── */
.cc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cc-modal-overlay.visible { display: flex; }
.cc-modal {
  background: var(--c-white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 90%;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}
.cc-modal h3 { font-family: var(--font-serif); font-size: 22px; color: var(--c-heading); margin-bottom: 20px; }
.cc-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.cc-category__info h4 { font-size: 15px; font-weight: 600; color: var(--c-heading); }
.cc-category__info p { font-size: 13px; color: var(--c-text-muted); }
.cc-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 26px;
  cursor: pointer;
  transition: var(--transition);
}
.cc-toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--c-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}
.cc-toggle input:checked + .cc-toggle__slider { background: var(--c-accent); }
.cc-toggle input:checked + .cc-toggle__slider::before { transform: translateX(22px); }
.cc-toggle input:disabled + .cc-toggle__slider { opacity: 0.7; cursor: default; }
.cc-modal .btn { margin-top: 24px; width: 100%; }

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .cc-banner, .cc-modal-overlay, .subscribe-box { display: none !important; }
}