/* ============================================================
   Classic Massage Spa — styles.css
   classicmassages.com
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --black:        #0a0a0a;
  --charcoal:     #141414;
  --dark:         #1a1a1a;
  --card-bg:      #222222;
  --gold:         #C8961A;
  --gold-light:   #E8B84B;
  --gold-pale:    #F5E6C8;
  --emerald:      #1B4D3E;
  --emerald-light:#245f4d;
  --white:        #F0EDE4;
  --grey:         #888888;
  --border:       rgba(200,150,26,0.25);
  --overlay:      rgba(10,10,10,0.62);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --font-accent:  'Cormorant Garant', Georgia, serif;

  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.3s ease;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:  0 4px 24px rgba(200,150,26,0.18);
}

/* --- 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);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
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.1rem; }
p  { margin-bottom: 1rem; color: var(--gold-pale); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-pale);
  margin-bottom: 2.5rem;
}

/* --- Layout Containers --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 50px 0;
}
.text-center { text-align: center; }
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  min-height: 48px;
  line-height: 1.2;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-emerald {
  background: var(--emerald);
  color: var(--gold-pale);
  border-color: var(--emerald);
}
.btn-emerald:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-book:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}
.nav-book::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}
.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 Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1.5rem 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  display: block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); padding-left: 2.5rem; }
.mobile-nav .mob-book {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-main {
  min-height: 100vh;
  margin-top: 0;
  background-image: url('images/hero-bg1.jpg');
}
.hero-mid {
  min-height: 70vh;
  background-image: url('images/hero-bg2.jpg');
  background-attachment: fixed;
}
.hero-bottom {
  min-height: 60vh;
  background-image: url('images/hero-bg3.jpg');
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  max-width: 800px;
}
.hero-main .hero-content { padding-top: 100px; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.hero h1 {
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}
.hero h2 {
  font-family: var(--font-display);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-pale);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-hours {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}
.hero-hours span { color: var(--gold); font-weight: 700; }

/* ============================================================
   GOLD DIVIDER / ORNAMENT
   ============================================================ */
.ornament {
  text-align: center;
  margin: 0.5rem 0 2rem;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

/* ============================================================
   SERVICES PREVIEW (Home)
   ============================================================ */
.services-section {
  background: var(--black);
}
.services-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}
.service-card-img-wrap {
  overflow: hidden;
  height: 200px;
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card-body p {
  font-size: 0.88rem;
  color: var(--grey);
  flex: 1;
  margin-bottom: 1rem;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card-body .btn {
  align-self: flex-start;
  font-size: 0.8rem;
  padding: 10px 22px;
}
.includes-banner {
  background: var(--emerald);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 2.5rem;
  border: 1px solid rgba(27,77,62,0.6);
}
.includes-banner p {
  margin: 0;
  color: var(--gold-pale);
  font-size: 1rem;
}
.includes-banner strong { color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-pale);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 0.5rem;
}
.google-badge img { width: 14px; height: 14px; }

/* ============================================================
   ABOUT SNIPPET (Home)
   ============================================================ */
.about-snippet {
  background: var(--black);
}
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-snippet-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-snippet-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo img { height: 40px; margin-bottom: 1rem; }
.footer-about {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}
.footer-contact-icon {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.5;
}
.footer-contact-text a {
  color: var(--grey);
  transition: color var(--transition);
}
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--grey);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--grey);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-item-text p,
.contact-item-text a {
  font-size: 0.95rem;
  color: var(--gold-pale);
  margin: 0;
}
.contact-item-text a:hover { color: var(--gold); }

/* Booking Form */
.booking-form-wrap {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.booking-form-wrap h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.booking-form-wrap p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.8rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  min-height: 48px;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,26,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.8rem;
  font-style: italic;
}
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-msg {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
.form-msg.success {
  display: block;
  background: rgba(27,77,62,0.3);
  border: 1px solid var(--emerald);
  color: var(--gold-pale);
}
.form-msg.error {
  display: block;
  background: rgba(180,40,40,0.2);
  border: 1px solid #b42828;
  color: #f5a0a0;
}

/* Map */
.map-section { background: var(--black); padding: 0 0 80px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  background: var(--black);
}
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-mission-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.values-section { background: var(--charcoal); border-top: 1px solid var(--border); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { color: var(--gold); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--grey); margin: 0; }

.gallery-section { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-img:hover img { transform: scale(1.05); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--black); }
.services-includes {
  background: var(--emerald);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services-includes-icon { font-size: 2rem; }
.services-includes p { margin: 0; color: var(--gold-pale); }
.services-includes strong { color: var(--gold); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-full-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.service-full-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.service-full-img-wrap { overflow: hidden; height: 240px; }
.service-full-card:hover .service-full-img { transform: scale(1.04); }
.service-full-img { transition: transform 0.4s ease; }
.service-full-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-full-body h3 { color: var(--white); margin-bottom: 0.5rem; }
.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.service-full-body p { font-size: 0.9rem; color: var(--grey); flex: 1; }
.service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.price-duration {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 400;
}

/* Individual Service Pages */
.service-detail { background: var(--black); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}
.service-detail-img img { width: 100%; height: 500px; object-fit: cover; }
.benefit-list { margin: 1.5rem 0; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.benefit-icon { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.benefit-item p { font-size: 0.9rem; color: var(--gold-pale); margin: 0; }
.price-box {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin: 2rem 0;
}
.price-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.price-box-row:last-child { border-bottom: none; }
.price-box-label { font-size: 0.95rem; color: var(--gold-pale); }
.price-box-value { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.related-services { background: var(--charcoal); border-top: 1px solid var(--border); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { background: var(--black); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.blog-card-img-wrap { overflow: hidden; height: 200px; }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-meta span { color: var(--gold); }
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.blog-card p { font-size: 0.875rem; color: var(--grey); flex: 1; }
.blog-card .btn { margin-top: 1.2rem; align-self: flex-start; font-size: 0.8rem; padding: 10px 22px; }

/* Blog Post */
.blog-post { background: var(--black); }
.blog-post-inner {
  max-width: 800px;
  margin: 0 auto;
}
.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}
.blog-post-meta {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.blog-post-meta span { color: var(--gold); }
.blog-post-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold-pale);
}
.blog-post-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--gold); }
.blog-post-body p { color: var(--gold-pale); line-height: 1.85; }
.blog-post-body ul { margin: 1rem 0 1rem 1.5rem; }
.blog-post-body ul li {
  color: var(--gold-pale);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  list-style: disc;
}
.blog-post-cta {
  background: var(--emerald);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid rgba(27,77,62,0.5);
}
.blog-post-cta h3 { color: var(--gold); margin-bottom: 0.5rem; }
.blog-post-cta p { color: var(--gold-pale); margin-bottom: 1.5rem; }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.privacy-section { background: var(--black); }
.privacy-inner { max-width: 860px; margin: 0 auto; }
.privacy-inner h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 2.5rem 0 0.75rem;
}
.privacy-inner p { color: var(--gold-pale); line-height: 1.85; }
.privacy-inner ul { margin: 1rem 0 1rem 1.5rem; }
.privacy-inner ul li {
  color: var(--gold-pale);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--emerald);
  border-top: 1px solid rgba(27,77,62,0.5);
  border-bottom: 1px solid rgba(27,77,62,0.5);
  padding: 50px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-strip p { color: var(--gold-pale); margin-bottom: 1.8rem; }
.cta-strip .btn-gold { font-size: 1rem; padding: 16px 42px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-mission-inner,
  .about-snippet-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-snippet-img img { height: 320px; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-img { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-main { min-height: 90vh; }
  .hero-mid  { min-height: 55vh; background-attachment: scroll; }
  .hero-bottom { min-height: 50vh; background-attachment: scroll; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .section-pad { padding: 55px 0; }
  .hero-btns { flex-direction: column; align-items: center; }

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

  .form-row { grid-template-columns: 1fr; }
  .page-hero { height: 280px; }
  .about-mission-img img { height: 280px; }
  .service-detail-img img { height: 280px; }
  .blog-post-img { height: 260px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.5rem; }
  .btn { padding: 12px 24px; font-size: 0.82rem; }
  .includes-banner { padding: 1.2rem; }
  .services-includes { flex-direction: column; text-align: center; }
}

/* ============================================================
   MOBILE FLOATING CALL / TEXT BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 58px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.5);
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: filter var(--transition);
    min-height: 48px;
  }
  .mobile-cta-bar a:active {
    filter: brightness(1.15);
  }
  .mobile-cta-bar .mcta-call {
    background: var(--gold);
    color: var(--black);
    border-right: 1px solid rgba(0,0,0,0.2);
  }
  .mobile-cta-bar .mcta-text {
    background: var(--emerald);
    color: var(--gold-pale);
  }
  .mobile-cta-bar .mcta-icon {
    font-size: 1.1rem;
    line-height: 1;
  }
  /* Push page content up so footer isn't hidden behind the bar */
  body { padding-bottom: 58px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-mid, .hero-bottom { background-attachment: scroll; }
}
