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

:root {
  /* Exact Colors from Screenshot */
  --c-bg-dark: #121212;
  --c-bg-darker: #0a0a0a;
  --c-bg-light: #F9F6F0; /* Light beige for sections */
  --c-white: #FFFFFF;
  
  --c-accent: #D1AC8D; /* Distinctive beige/gold from screenshot */
  --c-accent-hover: #b89578;
  
  --c-text-dark: #111111;
  --c-text-light: #F0F0F0;
  --c-text-muted: #888888;
  --c-border: rgba(255, 255, 255, 0.1);
  --c-border-dark: #EAE5DE;

  /* Typography */
  --ff-sans: 'Inter', sans-serif;
  --ff-serif: 'Playfair Display', serif;
  --ff-script: 'Great Vibes', cursive;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
}

body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-dark);
  background: var(--c-bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-accent);
  color: var(--c-bg-dark);
}
.btn--primary:hover {
  background: var(--c-accent-hover);
}
.btn--primary-light {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--c-white);
}
.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--c-bg-darker);
  border-bottom: 1px solid var(--c-border);
  padding: 8px 0;
  font-size: 11px;
  color: var(--c-text-muted);
}
.topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__center {
  display: flex;
}
.topbar__item { display: flex; align-items: center; gap: 8px; }
.topbar__item svg { color: var(--c-accent); }
.topbar__social { display: flex; gap: 16px; }
.topbar__social a:hover { color: var(--c-white); }

/* ══════════════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════════════ */
.header {
  background: var(--c-bg-dark);
  padding: 20px 0;
  position: relative;
  z-index: 100;
}
.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.logo__name { font-family: var(--ff-serif); font-size: 24px; font-weight: 500; color: var(--c-white); letter-spacing: 0.05em; }
.logo__sub { font-size: 9px; letter-spacing: 0.3em; color: var(--c-text-muted); text-transform: uppercase; margin-top: 4px; }

.nav__menu { display: flex; gap: 32px; align-items: center; }
.nav__link { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-white); text-transform: uppercase; opacity: 0.7; transition: opacity 0.3s; }
.nav__link:hover, .nav__link.active { opacity: 1; border-bottom: 1px solid var(--c-accent); padding-bottom: 4px; margin-bottom: -5px; }
.nav__link.active { color: var(--c-accent); }

.nav__toggle { display: none; width: 24px; height: 18px; position: relative; }
.nav__toggle span { display: block; width: 100%; height: 2px; background: var(--c-white); position: absolute; transition: all 0.3s; }
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 8px; }
.nav__toggle span:nth-child(3) { top: 16px; }

.mobile-menu { display: none; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO (Split Layout)
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--c-bg-dark);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  min-height: 600px;
}
.hero__content {
  flex: 1;
  padding: 80px var(--space-lg) 120px var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__image-wrapper {
  flex: 1;
  position: relative;
}
.hero__model {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__eyebrow {
  color: var(--c-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--ff-serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 32px;
}
.script-font {
  font-family: var(--ff-script);
  font-size: 72px;
  color: var(--c-accent);
  font-weight: 400;
  display: block;
  margin-top: -10px;
  text-transform: none;
  letter-spacing: 0;
}
.hero__desc {
  font-size: 14px;
  color: var(--c-text-light);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
}

/* ══════════════════════════════════════════════════════════════════════════
   FEATURES BAR
   ══════════════════════════════════════════════════════════════════════════ */
.features-wrapper {
  background: var(--c-bg-light); /* Because it overlays the dark hero slightly */
  position: relative;
  padding-bottom: 40px;
}
.features {
  max-width: 1300px;
  margin: 0 auto;
  background: #1A1A1A; /* Dark box like screenshot */
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  transform: translateY(-50%);
  position: relative;
  z-index: 10;
}
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature__icon {
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg { width: 32px; height: 32px; stroke-width: 1; }
.feature__text h4 { font-size: 10px; color: var(--c-white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.feature__text p { font-size: 11px; color: var(--c-text-muted); }

/* ══════════════════════════════════════════════════════════════════════════
   COMMON SECTION STYLES
   ══════════════════════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-family: var(--ff-serif); font-size: 28px; font-weight: 500; color: #111; letter-spacing: 0.05em; text-transform: uppercase; }
.section-divider { display: flex; align-items: center; justify-content: center; margin: 15px 0; }
.section-divider::before, .section-divider::after { content: ""; display: block; width: 30px; height: 1px; background: #D1AC8D; }
.section-divider span { color: #D1AC8D; margin: 0 10px; font-size: 12px; }
.section-link { font-size: 10px; font-weight: 600; color: #666; letter-spacing: 0.1em; text-transform: uppercase; float: right; margin-top: -30px; }

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════════════════ */
.services { padding: 40px var(--space-lg); max-width: 1400px; margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.service-card { background: var(--c-white); text-align: center; padding-bottom: 24px; position: relative; }
.service-card__img { position: relative; margin-bottom: 30px; }
.service-card__img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.service-card__icon { position: absolute; bottom: 0; left: 50%; transform: translate(-50%, 50%); width: 40px; height: 40px; background: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--c-accent); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.service-card__title { font-size: 11px; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.service-card__desc { font-size: 11px; color: #666; padding: 0 12px; margin-bottom: 16px; line-height: 1.4; }
.service-card__link { font-size: 10px; font-weight: 600; color: #999; letter-spacing: 0.1em; text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════════════════════
   PROMO BANNER
   ══════════════════════════════════════════════════════════════════════════ */
.promo-wrapper { padding: 40px var(--space-lg); max-width: 1400px; margin: 0 auto; }
.promo { background: #121212; border-radius: 8px; padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; color: var(--c-white); }
.promo__text { flex: 0 0 300px; }
.promo__eyebrow { font-size: 10px; color: var(--c-accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.promo__text h2 { font-family: var(--ff-serif); font-size: 32px; font-weight: 400; margin-bottom: 24px; line-height: 1.2; }
.promo__features { display: flex; gap: 40px; flex: 1; justify-content: flex-end; }
.promo__feature { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; max-width: 200px; }
.promo__feature svg { color: var(--c-accent); width: 28px; height: 28px; stroke-width: 1; }
.promo__feature h4 { font-size: 12px; font-weight: 600; }
.promo__feature p { font-size: 11px; color: var(--c-text-muted); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════════════════ */
.gallery { padding: 40px var(--space-lg); max-width: 1400px; margin: 0 auto; }
.gallery__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gallery__item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════════ */
.pricing { padding: 40px var(--space-lg); max-width: 1400px; margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pricing-card { background: var(--c-white); padding: 32px 24px; border: 1px solid var(--c-border-dark); border-radius: 4px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.pricing-card--popular { background: #FAF7F2; border-color: var(--c-accent); transform: scale(1.05); z-index: 2; }
.pricing-card__badge { position: absolute; top: -10px; background: var(--c-accent); color: var(--c-white); font-size: 9px; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-card__header h3 { font-size: 12px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; }
.pricing-card__features { text-align: left; margin-bottom: 24px; flex-grow: 1; width: 100%; }
.pricing-card__features li { font-size: 11px; color: #555; padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.pricing-card__features li::before { content: "-"; color: var(--c-accent); }
.pricing-card__price { font-family: var(--ff-serif); font-size: 36px; font-weight: 600; color: #111; margin-bottom: 24px; width: 100%; text-align: left;}
.pricing-card .btn { width: 100%; border: 1px solid #DDD; color: #111; background: transparent; }
.pricing-card--popular .btn { background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent); }

.pricing-promo { position: relative; border-radius: 4px; overflow: hidden; }
.pricing-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pricing-promo__content { position: relative; z-index: 1; padding: 40px; height: 100%; background: rgba(0,0,0,0.6); display: flex; flex-direction: column; justify-content: center; color: var(--c-white); }
.pricing-promo__content h3 { font-family: var(--ff-serif); font-size: 28px; font-weight: 400; line-height: 1.2; }
.pricing-promo__content h3.accent { font-family: var(--ff-script); color: var(--c-accent); font-size: 36px; margin-bottom: 16px; }
.pricing-promo__content p { font-size: 12px; margin-bottom: 24px; opacity: 0.8; }

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.testimonials { padding: 40px var(--space-lg) 80px; max-width: 1400px; margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { border: 1px solid var(--c-border-dark); padding: 24px; display: flex; gap: 16px; align-items: flex-start; border-radius: 4px; }
.testimonial__quote-mark { font-family: var(--ff-serif); font-size: 40px; color: var(--c-accent); line-height: 1; height: 20px; }
.testimonial__content { flex: 1; }
.testimonial__text { font-size: 12px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.testimonial__author { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #EEE; padding-top: 16px; }
.testimonial__author-info { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; }
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__author-info h4 { font-size: 11px; font-weight: 700; color: #111; }
.stars { color: var(--c-accent); font-size: 12px; letter-spacing: 2px; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer { background: var(--c-bg-darker); padding: 60px var(--space-lg) 20px; color: var(--c-white); }
.footer__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr 2fr; gap: 40px; margin-bottom: 60px; }
.footer__brand .logo__name { font-size: 20px; }
.footer__desc { font-size: 11px; color: var(--c-text-muted); margin: 20px 0; max-width: 250px; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { color: var(--c-text-muted); }
.footer__social a:hover { color: var(--c-accent); }

.footer__title { font-size: 11px; font-weight: 600; color: var(--c-white); letter-spacing: 0.05em; margin-bottom: 24px; text-transform: uppercase; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 11px; color: var(--c-text-muted); }
.footer__links a:hover { color: var(--c-accent); }

.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 11px; color: var(--c-text-muted); }
.footer__contact svg { color: var(--c-accent); width: 14px; height: 14px; }

.footer__form { display: flex; margin-top: 16px; }
.footer__form input { padding: 12px; border: none; font-size: 11px; width: 100%; border-radius: 2px 0 0 2px; outline: none; }
.footer__form button { padding: 12px 20px; background: var(--c-accent); color: var(--c-bg-dark); font-size: 11px; font-weight: 600; border-radius: 0 2px 2px 0; }

.footer__bottom { max-width: 1400px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 10px; color: var(--c-text-muted); }
.footer__bottom-links a { margin-left: 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero__title { font-size: 48px; }
  .script-font { font-size: 60px; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-promo { grid-column: span 3; }
  .features { flex-wrap: wrap; }
  .feature { width: 45%; margin-bottom: 20px; }
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
}
