/* ============================================================
   ARIPHOTOGRAPHYLENS — STYLE.CSS
   Soft Luxury Photography Website — Multi-Page
   Colors: Cream · Blush · Beige · White · Black · Gold
   ============================================================ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --cream:        #FAF7F2;
  --blush:        #F2C4CE;
  --blush-light:  #FAE8EC;
  --blush-dark:   #E8A4B4;
  --beige:        #EDE0D4;
  --beige-dark:   #D4B9A8;
  --beige-mid:    #E8D0BE;
  --champagne:    #F0DEC8;
  --dusty-rose:   #C19FA6;
  --soft-brown:   #9B7B6B;
  --white:        #FFFFFF;
  --black:        #1A1A1A;
  --charcoal:     #3A3A3A;
  --gold:         #C9A96E;
  --gold-light:   #E8D5A8;
  --gold-dark:    #A8874A;
  --text-dark:    #2C2C2C;
  --text-mid:     #5C5550;
  --text-light:   #9A918A;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', 'Helvetica Neue', sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: 0.35s ease;
}

/* ─── 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(--text-dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
select, input, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }
em { font-family: var(--font-italic); font-style: italic; font-size: 1.05em; }

/* ─── Utility Classes ────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-blush  { background: var(--blush-light); }
.section-beige  { background: var(--beige); }
.section-rose   { background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 100%); }

/* Subtle texture overlay for backgrounds */
.section-texture {
  position: relative;
}
.section-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.section-texture > * { position: relative; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title.left-align { text-align: left; }

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.gold-divider.left-align { margin-left: 0; }

.section-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm   { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-full { width: 100%; text-align: center; justify-content: center; display: flex; align-items: center; gap: 0.5rem; }
.btn-lg   { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* ─── Scroll Animations ──────────────────────────────────── */
.animate-fadein {
  animation: fadeIn 1.2s ease forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}


/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.8rem 0;
}

.nav-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
}
#navbar.scrolled .nav-logo { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  color: rgba(255,255,255,0.9);
  border-radius: 4px;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold-light); }

#navbar.scrolled .nav-link { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover { color: var(--gold); }

/* Active nav state */
.nav-link.active { color: var(--gold-light) !important; }
#navbar.scrolled .nav-link.active { color: var(--gold) !important; font-weight: 700; }

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--black); }


/* ============================================================
   PAGE HERO (all non-home pages)
   ============================================================ */
.page-hero {
  padding: 9rem 0 5.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(242,196,206,0.40) 0%, transparent 48%),
    radial-gradient(ellipse at 90% 80%, rgba(232,213,168,0.32) 0%, transparent 48%),
    linear-gradient(160deg, var(--cream) 0%, var(--blush-light) 55%, #F5EBE4 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

/* Decorative blobs */
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242,196,206,0.45) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201,169,110,0.20) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.page-hero-subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}


/* ============================================================
   HOME HERO (full viewport)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?w=1600&q=85&fit=crop')
    center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,20,16,0.72) 0%,
    rgba(60,40,30,0.60) 50%,
    rgba(26,20,16,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-family: var(--font-italic);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   INTRO STATS
   ============================================================ */
.intro-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  border: 1px solid rgba(201,169,110,0.12);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.25rem;
  display: block;
}


/* ============================================================
   FEATURED SERVICES (homepage cards)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blush-light), var(--cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: 0.7rem; color: var(--gold-dark); }

/* View All CTA row */
.section-cta-row {
  text-align: center;
  margin-top: 2.5rem;
}


/* ============================================================
   ABOUT SECTION (home page + about page shared)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  border: 2px solid var(--gold-light);
}
.about-badge i { color: var(--gold); font-size: 1.2rem; }

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 1.0rem;
}
.about-text strong { color: var(--black); }

/* Why Choose Me */
.why-choose { text-align: center; margin-top: 4rem; }

.why-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--transition);
  text-align: center;
}
.why-card:hover { transform: translateY(-4px); }

.why-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.why-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.why-card p  { font-size: 0.9rem; color: var(--text-mid); }

/* About page — stats row */
.about-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.about-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  border: 1px solid var(--beige);
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.about-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

/* Photography Style cards (about page) */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.style-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.style-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.style-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.style-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); }
.style-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* Brand quote block */
.brand-quote {
  background: linear-gradient(135deg, var(--blush-light), var(--champagne));
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  max-width: 680px;
  margin: 3rem auto;
  text-align: center;
}
.brand-quote blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.75;
}
.brand-quote cite {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  font-style: normal;
}


/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--cream);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* Home page mini portfolio preview (2 cols each side, 6 total) */
.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--beige);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden { display: none; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,20,16,0.78) 0%,
    rgba(26,20,16,0.0) 60%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  text-align: center;
  gap: 0.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay i { font-size: 1.8rem; color: var(--gold-light); }
.portfolio-overlay span {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15,10,8,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-inner img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-family: var(--font-italic);
  font-style: italic;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  color: var(--white);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background var(--transition);
  z-index: 2001;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.6rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201,169,110,0.4); }


/* ============================================================
   SERVICES DETAIL CARDS
   ============================================================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sdc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sdc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blush-light), var(--cream));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.sdc-header h3 { font-size: 1.1rem; font-weight: 600; }

.sdc-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.sdc-includes {
  flex: 1;
  margin-bottom: 1.5rem;
}
.sdc-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--cream);
}
.sdc-includes li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

.sdc-price {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.sdc-price strong { color: var(--gold); font-size: 1.1rem; }

/* Services unsure section */
.services-unsure {
  background: linear-gradient(135deg, var(--blush-light), var(--champagne));
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
}
.services-unsure h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.services-unsure p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--gold);
  background: var(--white);
}

.pricing-popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.5rem;
  border-radius: 0 0 12px 12px;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--blush-light);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream);
}
.pricing-features li i.fa-check { color: var(--gold); font-size: 0.75rem; }
.pricing-features li.not-included { color: var(--text-light); text-decoration: line-through; }
.pricing-features li.not-included i { color: var(--text-light); }

.custom-card { border: 2px dashed var(--beige-dark); }
.custom-badge { background: var(--beige); color: var(--text-mid); }
.custom-desc  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.7; text-align: left; }

.pricing-note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--blush);
}
.pricing-note i { color: var(--gold); margin-right: 0.4rem; }


/* ============================================================
   CLIENT EXPERIENCE STEPS
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

.step-arrow {
  color: var(--gold-light);
  font-size: 1.2rem;
  align-self: center;
  flex-shrink: 0;
  padding: 0 0.25rem;
}


/* ============================================================
   BOOKING CALENDAR
   ============================================================ */
.booking-notice {
  text-align: center;
  background: var(--blush-light);
  border: 1px solid var(--blush);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.booking-notice a { color: var(--gold); font-weight: 600; }
.booking-notice i { color: var(--gold); margin-right: 0.3rem; }

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

/* Calendar */
.calendar-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--beige);
}
.cal-nav:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

#cal-month-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.calendar-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.3rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: default;
  transition: all var(--transition);
  user-select: none;
}

.cal-day.empty { background: none; }
.cal-day.past  { color: var(--beige-dark); }

.cal-day.available {
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  border: 2px solid var(--gold-light);
}
.cal-day.available:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.1);
}

.cal-day.selected {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 16px rgba(201,169,110,0.4) !important;
}

/* Calendar legend */
.cal-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cal-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.cal-legend-dot.available { background: var(--gold-light); border: 2px solid var(--gold); }
.cal-legend-dot.selected  { background: var(--gold); }
.cal-legend-dot.past      { background: var(--beige); }

/* Time Slots */
.timeslots-wrap {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--beige);
}

.timeslots-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.timeslots-label span { color: var(--gold); }

.timeslots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeslot-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--beige);
  transition: all var(--transition);
}
.timeslot-btn:hover,
.timeslot-btn.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}


/* ============================================================
   FORMS (Booking & Contact)
   ============================================================ */
.booking-form,
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--beige-dark); }

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%239A918A' d='M8 11L2 5h12L8 11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
}
.form-row .form-group { flex: 1; min-width: 0; }
.booking-form .form-row,
.contact-form .form-row { margin-bottom: 0; }

.btn-submit {
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.form-success {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--blush-light), var(--cream));
  border: 1px solid var(--blush);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.form-success i { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.form-success p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--cream);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--black); }
.testimonial-author span  { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.03em; }


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.75; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail > i {
  font-size: 1.2rem;
  color: var(--gold);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-detail span, .contact-detail a { font-size: 0.95rem; color: var(--text-dark); }
.contact-detail a:hover { color: var(--gold); }

.contact-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid var(--beige);
}
.social-btn-sm:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; }


/* ============================================================
   LOCATION MAP
   ============================================================ */
.location-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.location-detail > i { font-size: 1.1rem; color: var(--gold); width: 20px; flex-shrink: 0; margin-top: 0.2rem; }
.location-detail strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.25rem; }
.location-detail p, .location-detail a { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; }
.location-detail a:hover { color: var(--gold); }


/* ============================================================
   POLICIES
   ============================================================ */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.10);
  transition: transform var(--transition);
}
.policy-card:hover { transform: translateY(-3px); }

.policy-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.policy-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.policy-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }


/* ============================================================
   SOCIAL CARDS
   ============================================================ */
.social-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  min-width: 220px;
  flex: 1;
  max-width: 280px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text-dark);
  gap: 0.5rem;
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.social-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.insta-icon  { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); color: #fff; }
.tiktok-icon { background: #010101; color: var(--white); }
.email-icon  { background: linear-gradient(135deg, var(--blush), var(--gold)); color: var(--white); }

.social-card h3  { font-size: 1.1rem; font-weight: 700; }
.social-card p   { font-size: 0.85rem; color: var(--text-mid); }
.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: gap var(--transition);
}
.social-card:hover .social-cta { gap: 0.7rem; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80&fit=crop')
    center center / cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0.68);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 2rem;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-family: var(--font-italic);
  font-style: italic;
}


/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-location, .footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.footer-email { color: var(--gold-light); }
.footer-email:hover { color: var(--gold); }
.footer-email i, .footer-location i { color: var(--gold); font-size: 0.85rem; }

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-light); }

.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social-icon:hover { background: var(--gold); color: var(--white); }

.footer-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 5%;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
  .about-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge     { right: 1rem; bottom: -1rem; }
  .about-img       { aspect-ratio: 16/9; }

  .booking-layout  { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .location-layout { grid-template-columns: 1fr; }

  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 65px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 0.25rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-link, .nav-cta {
    color: var(--text-dark) !important;
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--cream);
    border-radius: 0;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .nav-link:hover, .nav-cta:hover {
    color: var(--gold) !important;
    background: none;
    transform: none;
  }
  .nav-link.active { color: var(--gold) !important; }
  .nav-cta {
    margin-top: 1rem;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 50px;
    text-align: center;
    padding: 0.75rem 1rem;
    border: none;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
  }
  .nav-overlay.show { display: block; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card  { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }

  /* Form rows */
  .form-row { flex-direction: column; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }

  /* Social */
  .social-cards { flex-direction: column; align-items: center; }
  .social-card  { max-width: 100%; width: 100%; }

  /* Page hero */
  .page-hero { padding: 7.5rem 0 4rem; }
  .page-hero-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: 2.2rem; }
  .hero-btns     { flex-direction: column; align-items: center; }
  .btn           { width: 100%; text-align: center; }

  .intro-stats   { flex-direction: column; align-items: center; }
  .stat-card     { max-width: 100%; width: 100%; }

  .portfolio-grid         { grid-template-columns: 1fr 1fr; }
  .portfolio-preview-grid { grid-template-columns: 1fr 1fr; }

  .services-detail-grid { grid-template-columns: 1fr; }
  .why-grid             { grid-template-columns: 1fr 1fr; }

  .section-title { font-size: 1.8rem; }

  .about-stats { flex-direction: column; }
}

@media (max-width: 380px) {
  .portfolio-grid         { grid-template-columns: 1fr; }
  .portfolio-preview-grid { grid-template-columns: 1fr; }
  .why-grid               { grid-template-columns: 1fr; }
}
