/*
Theme Name: Zeina Media Works
Theme URI: https://zeinamediaworks.com
Author: Zeina Media Works
Author URI: https://zeinamediaworks.com
Description: Dark luxury real estate visual media theme for Zeina Media Works, Florida. Features HDR photography, drone aerial, walkthrough video, 360 tours, and social media services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://zeinamediaworks.com
Text Domain: zeinamediaworks
Tags: real-estate, photography, dark, luxury, one-page
*/

/* =========================================================
   ZEINA MEDIA WORKS — CUSTOM WORDPRESS THEME
   Dark Luxury Aesthetic · Gold Accents · Real Estate Media
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E2C89A;
  --gold-dark:   #9E7A45;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;
  --dark-4:      #252525;
  --gray:        #888888;
  --gray-light:  #AAAAAA;
  --white:       #FFFFFF;
  --white-90:    rgba(255,255,255,0.9);
  --white-60:    rgba(255,255,255,0.6);
  --white-10:    rgba(255,255,255,0.1);
  --gold-10:     rgba(201,169,110,0.1);
  --gold-20:     rgba(201,169,110,0.2);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(201,169,110,0.15);
  --border-gold: 1px solid rgba(201,169,110,0.25);

  --max-w: 1280px;
  --section-pad: 100px 0;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--white-90);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

p { margin-bottom: 1rem; }

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease;
}
.cursor.hover { width: 8px; height: 8px; background: var(--gold-light); }
.cursor-follower.hover { width: 52px; height: 52px; border-color: var(--gold-light); }

/* --- Utility Classes --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,110,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition);
}
#site-header.scrolled {
  padding: 14px 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.site-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  background: var(--dark-2);
  border-left: var(--border-gold);
  z-index: 1100;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white-90);
  display: block;
  transition: color var(--transition), transform var(--transition);
}
.mobile-drawer a:hover { color: var(--gold); transform: translateX(8px); }
.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white-60);
  font-size: 1.6rem;
  cursor: none;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1090;
}
.drawer-overlay.open { display: block; }

/* =========================================================
   HERO
   ========================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #111 40%, #1a1208 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 48px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   SERVICES
   ========================================================= */
#services { background: var(--dark); padding: var(--section-pad); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(201,169,110,0.1);
  border: var(--border-gold);
  margin-top: 60px;
}
.service-card {
  background: var(--dark-2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { width: 100%; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--white);
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin: 0;
}
.service-card .service-price {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* =========================================================
   ABOUT
   ========================================================= */
#about { background: var(--black); padding: var(--section-pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark-3);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.about-points {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-point-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-point p { margin: 0; font-size: 0.95rem; color: var(--white-60); }
.about-point strong { color: var(--white); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: var(--border-gold);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
  display: block;
}

/* =========================================================
   GALLERY STRIP
   ========================================================= */
#gallery { background: var(--dark); padding: var(--section-pad); overflow: hidden; }
.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-3);
  padding-bottom: 16px;
  margin-top: 48px;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--dark-3); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--gold); }

.gallery-tile {
  flex-shrink: 0;
  width: 340px;
  height: 240px;
  scroll-snap-align: start;
  background: var(--dark-3);
  border: var(--border-gold);
  overflow: hidden;
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.gallery-tile-placeholder span { font-size: 1.8rem; }

/* =========================================================
   PROCESS
   ========================================================= */
#process { background: var(--black); padding: var(--section-pad); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  background: var(--black);
  transition: all var(--transition);
}
.process-step:hover .step-number {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin: 0;
}

/* =========================================================
   PRICING
   ========================================================= */
#pricing { background: var(--dark); padding: var(--section-pad); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 60px;
}
.pricing-toggle span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.pricing-toggle span.active { color: var(--gold); }
.toggle-switch {
  width: 50px; height: 26px;
  background: var(--dark-4);
  border: 1px solid var(--gold);
  border-radius: 13px;
  position: relative;
  cursor: none;
  transition: background var(--transition);
}
.toggle-switch.on { background: var(--gold-10); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch.on::after { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--dark-2);
  border: var(--border-gold);
  padding: 48px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  background: var(--dark-3);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 20px;
}
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price sup { font-size: 1.2rem; }
.pricing-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 32px;
}
.pricing-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--white-60);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pricing-alacarte {
  margin-top: 60px;
  padding-top: 48px;
  border-top: var(--border-gold);
}
.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.alacarte-item {
  background: var(--dark-2);
  border: var(--border-gold);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color var(--transition);
}
.alacarte-item:hover { border-color: var(--gold); }
.alacarte-item span { font-size: 0.9rem; color: var(--white-60); }
.alacarte-item strong { color: var(--gold); font-weight: 600; font-size: 0.95rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testimonials { background: var(--black); padding: var(--section-pad); overflow: hidden; }
.testimonials-carousel {
  position: relative;
  margin-top: 60px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex-shrink: 0;
  width: 33.333%;
  padding: 0 16px;
}
.testimonial-inner {
  background: var(--dark-2);
  border: var(--border-gold);
  padding: 40px 36px;
  height: 100%;
  position: relative;
}
.testimonial-inner::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white-90);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: normal;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: none;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px;
  background: var(--dark-4);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: none;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* =========================================================
   FAQ
   ========================================================= */
#faq { background: var(--dark); padding: var(--section-pad); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--white-10); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 24px 0;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin: 0;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  background: var(--dark-2);
  border: var(--border-gold);
  padding: 36px 32px;
}
.faq-sidebar h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.faq-sidebar p {
  font-size: 0.875rem;
  color: var(--gray-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* =========================================================
   CONTACT
   ========================================================= */
#contact { background: var(--black); padding: var(--section-pad); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 1rem;
  color: var(--white-90);
  margin: 0;
}

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-status {
  font-size: 0.9rem;
  padding: 12px 16px;
  margin-top: 8px;
}
.form-status.success { background: rgba(100,200,100,0.1); color: #6bc96b; border: 1px solid #6bc96b40; }
.form-status.error   { background: rgba(200,80,80,0.1);  color: #e06060; border: 1px solid #e0606040; }

/* =========================================================
   SOCIAL BAR
   ========================================================= */
.social-bar {
  background: var(--dark-2);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 32px 0;
}
.social-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

/* =========================================================
   FOOTER
   ========================================================= */
#colophon {
  background: var(--dark);
  padding: 60px 0 32px;
  border-top: var(--border-gold);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: var(--border-gold);
  margin-bottom: 32px;
}
.footer-brand .site-logo { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray);
  max-width: 280px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.footer-brand address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 40px; right: 40px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonial-card { width: 50%; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { width: 85%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 24px; right: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr; }
  .gallery-tile { width: 280px; }
  .social-inner { gap: 28px; }
}

/* =========================================================
   WORDPRESS ADMIN BAR OFFSET
   ========================================================= */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }
