:root {
  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, sans-serif;
}

/* ================================
   DARK MODE (DEFAULT)
================================ */
body[data-theme="dark"] {
  --page-bg: #000;
  --section-bg: #000;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
}


/* ================================
   LIGHT MODE
================================ */
body[data-theme="light"] {
  --page-bg: #f4f5f7;
  --section-bg: transparent;
  --text: rgba(20,20,20,.92);
  --muted: rgba(20,20,20,.6);
  --glass: rgba(0,0,0,.05);
  --border: rgba(0,0,0,.12);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--page-bg);
}


* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body[data-theme="dark"] .hero-overlay {
  background: linear-gradient(
          to bottom,
          rgba(0,0,0,.55),
          rgba(0,0,0,.35),
          rgba(0,0,0,.8)
  );
}

body[data-theme="light"] .hero-overlay {
  background: linear-gradient(
          to bottom,
          rgba(255,255,255,.65),
          rgba(255,255,255,.45),
          rgba(255,255,255,.85)
  );
}

body[data-theme="light"] .cta-btn {
  color: #111;
  border-color: rgba(0,0,0,.4);
}

body[data-theme="light"] .cta-btn:hover {
  background: rgba(0,0,0,.05);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  opacity: .7;
  margin-left: 50px;
}

.theme-toggle:hover {
  opacity: 1;
}

section {
  padding: 96px 20px;
}

h1, h2 {
  word-wrap: break-word;
}
img {
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--page-bg);
}

/* Hero background carousel */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Make the first item visible */
.carousel-item.active {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

/*.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}*/

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to bottom,
          rgba(0,0,0,.55),
          rgba(0,0,0,.35),
          rgba(0,0,0,.8)
  );
  z-index: 1;
}

/* ================================
   HERO TEXT ANIMATION
================================ */

.hero-text {
  overflow: hidden;
}

/* Initial state */
.hero-text .tagline,
.hero-text h1 {
  opacity: 0;
  transform: translateY(20px);
}

/* Tagline animation */
.hero-text .tagline {
  animation: fadeUp 1.2s ease forwards;
  animation-delay: .2s;
}

/* Headline animation */
.hero-text h1 {
  animation: fadeUp 1.4s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .6s;
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Top bar */
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
}

.brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .4px;
}

.cta-btn {
  padding: 10px 18px;
  border-radius: 999px;

  background: transparent;
  border: 1px solid rgba(255,255,255,.8);

  color: #fff;
  font-size: 13px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,1);
}




/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 100px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 56px;
}

.hero-text {
  max-width: 600px;
}

.tagline {
  display: block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

/* Stats */
.stats {
  display: flex;
  gap: 36px;
  padding-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat span {
  font-family: var(--serif);
  font-size: 32px;
}

.stat small {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text), transparent);
  animation: scroll 2s infinite;
  z-index: 2;
}

@keyframes scroll {
  0% { transform: translateY(-8px); opacity: .3; }
  50% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 768px) {
  .topbar {
    padding: 20px;
  }

  .hero-content {
    /*padding: 0 20px;*/
    gap: 40px;
  }

  .hero-text h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.1;
  }

  .stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat span {
    font-size: 26px;
  }
}


/* ================================
   BENEFITS SECTION
================================ */

.benefits {
  position: relative;
 /* padding: 140px 36px 160px;*/
  background: var(--page-bg);
  width: 100%;
  padding: 180px 20px;
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-intro {
  max-width: 520px;
  margin-bottom: 80px;
}

.benefits-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.benefits-intro h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.benefit-card {
  max-width: 320px;
}

.benefit-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ================================
   PREMIUM REVEAL ANIMATION
================================ */
.reveal {
  opacity: 0;
  transform: translateY(72px);
  transition:
          opacity 2.2s ease,
          transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/*.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }*/

/* Responsive */
@media (max-width: 900px) {
  .benefits {
    padding: 110px 28px 120px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


.benefit-index {
  font-size: 12px;
  letter-spacing: .25em;
  color:  var(--muted);
  display: block;
  margin-bottom: 12px;
}

.benefits-divider {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 60px 0 100px;
}


/* ================================
   SERVICES SECTION
================================ */

.services {
  padding: 160px 36px;
  background: var(--page-bg);
  /*background: linear-gradient(
          to bottom,
          var(--page-bg),
          #070707
  );*/
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--section-divider);
}


.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-intro {
  max-width: 520px;
  margin-bottom: 120px;
}

.services-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.services-intro h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

/* Service items */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.service-item {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 80px;
}

.service-item.reverse {
  grid-template-columns: .8fr 1.2fr;
}

.service-item.reverse .service-image {
  order: 2;
}

/* Images */
.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  backface-visibility: hidden;
}


.service-image.in-view img {
  transform: scale(1);
}

/* Text */
.service-content h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 14px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .services {
    padding: 120px 28px;
  }

  .services-list {
    gap: 120px;
  }

  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-item.reverse .service-image {
    order: 0;
  }
}


/* ================================
   ABOUT – OWNER FOCUS
================================ */

.about {
  padding: 160px 36px;
  background: var(--page-bg);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* Image */
.about-image {
  border-radius: 30px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Content */
.about-content {
  max-width: 520px;
}

.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  margin: 12px 0 6px;
}

.about-role {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
}

/* Credentials */
.about-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.about-credentials li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

/* Bio */
.about-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

/* Impact */
.about-impact {
  font-size: 15px;
  color: var(--text);
}

.about-impact strong {
  font-family: var(--serif);
  font-size: 26px;
  margin-right: 6px;
}

/* ================================
   SLIDE-IN PREMIUM ANIMATIONS
================================ */

.reveal-slide-left,
.reveal-slide-right {
  opacity: 0;
  transform: translateX(0);
  transition:
          opacity 1.1s ease,
          transform 1.1s cubic-bezier(.2,.8,.2,1);
}

.reveal-slide-left {
  transform: translateX(-40px);
}

.reveal-slide-right {
  transform: translateX(40px);
}

.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }
.delay-7 { transition-delay: .7s; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


/* ================================
   BOOKING
================================ */
.booking {
  padding: 5px 36px;
  background:var(--page-bg);
  /*background: linear-gradient(to bottom, var(--page-bg), #050505);*/
  text-align: center;
}

.booking-inner h2 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 16px;
}

.booking-inner p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 16px;
}


/* ================================
   FAQ – MODERN + IMAGE-LED
================================ */

.faq {
  padding: 180px 0;
  background: var(--page-bg);
}

.faq-content h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* image dominates */
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

/* Image */
.faq-image {
  border-radius: 32px;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.faq-content {
  max-width: 520px;
}

.faq-intro {
  margin-bottom: 64px;
}

/* FAQ list */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 22px 0;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
  transform: none;
}

/* Icon */
.faq-icon {
  display: inline-block;
  transition: transform .25s ease, opacity .25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.2,.8,.2,1);
}

.faq-answer p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}



/* Responsive */
@media (max-width: 900px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-image {
    max-height: 420px;
  }
}

/* ================================
   CONTACT
================================ */
.contact {
  padding: 140px 36px;
  background: var(--page-bg);
  text-align: center;
}

.contact-inner h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 48px);
  margin-bottom: 12px;
}

.contact-inner p {
  color: var(--text);
  margin-bottom: 24px;
}

.contact-inner a {
  font-size: 18px;
  color: var(--text);
}


/* ================================
   CONTACT – SOCIAL LINKS
================================ */

.email-link {
  display: inline-block;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 40px;
}


/* ================================
   CONTACT – SOCIAL LINKS (PREMIUM)
================================ */

.socials {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 6px;
  transition: color .25s ease;
  text-decoration: none;
}

/* underline (hidden by default) */
.social-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

/* hover state */
.social-link:hover {
  color: var(--text);
}

.social-link:hover::after {
  transform: scaleX(1);
}


/* Hover effect */
.social-link:hover {
  color: var(--text);
}


/* ================================
   TESTIMONIALS
================================ */

.testimonials {
  padding: 160px 0;
  background: var(--page-bg);
  overflow: hidden;
}

.testimonials-intro h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}

.testimonials-intro {
  max-width: 520px;
  margin-bottom: 100px;
}

/* Track wrapper */
.testimonial-track-wrapper {
  overflow: hidden;
  position: relative;
}

/* Sliding track */
.testimonial-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: slideTestimonials 60s linear infinite;
}

.testimonial-track-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

/* Individual testimonial */
.testimonial {
  min-width: 420px;
  max-width: 420px;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.testimonial span {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}

/* Animation */
@keyframes slideTestimonials {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slideTestimonialsMobile {
  from { transform: translateX(0); }
  to { transform: translateX(-1000px); }
}


/* Responsive */
@media (max-width: 768px) {
  .testimonial {
    min-width: 300px;
    max-width: 300px;
  }

  .testimonial p {
    font-size: 20px;
  }
}


@media (max-width: 768px) {
  .scroll-indicator { display: none; }
  .stats, .socials { gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { max-width: none; }
  .services { padding: 96px 20px; }
  .about { padding: 96px 20px; }
  .faq { padding: 96px 20px; }
}

@media (max-width: 900px) {
  .service-item {
    gap: clamp(32px, 6vw, 48px);
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    animation: slideTestimonialsMobile 40s linear infinite;
  }

  .reveal-slide-left,
  .reveal-slide-right {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition:
            opacity 1.2s ease,
            transform 1.2s cubic-bezier(.22,.61,.36,1);
  }

  .reveal-slide-left.visible,
  .reveal-slide-right.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ================================
   PRICING / PLANS
================================ */



.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.plan-card {
  background: var(--page-bg);
  color: var(--text);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.19);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
  border-color: rgba(155, 89, 182, 1)
}

/* Featured plan */
.plan-card.featured {
  transform: translateY(-20px);
  box-shadow: 0 40px 100px rgba(0,0,0,.16);
  border-color: rgba(155, 89, 182, 1)
}

/* Header */
.plan-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.plan-header h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 6px;
}

.plan-sub {
  font-size: 13px;
  color: var(--text);
}

/* Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  text-align: left;
}

.plan-features li {
  font-size: 15px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgba(155, 89, 182, 1)
}

.plan-features .muted {
  opacity: .4;
}

/* Price */
.plan-price {
  margin-bottom: 28px;
}

.plan-price strong {
  font-size: 42px;
  color: rgba(155, 89, 182, 1)
}

.plan-price span {
  font-size: 15px;
  color: var(--text);
}

/* Button */
.plan-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  background:  linear-gradient(135deg, #9B59B6, #ff7a5a);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(179,106,216,.4);
}

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

@media (max-width: 900px) {
  .plans {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {

  /* Disable hover border for ALL plans */
  .plan-card:hover {
    border-color: rgba(255,255,255,.12);
  }

  /* Allow ONLY Pro / featured plan */
  .plan-card.featured {
    border-color: #9B59B6;
  }

  .theme-toggle {
    margin-left: 20px;
  }

}








