/* ═══════════════════════════════════════════════════════════
   Forever After Ink — Stylesheet
   Palette: #0a0a0a (black) · #C8880A (gold) · #f0ece4 (cream)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark-2:   #1a1a1a;
  --gold:     #C8880A;
  --gold-lt:  #e0a020;
  --cream:    #f0ece4;
  --white:    #ffffff;
  --gray:     #888888;
  --gray-lt:  #555555;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  --nav-h:    80px;
  --radius:   4px;
  --transition: 0.35s ease;
}

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

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

.section { padding: 100px 0; }
.section-dark { background-color: var(--dark); }

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-desc {
  max-width: 520px;
  margin: 16px auto 0;
  color: var(--gray);
  font-size: 0.95rem;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,236,228,0.35);
}
.btn-ghost:hover {
  background: rgba(240,236,228,0.08);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 1px 0 rgba(200, 136, 10, 0.25);
  backdrop-filter: blur(12px);
}

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

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  transition: opacity var(--transition);
}
.nav-logo img:hover { opacity: 0.8; }

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-ig {
  display: flex;
  align-items: center;
  color: var(--cream) !important;
}
.nav-ig:hover { color: var(--gold) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200, 136, 10, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 136, 10, 0.05) 0%, transparent 50%),
    linear-gradient(to bottom, #0a0a0a 0%, #0f0d0b 100%);
}

/* Decorative lines */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(200, 136, 10, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg::before {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-bg::after {
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: calc(var(--nav-h) + 20px) 20px 40px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(200, 136, 10, 0.5);
  box-shadow: 0 0 60px rgba(200, 136, 10, 0.2);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.hero-sub {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -8px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── INTRO STRIP ─────────────────────────────────────────── */
.intro-strip {
  background: var(--gold);
  padding: 24px 0;
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 40px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.strip-icon {
  font-size: 0.65rem;
  opacity: 0.6;
}

.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(10, 10, 10, 0.25);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text h2 { margin-bottom: 4px; }

.about-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-image { position: relative; }

.about-img-frame {
  position: relative;
  padding-bottom: 110%;
}

.about-img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
  border: 1px solid rgba(200, 136, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-lt);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* When real images are added: */
.about-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1.5px solid rgba(200, 136, 10, 0.3);
  z-index: -1;
}

/* ── SERVICES & PRICING ──────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  border: 1px solid rgba(200, 136, 10, 0.18);
  background: var(--dark);
  transition: border-color var(--transition), transform var(--transition);
}

.pricing-card:hover {
  border-color: rgba(200, 136, 10, 0.5);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1508 0%, var(--dark) 60%);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.pricing-card-inner {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  height: 100%;
}

.pricing-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.pricing-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.pricing-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid rgba(200, 136, 10, 0.15);
  padding-top: 20px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.pricing-duration {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ── STYLES SECTION ──────────────────────────────────────── */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.style-card {
  background: var(--dark-2);
  padding: 44px 36px;
  border: 1px solid rgba(200, 136, 10, 0.08);
  transition: border-color var(--transition), background var(--transition);
}

.style-card:hover {
  border-color: rgba(200, 136, 10, 0.4);
  background: #1f1a12;
}

.style-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.style-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── GALLERY CAROUSEL ────────────────────────────────────── */
.gallery .section-header { margin-bottom: 40px; }

.carousel-outer {
  position: relative;
  overflow: hidden;
  margin-bottom: 52px;
  padding: 16px 0 32px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 72%;
  overflow: hidden;
  border: 1px solid rgba(200, 136, 10, 0.1);
  opacity: 0.35;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
  cursor: pointer;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(200, 136, 10, 0.45);
}

.carousel-slide img {
  width: 100%;
  height: 82vh;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #0a0a0a;
  transition: transform 0.6s ease;
}

.carousel-slide.active:hover img { transform: scale(1.03); }

.carousel-slide video {
  width: 100%;
  height: 82vh;
  object-fit: contain;
  background: #0a0a0a;
  display: block;
}

.carousel-slide--video {
  position: relative;
}

.slide-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(200, 136, 10, 0.9);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  pointer-events: none;
}

/* Nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.75);
  border: 1.5px solid rgba(200, 136, 10, 0.35);
  color: var(--cream);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.carousel-btn--prev { left: 24px; }
.carousel-btn--next { right: 24px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 24px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 236, 228, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

.gallery-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── AFTERCARE ───────────────────────────────────────────── */
.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aftercare-step {
  padding: 40px 32px;
  border-top: 2px solid rgba(200, 136, 10, 0.25);
  transition: border-color var(--transition);
}

.aftercare-step:hover { border-top-color: var(--gold); }

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 136, 10, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.aftercare-step:hover .step-num { color: rgba(200, 136, 10, 0.45); }

.aftercare-step p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 8px;
}

/* ── CONTACT / BOOKING ───────────────────────────────────── */
.booking-header {
  text-align: center;
  margin-bottom: 56px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.booking-info-card {
  padding: 24px 20px;
  border: 1px solid rgba(200, 136, 10, 0.15);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-info-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.phone-booking-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.phone-booking-link:hover { color: var(--gold); }

.ig-booking-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--cream);
  transition: color var(--transition);
}
.ig-booking-link:hover { color: var(--gold); }

.booking-external-btn {
  text-align: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Iframe embed */
.booking-embed-wrap {
  border: 1px solid rgba(200, 136, 10, 0.2);
  overflow: hidden;
  background: #fff;
  min-height: 700px;
}

.booking-iframe {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #050505;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(200, 136, 10, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200, 136, 10, 0.1);
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 136, 10, 0.35);
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links h4, .footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.75rem;
  color: var(--gray-lt);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image { max-width: 480px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .booking-info-card { flex: 1; min-width: 200px; }
  .booking-external-btn { flex: 1; min-width: 200px; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .aftercare-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-toggle { display: flex; z-index: 1001; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(200, 136, 10, 0.15);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 0.85rem;
    opacity: 1;
  }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .styles-grid { grid-template-columns: 1fr; }
  .aftercare-grid { grid-template-columns: 1fr; }

  .carousel-slide {
    flex: 0 0 85%;
  }
  .carousel-slide img,
  .carousel-slide video {
    height: 90vw;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .carousel-btn--prev { left: 10px; }
  .carousel-btn--next { right: 10px; }

  .contact-form-wrap { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }

  .strip-grid { flex-direction: column; gap: 16px; }
  .strip-divider { width: 40px; height: 1px; }
  .strip-item { padding: 0; }

  .hero-logo { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
}
