/*
Theme Name: Visit Flensburg
Theme URI: https://visitflensburg.de
Author: Visit Flensburg
Author URI: https://visitflensburg.de
Description: A custom tourism theme for visitflensburg.de — Nordic harbour aesthetic with editorial typography, designed for travel content and affiliate monetisation. Includes custom post types for Attractions, Hotels, Restaurants, and Events.
Version: 1.0.0
Requires at least: 6.0
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: visitflensburg
Tags: tourism, travel, custom-colors, custom-menu, featured-images, full-width-template, theme-options, threaded-comments
*/

/* =============================================
   1. CSS VARIABLES & RESET
   ============================================= */
:root {
  --ink: #0f1e2c;
  --ink-soft: #1c2e40;
  --sail: #f4ede0;
  --sail-warm: #ecdfc8;
  --brass: #b8893a;
  --brass-deep: #8a6628;
  --rust: #a64926;
  --sea: #244c5a;
  --foam: #e8e1d2;
  --line: #c9b896;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--sail);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =============================================
   2. NAVIGATION
   ============================================= */
.vf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 237, 224, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 30, 44, 0.08);
  transition: all 0.4s ease;
}

.vf-nav.scrolled {
  box-shadow: 0 4px 30px rgba(15,30,44,0.06);
  padding: 14px 48px;
}

.vf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vf-brand-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vf-brand-mark::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

.vf-brand-mark::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

.vf-brand i {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-deep);
}

.vf-nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.vf-nav-menu li { list-style: none; }

.vf-nav-menu a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  display: inline-block;
}

.vf-nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.4s ease;
}

.vf-nav-menu a:hover::after,
.vf-nav-menu .current-menu-item a::after { width: 100%; }
.vf-nav-menu a:hover { color: var(--brass-deep); }

.vf-nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--sail);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  text-decoration: none;
}

.vf-nav-cta:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  color: var(--sail);
}

.vf-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vf-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* =============================================
   3. HERO
   ============================================= */
.vf-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 48px 80px;
  gap: 80px;
}

.vf-hero-content {
  position: relative;
  z-index: 5;
}

.vf-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 32px;
  font-weight: 400;
}

.vf-hero-meta::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--brass);
}

.vf-hero h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.vf-hero h1 em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 400;
}

.vf-hero-tag {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--sea);
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--brass);
}

.vf-hero-desc {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 48px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.vf-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vf-btn {
  padding: 16px 32px;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  text-decoration: none;
}

.vf-btn-primary {
  background: var(--ink);
  color: var(--sail);
  border-color: var(--ink);
}

.vf-btn-primary:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-2px);
  color: var(--sail);
}

.vf-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.vf-btn-ghost:hover {
  background: var(--ink);
  color: var(--sail);
}

.vf-btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}

.vf-btn:hover .vf-btn-arrow { transform: translateX(4px); }

.vf-hero-visual {
  position: relative;
  height: 70vh;
  min-height: 540px;
}

.vf-hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  filter: contrast(1.05) saturate(0.92);
}

.vf-hero-img-accent {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 45%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--sail);
  z-index: 3;
  filter: sepia(0.15);
}

.vf-hero-stamp {
  position: absolute;
  top: 30px;
  left: -20px;
  width: 130px;
  height: 130px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sail);
  z-index: 4;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  color: var(--brass-deep);
  line-height: 1.2;
  padding: 16px;
  animation: vf-rotate 30s linear infinite;
}

.vf-hero-stamp span {
  font-size: 1.6rem;
  display: block;
  margin-top: 4px;
}

@keyframes vf-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vf-hero-coords {
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--sea);
  display: flex;
  gap: 24px;
  z-index: 5;
}

.vf-hero-coords span { display: flex; align-items: center; gap: 8px; }
.vf-hero-coords span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

/* =============================================
   4. STATS BAR
   ============================================= */
.vf-stats {
  background: var(--ink);
  color: var(--sail);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}

.vf-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 8px;
}

.vf-stat-num em {
  font-style: italic;
  font-size: 0.7em;
  vertical-align: super;
}

.vf-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* =============================================
   5. SECTIONS
   ============================================= */
.vf-section {
  padding: 120px 48px;
  position: relative;
}

.vf-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
}

.vf-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brass-deep);
}

.vf-section-num::before { content: '— '; }

.vf-section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

.vf-section-title em {
  font-style: italic;
  color: var(--brass-deep);
}

.vf-section-tagline {
  justify-self: end;
  max-width: 360px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.7;
}

/* =============================================
   6. ATTRACTIONS GRID
   ============================================= */
.vf-attractions {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(120px, auto);
}

.vf-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform 0.6s ease;
  text-decoration: none;
  display: block;
}

.vf-card:hover { transform: translateY(-6px); }

.vf-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease, filter 0.6s;
  filter: brightness(0.7) contrast(1.05);
}

.vf-card:hover .vf-card-img {
  transform: scale(1.05);
  filter: brightness(0.55) contrast(1.1);
}

.vf-card-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--sail);
  z-index: 2;
}

.vf-card-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-card-meta::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
}

.vf-card-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--sail);
}

.vf-card-title em { font-style: italic; }

.vf-card-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 400px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.vf-card-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.vf-card-link::after {
  content: '→';
  transition: transform 0.3s;
}

.vf-card:hover .vf-card-link::after { transform: translateX(6px); }

.vf-card-1 { grid-column: span 7; grid-row: span 2; min-height: 460px; }
.vf-card-2 { grid-column: span 5; min-height: 220px; }
.vf-card-3 { grid-column: span 5; min-height: 220px; }
.vf-card-4 { grid-column: span 4; min-height: 320px; }
.vf-card-5 { grid-column: span 4; min-height: 320px; }
.vf-card-6 { grid-column: span 4; min-height: 320px; }

/* =============================================
   7. EDITORIAL SPLIT
   ============================================= */
.vf-split {
  background: var(--foam);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.vf-split-img {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.vf-split-img::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(244, 237, 224, 0.4);
  pointer-events: none;
}

.vf-split-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.vf-split-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sea);
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--brass);
  line-height: 1.5;
}

.vf-split h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.vf-split h2 em { font-style: italic; color: var(--brass-deep); }

.vf-split p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

.vf-split-list {
  list-style: none;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.vf-split-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: 16px 0;
  font-size: 0.95rem;
  align-items: center;
  list-style: none;
}

.vf-split-list li:not(:last-child) { border-bottom: 1px solid rgba(201, 184, 150, 0.4); }

.vf-split-list .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--brass-deep);
  font-size: 1.2rem;
}

.vf-split-list .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.vf-split-list .value {
  font-size: 0.85rem;
  color: var(--sea);
  letter-spacing: 0.05em;
}

/* =============================================
   8. STAY (HOTELS)
   ============================================= */
.vf-stay { background: var(--sail); }

.vf-stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vf-stay-card {
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vf-stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(15, 30, 44, 0.25);
  border-color: var(--brass);
}

.vf-stay-card-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.vf-stay-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,30,44,0.3));
}

.vf-stay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sail);
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  z-index: 2;
}

.vf-stay-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vf-stay-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--sea);
  margin-bottom: 12px;
}

.vf-stay-rating::before {
  content: '★★★★★';
  color: var(--brass);
  letter-spacing: 2px;
}

.vf-stay-name {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.vf-stay-loc {
  font-size: 0.85rem;
  color: var(--sea);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.vf-stay-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.vf-stay-price-from {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
}

.vf-stay-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ink);
}

.vf-stay-price-num em {
  font-size: 0.6em;
  font-style: italic;
  color: var(--ink-soft);
  margin-left: 4px;
}

.vf-stay-btn {
  background: var(--ink);
  color: var(--sail);
  padding: 12px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.vf-stay-btn:hover { background: var(--brass-deep); color: var(--sail); }

.vf-stay-disclaimer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* =============================================
   9. EXPERIENCES TIMELINE
   ============================================= */
.vf-exp {
  background: var(--ink);
  color: var(--sail);
  position: relative;
}

.vf-exp .vf-section-head { border-color: rgba(244, 237, 224, 0.15); }
.vf-exp .vf-section-num { color: var(--brass); }
.vf-exp .vf-section-tagline { color: rgba(244, 237, 224, 0.7); }
.vf-exp .vf-section-title em { color: var(--brass); }
.vf-exp .vf-section-title { color: var(--sail); }

.vf-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244, 237, 224, 0.15);
}

.vf-tl-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(244, 237, 224, 0.15);
  position: relative;
  cursor: pointer;
  transition: background 0.4s;
}

.vf-tl-item:last-child { border-right: none; }
.vf-tl-item:hover { background: rgba(184, 137, 58, 0.08); }

.vf-tl-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brass);
  margin-bottom: 16px;
}

.vf-tl-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--sail);
}

.vf-tl-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vf-tl-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 4px 10px;
  display: inline-block;
}

/* =============================================
   10. EVENTS
   ============================================= */
.vf-events { background: var(--sail-warm); }

.vf-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.vf-event {
  background: var(--sail);
  padding: 36px;
  border: 1px solid var(--line);
  transition: all 0.4s;
}

.vf-event:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
}

.vf-event-date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.vf-event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}

.vf-event-month {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}

.vf-event-year {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-left: auto;
  letter-spacing: 0.1em;
}

.vf-event-cat {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 12px;
}

.vf-event-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.vf-event-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vf-event-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

/* =============================================
   11. JOURNAL / BLOG
   ============================================= */
.vf-journal { background: var(--sail); }

.vf-journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.vf-journal-feature, .vf-journal-item {
  cursor: pointer;
  transition: transform 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.vf-journal-feature:hover, .vf-journal-item:hover { transform: translateY(-6px); }

.vf-journal-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  background-color: var(--foam);
}

.vf-journal-feature .vf-journal-img { height: 460px; }

.vf-journal-cat {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vf-journal-cat::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.vf-journal-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.vf-journal-feature .vf-journal-title { font-size: 2.4rem; }

.vf-journal-excerpt {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.vf-journal-meta {
  font-size: 0.78rem;
  color: var(--sea);
  letter-spacing: 0.05em;
  display: flex;
  gap: 16px;
}

.vf-journal-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  color: var(--brass);
}

/* =============================================
   12. NEWSLETTER
   ============================================= */
.vf-newsletter {
  background: var(--ink);
  color: var(--sail);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-newsletter::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(184, 137, 58, 0.2);
  border-radius: 50%;
}

.vf-newsletter::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(184, 137, 58, 0.15);
  border-radius: 50%;
}

.vf-newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vf-newsletter-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}

.vf-newsletter h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--sail);
}

.vf-newsletter h2 em { font-style: italic; color: var(--brass); }

.vf-newsletter p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.vf-newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(244, 237, 224, 0.3);
}

.vf-newsletter-form input {
  flex: 1;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--sail);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.vf-newsletter-form input::placeholder { color: rgba(244, 237, 224, 0.5); }

.vf-newsletter-form button {
  padding: 20px 32px;
  background: var(--brass);
  color: var(--ink);
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.vf-newsletter-form button:hover { background: var(--sail); }

/* =============================================
   13. FOOTER
   ============================================= */
.vf-footer {
  background: #08131c;
  color: var(--sail);
  padding: 80px 48px 32px;
}

.vf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}

.vf-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--sail);
}

.vf-footer-brand i {
  font-style: italic;
  color: var(--brass);
}

.vf-footer-tag {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.vf-footer-coords {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--brass);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.vf-footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--brass);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.vf-footer ul { list-style: none; margin: 0; padding: 0; }

.vf-footer ul li {
  margin-bottom: 12px;
  font-size: 0.92rem;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  list-style: none;
}

.vf-footer ul li a { display: inline-block; }

.vf-footer ul li:hover {
  opacity: 1;
  color: var(--brass);
}

.vf-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 16px;
}

.vf-footer-social {
  display: flex;
  gap: 20px;
}

.vf-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 237, 224, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--sail);
}

.vf-footer-social a:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* =============================================
   14. SINGLE POST / PAGE TEMPLATES
   ============================================= */
.vf-page-hero {
  padding: 160px 48px 80px;
  background: var(--foam);
  position: relative;
}

.vf-page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vf-page-hero .vf-section-num {
  display: block;
  margin-bottom: 24px;
}

.vf-page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.vf-page-hero h1 em {
  font-style: italic;
  color: var(--brass-deep);
}

.vf-page-hero-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sea);
}

.vf-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px;
}

.vf-page-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 48px 0 20px;
}

.vf-page-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin: 36px 0 16px;
}

.vf-page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.vf-page-content ul, .vf-page-content ol {
  margin: 0 0 24px 24px;
  padding-left: 0;
}

.vf-page-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.vf-page-content a {
  color: var(--brass-deep);
  border-bottom: 1px solid var(--brass);
  transition: color 0.3s;
}

.vf-page-content a:hover { color: var(--ink); }

.vf-page-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sea);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--brass);
  line-height: 1.5;
}

.vf-page-content img {
  margin: 32px 0;
  width: 100%;
}

.vf-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.vf-page-content table th,
.vf-page-content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.vf-page-content table th {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  background: var(--foam);
}

/* =============================================
   15. ARCHIVE / LISTING
   ============================================= */
.vf-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.vf-archive-card {
  background: var(--sail);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.vf-archive-card:hover {
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 20px 40px -15px rgba(15,30,44,0.15);
}

.vf-archive-card-img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: var(--foam);
}

.vf-archive-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.vf-archive-card-cat {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 12px;
}

.vf-archive-card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.vf-archive-card-excerpt {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.vf-archive-card-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: auto;
}

.vf-archive-card-link::after {
  content: ' →';
  transition: margin-left 0.3s;
}

.vf-archive-card:hover .vf-archive-card-link::after { margin-left: 6px; }

/* =============================================
   16. PAGINATION
   ============================================= */
.vf-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 80px;
  font-family: 'Cormorant Garamond', serif;
}

.vf-pagination a, .vf-pagination span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--sail);
}

.vf-pagination a:hover, .vf-pagination .current {
  background: var(--ink);
  color: var(--sail);
  border-color: var(--ink);
}

/* =============================================
   17. SCROLL REVEAL
   ============================================= */
.vf-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.vf-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   18. RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .vf-nav { padding: 16px 24px; }
  .vf-nav-menu { display: none; }
  .vf-nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sail);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .vf-menu-toggle { display: block; }

  .vf-hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 48px;
  }

  .vf-hero-visual { height: 60vh; }

  .vf-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 48px 24px;
  }

  .vf-section { padding: 80px 24px; }

  .vf-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vf-section-tagline {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .vf-attractions { grid-template-columns: 1fr; }

  .vf-card-1, .vf-card-2, .vf-card-3, .vf-card-4, .vf-card-5, .vf-card-6 {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .vf-split { grid-template-columns: 1fr; }
  .vf-split-img { min-height: 400px; }
  .vf-split-content { padding: 60px 24px; }

  .vf-stay-grid { grid-template-columns: 1fr; }
  .vf-timeline { grid-template-columns: 1fr; }
  .vf-tl-item { border-right: none; border-bottom: 1px solid rgba(244, 237, 224, 0.15); }
  .vf-events-grid { grid-template-columns: 1fr; }
  .vf-archive-grid { grid-template-columns: 1fr; }
  .vf-journal-grid { grid-template-columns: 1fr; }

  .vf-newsletter { padding: 80px 24px; }
  .vf-newsletter-form { flex-direction: column; }

  .vf-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .vf-footer-bottom { flex-direction: column; text-align: center; }

  .vf-page-hero { padding: 120px 24px 60px; }
  .vf-page-content { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .vf-hero h1 { font-size: 3rem; }
  .vf-hero-stamp { width: 100px; height: 100px; font-size: 0.75rem; left: -10px; }
  .vf-stat-num { font-size: 2.5rem; }
  .vf-footer-grid { grid-template-columns: 1fr; }
  .vf-stay-card-body { padding: 24px; }
  .vf-stay-price { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =============================================
   19. WORDPRESS CORE STYLES
   ============================================= */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { width: 100%; }
.alignfull { width: 100vw; margin-left: calc(-50vw + 50%); }

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}

.wp-caption-text {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--sea);
  text-align: center;
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.sticky { display: block; }
.gallery-caption { display: block; }
.bypostauthor { display: block; }
