/*
Theme Name: Altitude Oxygen
Theme URI: https://altitudeoxygenutah.com
Author: Altitude Oxygen Utah
Author URI: https://altitudeoxygenutah.com
Description: Luxury wellness oxygen rental theme for Altitude Oxygen Utah — clean, warm, high-end in-home delivery aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: altitude-oxygen
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream: #F5F0E8;
  --warm-white: #FDFAF5;
  --charcoal: #1C1C1A;
  --dark-brown: #2A2118;
  --gold: #C4973A;
  --gold-light: #D4A84B;
  --gold-pale: #EDD998;
  --sage: #7A8C6E;
  --muted: #8A8070;
  --border: rgba(196,151,58,0.2);
  --shadow: 0 8px 48px rgba(28,28,26,0.10);
  --shadow-gold: 0 4px 32px rgba(196,151,58,0.18);

  --font-display: 'Cormorant Garamond', 'Didot', Georgia, serif;
  --font-body: 'Jost', 'Gill Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  --max-width: 1280px;
  --section-padding: 100px 40px;
  --radius: 4px;

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; color: var(--muted); max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-padding); }

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section--dark p { color: rgba(245,240,232,0.7); }
.section--cream { background: var(--cream); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-outline--light {
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}

.btn-outline--light:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(28,28,26,0.96);
  backdrop-filter: blur(12px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(196,151,58,0.2);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.site-logo span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-brown);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,26,0.78) 0%,
    rgba(42,33,24,0.55) 50%,
    rgba(28,28,26,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  color: var(--cream);
  max-width: 14ch;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  max-width: 48ch;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s forwards;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 2s infinite;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  padding: 28px 40px;
  border-bottom: 1px solid rgba(196,151,58,0.15);
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(196,151,58,0.25);
}

/* ============================================================
   INTRO / VALUE PROP
   ============================================================ */
.intro {
  padding: 120px 40px;
  background: var(--warm-white);
}

.intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text { }

.intro-text .eyebrow { margin-bottom: 20px; }
.intro-text h2 { margin-bottom: 24px; }
.intro-text p { margin-bottom: 20px; }
.intro-text .btn { margin-top: 16px; }

.intro-image-stack {
  position: relative;
  height: 540px;
}

.intro-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 90%;
  object-fit: cover;
  border-radius: 2px;
}

.intro-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: 2px;
  border: 5px solid var(--warm-white);
  box-shadow: var(--shadow);
}

.intro-stat {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--gold);
  color: var(--warm-white);
  padding: 20px 24px;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 10;
}

.intro-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  display: block;
  line-height: 1;
}

.intro-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--cream);
  padding: 120px 40px;
}

.how-it-works .container { max-width: var(--max-width); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.step-card {
  background: var(--cream);
  padding: 48px 36px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover { background: var(--warm-white); }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196,151,58,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  max-width: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 40px;
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-image {
  height: 320px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img { transform: scale(1.04); }

.service-card-body { padding: 40px; }

.service-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card h3 { margin-bottom: 14px; }
.service-card p { font-size: 0.95rem; margin-bottom: 28px; }

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.service-price span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--muted);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: var(--charcoal);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,151,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.benefits .container { max-width: var(--max-width); }

.benefits .section-header h2 { color: var(--cream); }
.benefits .section-header p { color: rgba(245,240,232,0.6); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,151,58,0.15);
  margin-top: 72px;
}

.benefit-item {
  background: var(--charcoal);
  padding: 48px 40px;
  position: relative;
  transition: var(--transition);
}

.benefit-item:hover { background: rgba(196,151,58,0.05); }

.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--gold);
}

.benefit-item h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 0.93rem;
  color: rgba(245,240,232,0.6);
  max-width: none;
}

/* ============================================================
   PROCESS / DELIVERY SECTION
   ============================================================ */
.delivery {
  padding: 120px 40px;
  background: var(--cream);
}

.delivery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.delivery-image {
  position: relative;
}

.delivery-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 2px;
}

.delivery-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-white);
  font-family: var(--font-display);
  box-shadow: var(--shadow-gold);
}

.delivery-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0 16px;
}

.delivery-content .eyebrow { margin-bottom: 20px; }
.delivery-content h2 { margin-bottom: 24px; }
.delivery-content > p { margin-bottom: 40px; }

.delivery-features { list-style: none; margin-bottom: 40px; }

.delivery-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
  color: var(--charcoal);
}

.delivery-features li:first-child { border-top: 1px solid var(--border); }

.feature-check {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 40px;
  background: var(--warm-white);
}

.testimonials .container { max-width: var(--max-width); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--charcoal);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: var(--gold); font-size: 0.85rem; }

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-location {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--cream);
  padding: 120px 40px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 28px;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 120px 40px;
  background: var(--dark-brown);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/cta-bg.jpg') center/cover;
  opacity: 0.15;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner .eyebrow { margin-bottom: 20px; }
.cta-banner h2 { color: var(--cream); margin-bottom: 20px; }
.cta-banner p { color: rgba(245,240,232,0.7); margin: 0 auto 40px; }

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  background: var(--charcoal);
  padding: 80px 40px;
  text-align: center;
}

.service-area h3 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.area-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.area-tag {
  background: rgba(196,151,58,0.1);
  border: 1px solid rgba(196,151,58,0.25);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-brown);
  padding: 80px 40px 40px;
  color: rgba(245,240,232,0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(196,151,58,0.15);
  margin-bottom: 40px;
}

.footer-brand .site-logo { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; opacity: 0.7; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--gold); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  max-width: none;
}

.footer-contact a { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  opacity: 0.5;
}

.footer-disclaimer {
  font-size: 0.72rem;
  opacity: 0.4;
  max-width: 60ch;
  text-align: right;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-inner,
  .delivery-inner { grid-template-columns: 1fr; gap: 60px; }

  .intro-image-stack { height: 400px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px 24px; }

  .site-header { padding: 20px 24px; }
  .site-header.scrolled { padding: 16px 24px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 120px 24px 80px; }
  .container { padding: 0 24px; }

  .trust-bar-inner { gap: 24px; }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .delivery-badge { width: 110px; height: 110px; bottom: -16px; right: -8px; }
  .intro-stat { display: none; }
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(28,28,26,0.98);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mobile-nav-close:hover { opacity: 1; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.2s;
}

.mobile-nav-links a:hover { color: var(--gold); }

.mobile-nav-links .btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  margin-top: 12px;
}

/* Page content WP styles */
.page-content h2 { margin: 48px 0 16px; }
.page-content h3 { margin: 36px 0 12px; }
.page-content p  { margin-bottom: 20px; }
.page-content ul { padding-left: 24px; margin-bottom: 20px; }
.page-content li { margin-bottom: 8px; }
