/*
Theme Name: AaNya Wellness
Theme URI: https://aanyawellness.com
Author: AaNya Wellness Beauty & Spa
Author URI: https://aanyawellness.com
Description: A luxurious, elegant WordPress theme for AaNya Wellness Beauty & Spa — covering Hair Care, Beauty Services, Makeup, and Wellness Treatments. Built with a refined dark-gold aesthetic using Manrope and Work Sans typography.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: wellness, beauty, spa, salon, one-page, dark, elegant, services, booking
Text Domain: aanya-wellness

AaNya Wellness WordPress Theme
Copyright (C) 2024 AaNya Wellness
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-navy:       #192430;
  --color-navy-deep:  #0f1a25;
  --color-navy-mid:   #1e2f3e;
  --color-gold:       #c9a84c;
  --color-gold-light: #e0c070;
  --color-gold-pale:  #f5e9c8;
  --color-cream:      #f5f4ef;
  --color-off-white:  #faf8f3;
  --color-text:       #02040d;
  --color-text-light: #546e7a;
  --color-surface:    #e8e9ea;
  --color-card:       #ffffff;
  --color-border:     rgba(201,168,76,0.25);
  --color-accent:     #d4956a;

  /* Typography */
  --font-display: 'Manrope', 'Georgia', serif;
  --font-body:    'Work Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --transition:  0.35s var(--ease-smooth);

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ============================================================
   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);
  color: var(--color-text);
  background-color: var(--color-off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-pad {
  padding: var(--space-xl) 0;
}

.section-pad--sm {
  padding: var(--space-lg) 0;
}

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.text-cream  { color: var(--color-cream); }

.badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.section-title--centered {
  text-align: center;
}

.section-title--centered + .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border: 2px solid var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid rgba(245,244,239,0.5);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

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

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--color-surface);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.promo-banner span {
  color: var(--color-gold);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.site-logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.1;
}

.site-logo__text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  color: rgba(245,244,239,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: var(--font-body);
  position: relative;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

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

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.current-menu-item {
  color: var(--color-gold);
}

.main-nav a.current-menu-item::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(245,244,239,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: var(--font-body);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}

.nav-dropdown__toggle:hover {
  color: var(--color-gold);
}

.nav-dropdown__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #c6c8cb;
  border: 1px solid #81878d;
  border-radius: var(--radius-sm);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text);
  font-family: var(--font-body);
  transition: background var(--transition);
}

.nav-dropdown__menu a:hover {
  background: rgba(163,167,172,1);
  color: var(--color-text);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,149,106,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__content .badge {
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--color-gold);
  position: relative;
}

.hero__desc {
  color: rgba(245,244,239,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Image */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.hero__image-wrap:hover img {
  transform: scale(1.04);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(25,36,48,0.6));
}

.hero__stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.hero__stat {
  text-align: center;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
}

.hero__stat span {
  font-size: 0.75rem;
  color: rgba(245,244,239,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--color-off-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-badge {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.about__image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
}

.about__image-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.about__content h2 {
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about__feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.about__feature-text span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ============================================================
   SERVICES TABS
   ============================================================ */
.services {
  background: var(--color-surface);
}

.services-tabs {
  display: flex;
  gap: 0;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.35rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow-x: auto;
}

.services-tab {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text-light);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.services-tab.active {
  background: var(--color-navy);
  color: var(--color-cream);
  box-shadow: 0 2px 12px rgba(25,36,48,0.25);
}

.services-tab:hover:not(.active) {
  background: rgba(25,36,48,0.06);
  color: var(--color-navy);
}

.services-panel {
  display: none;
  animation: fadeInUp 0.4s var(--ease-smooth);
}

.services-panel.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(201,168,76,0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(25,36,48,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(201,168,76,0.15);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-card__tag {
  display: inline-block;
  background: var(--color-surface);
  color: var(--color-text-light);
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 500;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.why-us .section-title {
  color: var(--color-cream);
}

.why-us .section-subtitle {
  color: rgba(245,244,239,0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
}

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  color: var(--color-cream);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.why-card p {
  color: rgba(245,244,239,0.6);
  font-size: 0.9rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--color-off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent, var(--color-gold));
  opacity: 0.4;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__num {
  width: 72px;
  height: 72px;
  background: var(--color-navy);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--color-border);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-card:hover .step-card__num {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  transform: scale(1.1);
}

.step-card h3 {
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.92rem;
}

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
  background: var(--color-gold);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: var(--space-lg) 0;
}

.metric-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(25,36,48,0.15);
}

.metric-item:last-child {
  border-right: none;
}

.metric-item__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-navy-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-item__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.metric-item__desc {
  font-size: 0.85rem;
  color: rgba(25,36,48,0.65);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-surface);
  line-height: 1;
  font-weight: 700;
}

.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--color-off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,36,48,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: var(--color-cream);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--color-navy);
}

.faq .section-title {
  color: var(--color-cream);
}

.faq .section-subtitle {
  color: rgba(245,244,239,0.6);
}

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

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  background: none;
  border: none;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}

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

.faq-question__icon {
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.faq-item.active .faq-question__icon {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.4rem;
  color: rgba(245,244,239,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--color-off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
}

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

.team-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--color-border);
  transition: border-color var(--transition);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card:hover .team-card__image {
  border-color: var(--color-gold);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__initial {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
}

.team-card h4 {
  margin-bottom: 0.3rem;
}

.team-card span {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
}

.team-card p {
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 65%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(245,244,239,0.7);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(245,244,239,0.7);
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-brand .site-logo {
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: var(--color-cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245,244,239,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245,244,239,0.4);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(245,244,239,0.4);
  transition: color var(--transition);
}

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

/* Social Icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,244,239,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.social-links a:hover {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border-color: var(--color-gold);
}

/* ============================================================
   BOOKING WIDGET (Sidebar)
   ============================================================ */
.booking-widget {
  background: var(--color-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.booking-widget h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-surface);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-off-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .about__inner       { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-wrap  { max-width: 480px; margin: 0 auto; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .team-grid          { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }

  .main-nav,
  .header-cta { display: none; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy-deep);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
    align-items: flex-start;
  }

  .main-nav.open .header-cta {
    display: flex;
  }

  .hamburger { display: flex; }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .metrics-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: span 1; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .about__features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .hero__stats  { display: none; }
  .metric-item  { border-right: none; border-bottom: 1px solid rgba(25,36,48,0.15); }
  .metric-item:last-child { border-bottom: none; }
  .metrics-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.aligncenter { display: block; margin: 1.5rem auto; }
.alignleft   { float: left; margin: 0 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 1.5rem; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.4rem; }

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ============================================================
   BLOG LAYOUT
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 100px;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  gap: 2rem;
}

/* Post Card */
.post-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 300px 1fr;
}

.post-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.post-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}

.post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.post-card:hover .post-card__image {
  transform: scale(1.05);
}

.post-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.post-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.post-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-card__title a {
  color: var(--color-navy);
  transition: color var(--transition);
}

.post-card__title a:hover {
  color: var(--color-gold);
}

.post-card__excerpt {
  font-size: 0.92rem;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 1.25rem;
}

.post-card__excerpt p { margin: 0; }

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: gap var(--transition);
}

.post-card__link:hover { gap: 0.6rem; }

/* Page / Post Content Typography */
.entry-content,
.page-content {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 72ch;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.entry-content p,
.page-content p { color: var(--color-text-light); }

.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li,
.page-content li { margin-bottom: 0.4rem; }

.entry-content blockquote,
.page-content blockquote {
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.5rem;
  background: rgba(201,168,76,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-navy);
}

.entry-content a,
.page-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img,
.page-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.entry-content code,
.page-content code {
  background: var(--color-surface);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.88em;
}

/* Page Navigation */
.posts-navigation,
.post-navigation {
  margin-top: 3rem;
}

.posts-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.posts-navigation .nav-links a {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition);
}

.posts-navigation .nav-links a:hover {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}

/* Page Hero */
.page-hero {
  position: relative;
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .post-sidebar {
    position: static;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card__image-wrap {
    aspect-ratio: 16/9;
  }
}
