/*
Theme Name: NightOwl Nursing
Theme URI: https://nightowlnursing.com
Author: NightOwl Nursing
Author URI: https://nightowlnursing.com
Description: A custom theme for NightOwl Nursing.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nightowl
Tags: custom-logo, custom-menu, featured-images, theme-options, blog
*/

/* ═══════════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
  --grey-taupe: #D8C9B8;
  --warm-grey: #AF9C87;
  --blush: #997C60;
  --pink-light: #FAC1C8;
  --coral: #FF5E71;
  --lavender-mist: #DBE3F1;
  --periwinkle: #A4BBE6;
  --black: #000000;
  --cream: #FAF7F4;
  --off-white: #F5F0EB;
  --white: #FFFFFF;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6057;
  --text-muted: #9b9189;
  --border-light: rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 244, 0.95);
-webkit-backdrop-filter: blur(24px);
backdrop-filter: blur(24px);
-webkit-transform: translateZ(0);
transform: translateZ(0);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.4s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2rem, 5vw, 4rem);
  height: var(--nav-height);
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-wordmark .owl {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

/* Scrollable nav bar — centered links */
.nav-bar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  margin: 0 2rem;
}

.nav-bar-wrapper::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(250,247,244,0.95));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-bar-wrapper.show-fade::after { opacity: 1; }

ul.nav-bar,
.nav-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-bar::-webkit-scrollbar { display: none; }

.nav-bar .menu-item {
  flex-shrink: 0;
  list-style: none;
}

.nav-bar .menu-item a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.3s;
}

.nav-bar .menu-item a:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}

.nav-bar .menu-item.current-menu-item a,
.nav-bar .menu-item.current_page_item a,
.nav-bar .menu-item.current-menu-ancestor a {
  color: var(--text-primary);
  font-weight: 500;
}

/* CTA button in nav — prominent pill */
.nav-bar .menu-item.menu-cta a {
  background: var(--text-primary);
  color: var(--cream) !important;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.75rem 2rem;
  margin-left: 0.8rem;
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.nav-bar .menu-item.menu-cta a:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Dropdown arrow */
.dropdown-arrow {
  font-size: 0.6em;
  margin-left: 0.3rem;
  opacity: 0.5;
  vertical-align: middle;
}

/* Dropdown menu — appended to <body> via JS */
.nav-dropdown {
  position: fixed;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.6rem 0;
  min-width: 280px;
  list-style: none;
  margin: 0;
  z-index: 10000;
  border: 1px solid var(--border-light);
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown .menu-item {
  display: block;
  list-style: none;
}

.nav-dropdown .menu-item a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.nav-dropdown .menu-item a:hover {
  color: var(--text-primary);
  background: var(--off-white);
}

.nav-dropdown .menu-item.current-menu-item a,
.nav-dropdown .menu-item.current_page_item a {
  color: var(--text-primary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--text-primary);
  color: var(--cream);
  padding: 1.1rem 2.6rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  color: var(--cream);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 400;
  border: 1px solid rgba(0,0,0,0.15);
  transition: all var(--transition);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--cream);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--text-primary); }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section { padding: 7rem 4vw; position: relative; }
.section.compact { padding: 5rem 4vw; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.section-divider {
  width: 50px; height: 1px;
  background: var(--warm-grey);
  margin-bottom: 2rem;
  opacity: 0.35;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-heading em { font-style: italic; font-weight: 400; }

.section-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 540px;
  margin-top: 1.2rem;
}

.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--text-primary); color: var(--cream); }
.bg-dark .section-label { color: rgba(255,255,255,0.35); }
.bg-dark .section-divider { background: rgba(255,255,255,0.15); }
.bg-dark .section-sub { color: rgba(255,255,255,0.55); }
.bg-dark .section-heading em { color: var(--pink-light); }

/* ═══════════════════════════════════════════
   SPLIT LAYOUT
   ═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-image img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.split-image.portrait img { aspect-ratio: 4/5; }
.split-image.landscape img { aspect-ratio: 3/2; }
.split-content { max-width: 480px; }

/* ═══════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-height) + 5rem) 4vw 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw; height: 140%;
  background: radial-gradient(ellipse at 50% 50%, rgba(250,193,200,0.15) 0%, rgba(164,187,230,0.08) 50%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-inner { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--coral); }

.page-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 520px;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 10vw, 10rem) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-glow {
  display: none;
}
.hero-fullwidth .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  text-align: left;
  padding: 0 clamp(2rem, 5vw, 4rem);
}

.hero-fullwidth .hero-tag {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-fullwidth h1 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}

.hero-fullwidth h1 em {
  color: var(--pink-light);
  font-style: italic;
}

.hero-fullwidth .hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
  margin-top: 1.5rem;
}

.hero-fullwidth .hero-actions {
  justify-content: flex-start;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.hero-fullwidth .btn-primary {
  background: var(--white);
  color: var(--text-primary);
}

.hero-fullwidth .btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-fullwidth .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-fullwidth .btn-ghost:hover {
  border-color: var(--white);
}

/* Light image variant — add class 'hero-light' to .hero for light images */
.hero-light .hero-overlay {
  background: rgba(255, 255, 255, 0.5);
}

.hero-light .hero-tag {
  color: var(--text-secondary);
}

.hero-light h1 {
  color: var(--text-primary);
}

.hero-light h1 em {
  color: var(--coral);
}

.hero-light .hero-sub {
  color: var(--text-secondary);
}

.hero-light .btn-primary {
  background: var(--text-primary);
  color: var(--cream);
}

.hero-light .btn-primary:hover {
  background: #333;
}

.hero-light .btn-ghost {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.2);
}

.hero-light .btn-ghost:hover {
  border-color: var(--text-primary);
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 8rem 1.5rem 4rem;
  }
}

/* Image placeholder (for pages without uploaded images) */
.img-placeholder {
  background: linear-gradient(135deg, #ede8e3 0%, #e2dbd4 50%, #d9d1c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(250,193,200,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(164,187,230,0.15) 0%, transparent 60%);
}

.img-placeholder .ph {
  position: relative; z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════
   HOME INTRO
   ═══════════════════════════════════════════ */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
}

.intro-card {
  padding: 2rem 0;
  border-top: 2px solid var(--pink-light);
}

.intro-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.intro-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   HOME CTA
   ═══════════════════════════════════════════ */
.home-cta { text-align: center; padding: 6rem 4vw; }
.home-cta-inner { max-width: 600px; margin: 0 auto; }

.home-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.home-cta h2 em { font-style: italic; font-weight: 400; color: var(--coral); }

.home-cta p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2.2rem;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-light), var(--periwinkle));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.service-card:hover::before { opacity: 1; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.step {
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.step:hover {
  border-color: var(--pink-light);
  box-shadow: 0 8px 30px rgba(250,193,200,0.12);
  transform: translateY(-3px);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--pink-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.step p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   ACCORDION
   ═══════════════════════════════════════════ */
.accordion {
  max-width: 800px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  transition: all 0.3s;
}

.accordion-trigger:hover {
  opacity: 0.8;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.accordion-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--pink-light);
  line-height: 1;
  min-width: 48px;
}

.accordion-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
}

.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-icon::before {
  top: 50%; left: 0; right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item.active .accordion-panel {
  max-height: 2000px;
}

.accordion-content {
  padding: 0 0 2rem 4.2rem;
}

.accordion-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .accordion-content { padding-left: 0; }
  .accordion-num { font-size: 1.6rem; min-width: 32px; }
  .accordion-title { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════
   WIDE BANNER & DUAL IMAGES
   ═══════════════════════════════════════════ */
.wide-banner { padding: 0 4vw; }
.wide-banner img { width: 100%; aspect-ratio: 21/8; object-fit: cover; border-radius: var(--radius-lg); }

.duo-image { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.duo-image img { aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-md); width: 100%; }

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; }

.blog-card { margin-bottom: 2rem; }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-md); width: 100%; margin-bottom: 1.2rem; }
.blog-card .card-tag { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 0.6rem; }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; line-height: 1.25; margin-bottom: 0.7rem; }
.blog-card h3 a { transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--coral); }
.blog-card p { font-size: 0.88rem; line-height: 1.7; color: var(--text-secondary); font-weight: 300; }

.blog-sidebar-item { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; align-items: start; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); }
.blog-sidebar-item img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); width: 100%; }
.blog-sidebar-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; line-height: 1.3; margin-bottom: 0.2rem; }
.blog-sidebar-item h4 a { transition: color 0.3s; }
.blog-sidebar-item h4 a:hover { color: var(--coral); }
.blog-sidebar-item .meta { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* Single post */
.single-post-content { max-width: 700px; margin: 0 auto; }
.single-post-content .post-featured-image { margin-bottom: 2.5rem; }
.single-post-content .post-featured-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); }
.post-meta { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 1.5rem; }

.post-body { font-size: 0.95rem; line-height: 1.9; color: var(--text-secondary); font-weight: 300; }
.post-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--text-primary); margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 1.1rem; font-weight: 500; color: var(--text-primary); margin: 2rem 0 0.8rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { margin: 1rem 0; padding-left: 1.5rem; list-style: disc; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote { border-left: 3px solid var(--pink-light); padding: 1rem 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-primary); }
.post-body img { border-radius: var(--radius-md); margin: 2rem 0; }

/* ═══════════════════════════════════════════
   PROSE (Privacy, generic pages)
   ═══════════════════════════════════════════ */
.prose { max-width: 660px; font-size: 0.92rem; line-height: 1.85; color: var(--text-secondary); font-weight: 300; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--text-primary); margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.1rem; font-weight: 500; color: var(--text-primary); margin-top: 2rem; margin-bottom: 0.8rem; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 1rem 0; padding-left: 1.5rem; list-style: disc; }
.prose li { margin-bottom: 0.5rem; }
.prose img { border-radius: var(--radius-md); margin: 2rem 0; }

/* ═══════════════════════════════════════════
   CTA CARD
   ═══════════════════════════════════════════ */
.cta-section { padding: 6rem 4vw; text-align: center; }

.cta-card {
  max-width: 700px; margin: 0 auto;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, rgba(250,193,200,0.12) 0%, rgba(164,187,230,0.12) 100%);
  border-radius: var(--radius-lg);
}

.cta-card h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
.cta-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); font-weight: 300; margin-bottom: 2.2rem; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   FORM STYLES (CF7 / WPForms compat)
   ═══════════════════════════════════════════ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select,
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}

.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--coral); }

.wpcf7 input[type="submit"],
.wpforms-submit {
  display: inline-block;
  background: var(--text-primary);
  color: var(--cream);
  padding: 1rem 2.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
}

.wpcf7 input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { display: inline-block; padding: 0.5rem 1rem; border-radius: var(--radius-full); font-size: 0.82rem; color: var(--text-secondary); border: 1px solid var(--border-light); transition: all 0.3s; }
.pagination a:hover { background: var(--text-primary); color: var(--cream); border-color: var(--text-primary); }
.pagination .current { background: var(--text-primary); color: var(--cream); border-color: var(--text-primary); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer { padding: 5rem 4vw 2.5rem; border-top: 1px solid var(--border-light); }

.footer-top { display: grid; grid-template-columns: 1.5fr repeat(5, 1fr);; gap: 3rem; max-width: 1140px; margin: 0 auto; }
.footer-brand p { font-size: 0.82rem; line-height: 1.65; color: var(--text-secondary); margin-top: 1rem; font-weight: 300; max-width: 260px; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col .menu-item a, .footer-col li a { display: block; font-size: 0.82rem; color: var(--text-secondary); font-weight: 300; padding: 0.3rem 0; transition: color 0.3s; }
.footer-col .menu-item a:hover, .footer-col li a:hover { color: var(--text-primary); }

.footer-bottom { max-width: 1140px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border-light); display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); }
.footer-bottom a { text-decoration: underline; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

.reveal-stagger > * { opacity: 1; transform: none; }
.reveal-stagger.visible > * { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-height) + 2rem); }
  .hero-image { max-width: 480px; }
  .hero h1 { font-size: clamp(2.8rem, 6vw, 4rem); }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse { direction: ltr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .home-intro { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .nav-bar .menu-item a { font-size: 0.92rem; padding: 0.5rem 1rem; }
  .nav-bar .menu-item.menu-cta a { font-size: 0.92rem; padding: 0.6rem 1.5rem; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .duo-image { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 600px) {
  .cta-card { padding: 3rem 1.5rem; }
  .hero-image-accent { display: none; }
  .nav-wordmark { font-size: 1.1rem; }
  .nav-bar-wrapper { margin: 0 1rem; }
  .nav-logo img { width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════
   FOOTER EXTRAS
   ═══════════════════════════════════════════ */

/* Hidden contact info — remove this rule to show */
.footer-contact-hidden {
  display: none;
}

/* Service area banner */
.footer-service-area {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

/* Newsletter form */
.footer-newsletter {
  display: flex;
  gap: 0;
  max-width: 240px;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-right: none;
  border-radius: 100px 0 0 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
}

.footer-newsletter input[type="email"]:focus {
  border-color: var(--coral);
}

.footer-newsletter button {
  padding: 0.55rem 0.9rem;
  background: var(--text-primary);
  color: var(--cream);
  border: none;
  border-radius: 0 100px 100px 0;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #333;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT CARD
   ═══════════════════════════════════════════ */
.announcement-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s;
}

.announcement-card:hover {
  border-color: #333;
  background: #333;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.announcement-pulse {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.announcement-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--cream);
  font-weight: 300;
}

.announcement-text strong {
  font-weight: 600;
}

.announcement-link {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .announcement-card {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
  }
  .announcement-link {
    width: 100%;
    padding-left: 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   FOOTER LOGO
   ═══════════════════════════════════════════ */
.footer-logo img {
  height: auto;
  max-height: 70px;
  width: auto;
  display: block;
}

/* ═══════════════════════════════════════════
   CAREERS & BOOKING GRIDS
   ═══════════════════════════════════════════ */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .careers-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
