/* ============================================================
   KOME EXPERIENCE — Luxury Landing Page Styles
   Colors: Gold #C9A84C · Black #080808 · Marble textures
   Fonts: Playfair Display (headings) · Cormorant Garamond (body)
   ============================================================ */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-text: #D4B060;
  --gold-dark: #9A7A2E;
  --black: #080808;
  --black-light: #111111;
  --black-mid: #1a1a1a;
  --white: #FFFFFF;
  --pearl: #F7E7CE;
  --gray: #777777;
  --gray-light: #C8C5C1;
  --marble-light: #F0ECE3;
  --marble-mid: #E8E0D0;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-body: 1.125rem;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-font-pairing="2"] {
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-font-pairing="3"] {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Source Sans 3', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--black);
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- PAGE ENTER ANIMATION ---- */
@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageEnter 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

body.page-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(.22,.61,.36,1), transform 0.85s cubic-bezier(.22,.61,.36,1);
}

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

.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.20s; }
.reveal--delay-3 { transition-delay: 0.30s; }
.reveal--delay-4 { transition-delay: 0.40s; }

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}

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

/* ---- GOLD SHIMMER KEYFRAMES ---- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes marbleShift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}

@keyframes shimmerLine {
  0% { background-position: -300% center; }
  100% { background-position: 300% center; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color var(--transition), padding var(--transition),
              backdrop-filter var(--transition);
}

.nav--scrolled {
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--gray-light);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--current {
  color: var(--gold);
}

.nav__link--current::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: kenBurns 28s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.62) 40%,
    rgba(10, 10, 10, 0.78) 70%,
    rgba(10, 10, 10, 0.96) 100%
  );
}


.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 950px;
  padding: 2rem;
}


.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-text);
  border: 1px solid rgba(229, 193, 88, 0.5);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(229, 193, 88, 0.9);
  margin: -1rem 0 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__title-accent {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-text) 25%,
    var(--gold-light) 50%,
    var(--gold-text) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 720px;
  margin: 0 auto 3rem;
}

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

.hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-light);
  margin: 0.75rem auto 0;
  letter-spacing: 0.08em;
  max-width: 680px;
}

.page-hero--short {
  min-height: 30vh;
  padding: 8rem 2rem 3rem;
}

/* ---- LEGAL CONTENT ---- */
.container--narrow {
  max-width: 800px;
}

.legal-content {
  padding: 5rem 0;
  background: var(--black);
}

.legal-content__updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light, var(--gold));
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.legal-content li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--gold);
  transition: color var(--transition);
}

.legal-content a:hover {
  color: var(--white);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.15rem 2.5rem;
  border: 1px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

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

.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, transparent 40%, rgba(201, 168, 76, 0.04) 100%),
    url("https://images.pexels.com/photos/1323712/pexels-photo-1323712.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover, cover;
  background-position: center, center;
  opacity: 0.22;
  filter: brightness(0.5);
  animation: marbleShift 30s ease-in-out infinite;
}

.intro__content {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}


.intro__line {
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.4) 30%,
    rgba(240, 210, 120, 0.9) 50%,
    rgba(201, 168, 76, 0.4) 70%,
    transparent 100%
  );
  background-size: 300% auto;
  margin: 0 auto;
  animation: shimmerLine 5s ease-in-out infinite;
}

.intro__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.3;
  padding: 2rem 0 1rem;
}

.intro__lead-kome {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.intro__text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--gray-light);
  padding: 0 0 2.5rem;
}

.intro__text strong {
  color: var(--gold);
  font-weight: 500;
}

.intro__text em {
  color: var(--white);
  font-style: italic;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header__num {
  font-weight: 400;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.how-it-works__intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-header__desc {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header--light .section-header__title {
  color: var(--white);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 9rem 0;
  background: var(--black);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services__callout {
  text-align: center;
  max-width: 680px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.services__callout-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.services__callout-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--gray-light);
}

.service-card {
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow), transform var(--transition-slow);
  isolation: isolate;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(201, 168, 76, 0.05);
}

.service-card--featured {
  border-color: rgba(201, 168, 76, 0.25);
  position: relative;
}

.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  z-index: 2;
}

.service-card__img-wrap {
  position: relative;
  height: 340px;
  clip-path: inset(0);
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}


.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.service-card__body {
  padding: 2rem;
}

.service-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-card__text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-card__features li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-light);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 0.85rem;
  color: var(--gold-light);
}

/* Services teaser (home page) */
.services--teaser .services__grid {
  display: none;
}

.services-teaser__actions {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   FEATURED — Body Food Experience (own section)
   ============================================================ */
.featured {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}

.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  z-index: 1;
}

.featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
  background: var(--black-light);
}

.featured__img-wrap {
  position: relative;
  overflow: hidden;
}

.featured__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured:hover .featured__img {
  transform: scale(1.04);
}

.featured__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 30%,
    rgba(10, 10, 10, 0.4) 100%
  );
  pointer-events: none;
}

.featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  background: var(--black-light);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}

.featured__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.featured__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.featured__text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.featured__features {
  list-style: none;
  margin-bottom: 2rem;
}

.featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.featured__features li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-light);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.featured__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ============================================================
   KOME ON THE WATER — Yacht Experience
   ============================================================ */
.yacht-experience {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 7rem;
  background: var(--black);
}

.yacht-experience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.yacht-experience__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.3;
}

.yacht-experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8, 8, 0.45) 40%,
    rgba(8, 8, 8, 0.82) 100%
  );
}

.yacht-experience__inner {
  position: relative;
  z-index: 1;
}

/* --- Layout: stacked (default) --- */
.yacht-experience__inner--stacked {
  max-width: 740px;
}

/* --- Layout: split (text left, video right) --- */
.yacht-experience__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 100%;
}

.yacht-experience__inner--split .yacht-experience__video-wrap {
  margin-top: 0;
}

.yacht-experience__inner--split .yacht-experience__video-thumb {
  max-width: 100%;
}

/* --- Layout: bgVideo (video plays as background, glass panel left) --- */
.yacht-experience--bg-video {
  padding: 6rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.yacht-experience--bg-video .yacht-experience__bg-img {
  display: none;
}

.yacht-experience__bg-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
}

.yacht-experience--bg-video .yacht-experience__overlay {
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.45) 0%,
    rgba(8, 8, 8, 0.15) 60%,
    rgba(8, 8, 8, 0.05) 100%
  );
}

.yacht-experience__inner--bgVideo {
  max-width: 100%;
  display: flex;
  align-items: center;
}

.yacht-experience__inner--bgVideo .yacht-experience__content {
  max-width: 640px;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 168, 76, 0.38);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.08) inset,
    0 8px 60px rgba(0, 0, 0, 0.4),
    0 0 120px rgba(201, 168, 76, 0.04);
  padding: 3rem 3rem 2.75rem;
}

.yacht-experience__inner--bgVideo .yacht-experience__features {
  text-align: left;
  width: 100%;
}

.yacht-experience__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.yacht-experience__watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
}

.yacht-experience__watch-btn:hover {
  color: var(--gold);
}

.yacht-experience__watch-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  padding-left: 2px;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}

.yacht-experience__watch-btn:hover .yacht-experience__watch-play {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* --- Layout: cinematic (text centered, video full-width below) --- */
.yacht-experience__inner--cinematic {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.yacht-experience__inner--cinematic .yacht-experience__content {
  max-width: 720px;
}

.yacht-experience__inner--cinematic .yacht-experience__features {
  text-align: left;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.yacht-experience__inner--cinematic .yacht-experience__video-wrap {
  margin-top: 4.5rem;
  width: 100%;
}

.yacht-experience__inner--cinematic .yacht-experience__video-thumb {
  max-width: 100%;
}

.yacht-experience__inner--cinematic .yacht-experience__video-label {
  text-align: center;
}

.yacht-experience__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.yacht-experience__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 0.85rem;
}

.yacht-experience__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.yacht-experience__body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
}

.yacht-experience__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.yacht-experience__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.yacht-experience__feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 50%;
  color: var(--gold);
}

.yacht-experience__feature-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.45;
}

.yacht-experience__cta {
  margin-bottom: 0;
}

/* Video thumbnail */
.yacht-experience__video-wrap {
  margin-top: 3.5rem;
}

.yacht-experience__video-thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  cursor: pointer;
  background: var(--black);
  padding: 0;
}

.yacht-experience__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition), filter 0.5s var(--transition);
  filter: brightness(0.65);
}

.yacht-experience__video-thumb:hover .yacht-experience__thumb-img {
  transform: scale(1.04);
  filter: brightness(0.8);
}

.yacht-experience__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.45);
  border: 2px solid rgba(201, 168, 76, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  padding-left: 3px; /* optical centering for triangle */
}

.yacht-experience__video-thumb:hover .yacht-experience__play {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.yacht-experience__video-label {
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Yacht video modal */
.yacht-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yacht-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.yacht-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.93);
  cursor: pointer;
}

.yacht-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}

.yacht-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.yacht-modal__inner {
  position: relative;
  z-index: 1;
  width: 92vw;
  max-width: 1000px;
}

.yacht-modal__video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

  .featured__img {
    min-height: 320px;
  }

  .featured__content {
    padding: 3rem 2rem;
    border-left: none;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
  }
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.dishes {
  padding: 9rem 0;
  background: var(--black-light);
  position: relative;
}

.dishes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.dishes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dishes__card {
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow), transform var(--transition-slow);
  isolation: isolate;
}

.dishes__card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.dishes__img-wrap {
  position: relative;
  height: 280px;
  clip-path: inset(0);
}

.dishes__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

.dishes__card:hover .dishes__img {
  transform: scale(1.08);
}

.dishes__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.9) 100%);
}

.dishes__body {
  padding: 1.75rem;
}

.dishes__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.dishes__list {
  list-style: none;
}

.dishes__list li {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--gray-light);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.dishes__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  padding: 2rem 0;
  background: var(--black-mid);
  overflow: hidden;
  position: relative;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent) 1;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 9rem 0;
  background: var(--black);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(201, 168, 76, 0.05) 0%, transparent 50%, rgba(201, 168, 76, 0.06) 100%),
    url("https://images.pexels.com/photos/1323712/pexels-photo-1323712.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover, cover;
  background-position: center, center;
  opacity: 0.24;
  filter: brightness(0.5);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 1.25rem;
  position: relative;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.gallery__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 10, 10, 0.85) 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__caption-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.gallery__caption-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

/* Gallery teaser (home page) — compact grid + CTA */
.gallery--teaser .gallery__grid {
  grid-auto-rows: 260px;
  margin-bottom: 3rem;
}

.gallery-teaser__grid {
  max-width: 100%;
}

.gallery-teaser__actions {
  text-align: center;
}

/* gold corner accents on hover */
.gallery__item::before,
.gallery__item::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  opacity: 0;
  transition: all var(--transition);
  z-index: 2;
}

.gallery__item::before {
  top: 12px;
  left: 12px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.gallery__item::after {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.gallery__item:hover::before,
.gallery__item:hover::after {
  opacity: 1;
}

/* ---- Gallery Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(26, 26, 26, 0.8);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

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

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(26, 26, 26, 0.85);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

.lightbox__prev {
  left: 1.5rem;
}

.lightbox__next {
  right: 1.5rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.lightbox__prev:disabled,
.lightbox__next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox__inner {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.lightbox__caption {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-align: center;
}

.lightbox__caption .gallery__caption-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.lightbox__caption .gallery__caption-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.lightbox__counter {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gray);
}

@media (max-width: 768px) {
  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 2rem;
    left: 0.75rem;
    right: 0.75rem;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
}

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

.testimonials__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
}

.testimonials__grid {
  columns: 2;
  column-gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonials__more {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  break-inside: avoid;
  margin-bottom: 2rem;
  display: inline-block;
  width: 100%;
}

.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial__stars span {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.testimonial__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  color: var(--white);
}

.testimonial__event {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.testimonial--hidden {
  display: none;
}

/* Testimonials teaser (home page) */
.testimonials--teaser .testimonials__grid {
  display: none;
}

.testimonial--single {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.testimonials-teaser__actions {
  text-align: center;
}

/* FAQ (index2 / Coconut inspo) */
.faq {
  padding: 7rem 0;
  background: var(--black-light);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.faq__list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 1.5rem 0;
}

.faq__item:first-child {
  padding-top: 0;
}

.faq__question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.faq__answer {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--gray);
}

/* CTA block (home page) */
.cta-block {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.cta-block__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   FLOATING TEXT US BUTTON
   ============================================================ */

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 9rem 0;
  background: var(--black);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, transparent 50%, rgba(201, 168, 76, 0.05) 100%),
    url("https://images.pexels.com/photos/1323712/pexels-photo-1323712.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover, cover;
  background-position: center, center;
  opacity: 0.22;
  filter: brightness(0.5);
  animation: marbleShift 30s ease-in-out infinite;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
}

.contact__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__detail-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__detail-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-light);
}

/* ---- FORM ---- */
.contact__form-wrap {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.contact-form__step {
  display: none;
}

.contact-form__step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.contact-form__step-header {
  margin-bottom: 2rem;
}

.contact-form__step-num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form__step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.5rem;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--gray);
  font-weight: 400;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--black-light);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkboxes */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-light);
  transition: color var(--transition);
}

.form-checkbox:hover {
  color: var(--white);
}

.form-checkbox input {
  display: none;
}

.form-checkbox__check {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.form-checkbox__check::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.form-checkbox input:checked + .form-checkbox__check {
  border-color: var(--gold);
}

.form-checkbox input:checked + .form-checkbox__check::after {
  transform: scale(1);
}

.contact-form__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.btn--form {
  padding: 0.8rem 1.75rem;
  font-size: 0.8rem;
}

/* Progress bar */
.contact-form__progress {
  margin-top: 2rem;
  height: 2px;
  background: rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.contact-form__progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width var(--transition);
}

/* Success state */
.contact-form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.contact-form__success.visible {
  display: block;
  animation: fadeIn 0.6s ease;
}

.contact-form__success-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.contact-form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-form__success p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================================
   BOOKING WIDGET SECTION
   ============================================================ */
.booking-widget {
  padding: 8rem 0 6rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 800px;
  overflow: visible;
}

.booking-widget__inner {
  text-align: center;
}

.booking-widget__header {
  margin-bottom: 2.5rem;
}

.booking-widget__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
}

.booking-widget__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

.booking-widget__alt {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.booking-widget__alt p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
}

.contact__book-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__book-cta p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 4rem 0 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
}

.footer__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 1rem;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

.footer__bottom a {
  color: var(--gray);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--gold);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 9rem 0;
  background: var(--black);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-it-works__step {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition-slow);
}

.how-it-works__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.how-it-works__step:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.how-it-works__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.how-it-works__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.how-it-works__text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ============================================================
   ABOUT THE CHEF
   ============================================================ */
.about-chef {
  padding: 9rem 0;
  background: var(--black-mid);
  position: relative;
}

.about-chef__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.about-chef__img-wrap {
  height: 560px;
  overflow: hidden;
  position: relative;
}

.about-chef__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.about-chef__img-wrap:hover .about-chef__img {
  transform: scale(1.05);
}

.about-chef__content {
  position: relative;
  padding-left: 2rem;
}

.about-chef__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.about-chef__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0 1.5rem;
}

.about-chef__text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .dishes__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-chef__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-chef__img-wrap {
    height: 400px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .testimonials__grid {
    columns: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__top {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s ease;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__link--cta {
    font-size: 1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .contact-form__fields {
    grid-template-columns: 1fr;
  }

  .contact__details {
    grid-template-columns: 1fr;
  }

  .footer__links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .service-card__body {
    padding: 1.5rem;
  }

  .testimonial {
    padding: 1.75rem;
  }

  .contact__form-wrap {
    padding: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .yacht-experience__inner--split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

}

@media (max-width: 768px) {
  .yacht-experience {
    padding: 6rem 0 5rem;
    min-height: unset;
  }

  .yacht-experience__inner--cinematic {
    text-align: left;
    align-items: flex-start;
  }

  .yacht-experience__inner--cinematic .yacht-experience__features {
    margin-left: 0;
    margin-right: 0;
  }

  .yacht-experience__inner--bgVideo .yacht-experience__content {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .yacht-experience__video-thumb {
    max-width: 100%;
  }

  .yacht-experience__play {
    width: 60px;
    height: 60px;
  }

  .yacht-modal__inner {
    width: 96vw;
  }
}

/* ============================================================
   MOBILE SECTION PADDING
   ============================================================ */
@media (max-width: 768px) {
  .services,
  .dishes,
  .how-it-works,
  .testimonials,
  .gallery,
  .contact,
  .about-chef,
  .faq,
  .cta-block,
  .featured {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .intro {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* ============================================================
   HOVER — only on devices that support it
   ============================================================ */
@media (hover: none) {
  .btn--primary:hover,
  .btn--outline:hover {
    transform: none;
    box-shadow: none;
  }

  .service-card:hover,
  .dishes__card:hover,
  .gallery__item:hover,
  .testimonial:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__bg-img {
    animation: none;
    transform: scale(1.06);
  }

  .marquee__track {
    animation: none;
  }

  .reveal,
  .reveal--left,
  .reveal--right {
    opacity: 1;
    transform: none;
  }
}
