/* =========================================
   FOREVER BRACELET — Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9A7C2E;
  --gold-bg:     #F5EDD8;
  --black:       #0D0D0D;
  --dark:        #1A1A1A;
  --mid:         #4A4A4A;
  --gray:        #888888;
  --light-gray:  #C8C8C8;
  --cream:       #FAF8F5;
  --white:       #FFFFFF;
  --border:      #E5E0D8;
  --border-dark: #2A2A2A;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', Arial, sans-serif;

  --radius:      2px;
  --radius-md:   6px;
  --transition:  0.3s ease;

  --nav-h:       72px;
  --max-w:       1200px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
}
.section-subtitle.centered { margin: 0 auto; text-align: center; }

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--black {
  background: var(--black);
  color: var(--white);
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--gold-tint { background: #F9F5EC; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.12);
}
.nav--solid .nav__logo { color: var(--white); }
.nav--solid .nav__link { color: rgba(255,255,255,0.75); }
.nav--solid .nav__link:hover { color: var(--gold); }
.nav--solid .nav__lang { color: rgba(255,255,255,0.75); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link.active { color: var(--gold); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav__lang {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__lang button {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  padding: 2px 4px;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.nav__lang button.active,
.nav__lang button:hover { color: var(--gold-light); }
.nav--solid .nav__lang button.active,
.nav--solid .nav__lang button:hover { color: var(--gold); }
.nav__lang-sep { opacity: 0.3; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav--solid .nav__hamburger span { background: var(--white); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 60px) 32px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav__mobile.open { display: block; }
.nav__mobile .nav__link {
  display: block;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.nav__mobile .nav__link:last-child { border-bottom: none; }
.nav__mobile .btn { width: 100%; text-align: center; margin-top: 20px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--black);
  transform: translateY(-1px);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(13,13,13,0.85) 0%,
      rgba(13,13,13,0.5) 50%,
      rgba(13,13,13,0.75) 100%
    );
  z-index: 1;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  /* fallback gradient until real photo is added */
  background-color: #1a1410;
}
/* decorative gold line */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) clamp(20px, 5vw, 60px) 80px;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats {
  background: var(--dark);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-dark);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-dark);
}
.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =========================================
   WHAT IS IT (ABOUT SECTION)
   ========================================= */
.what {
  background: var(--white);
}
.what__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.what__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.what__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2218 0%, #1a1510 50%, #C9A84C22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.what__image-placeholder span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.what__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.what__badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.what__badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 2px;
}
.what__features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.what__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.what__feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.what__feature-icon svg { width: 16px; height: 16px; }
.what__feature-text h4 {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  color: var(--dark);
}
.what__feature-text p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services {
  background: var(--cream);
}
.services__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1510 0%, #2a2010 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__icon {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  font-style: italic;
}
.service-card__body {
  padding: 24px;
}
.service-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card__price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.process {
  background: var(--cream);
  color: var(--dark);
}
.process__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0.5;
}
.process__step {
  text-align: center;
  padding: 0 20px;
}
.process__num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-dark);
  background: var(--white);
  position: relative;
  z-index: 1;
}
.process__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.process__desc {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.65;
}

/* =========================================
   PRICING
   ========================================= */
.pricing {
  background: var(--white);
}
.pricing__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing__tab {
  padding: 12px 32px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  transition: all var(--transition);
  cursor: pointer;
}
.pricing__tab.active {
  background: var(--dark);
  color: var(--white);
}
.pricing__content { display: none; }
.pricing__content.active { display: block; }
.pricing__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing__table th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
}
.pricing__table th:last-child { text-align: right; }
.pricing__table td {
  padding: 18px 24px;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  color: var(--dark);
}
.pricing__table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.pricing__table tr:hover td { background: var(--cream); }
.pricing__note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--gray);
}
.pricing__note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================
   LOCATIONS
   ========================================= */
.locations {
  background: var(--cream);
}
.locations__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.location-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1510 0%, #2a2218 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.location-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-card__city {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.location-card__placeholder {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  font-style: italic;
}
.location-card__body { padding: 28px; }
.location-card__address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.location-card__address svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.location-card__address-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mid);
}
.location-card__hours { margin-bottom: 20px; }
.location-card__hours-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--mid);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .days { font-weight: 500; color: var(--dark); }
.hours-row .time { color: var(--gray); }
.location-card__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location-card__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--mid);
  transition: color var(--transition);
}
.location-card__contact a:hover { color: var(--gold); }
.location-card__contact svg { width: 14px; height: 14px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: var(--dark);
  color: var(--white);
}
.testimonials__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.testimonials__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}
.testimonials__stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonials__score {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}
.testimonials__count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.review-card__stars svg { width: 14px; height: 14px; fill: currentColor; }
.review-card__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.review-card__author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.review-card__date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-top: 2px;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  background: var(--white);
}
.faq__intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--gold); }
.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq__item.open .faq__question svg { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 0 22px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--mid);
}
.faq__item.open .faq__answer { display: block; }

/* =========================================
   BOOKING CTA
   ========================================= */
.booking-cta {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.booking-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.booking-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.booking-cta__title em {
  font-style: italic;
  color: var(--gold-light);
}
.booking-cta__subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.booking-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--gold); }
.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 0.78rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.75rem; }
.footer__legal {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */
.page-header {
  background: var(--dark);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header__title { color: var(--white); margin-bottom: 12px; }
.page-header__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   GIFT VOUCHER STRIP
   ========================================= */
.gift-strip {
  background: var(--gold);
  padding: 28px 0;
}
.gift-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gift-strip__text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}
.gift-strip__text span { font-style: italic; }
.gift-strip .btn--dark {
  background: var(--dark);
  flex-shrink: 0;
}

/* =========================================
   DIVIDER ORNAMENT
   ========================================= */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px auto;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.ornament span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  transform: rotate(45deg);
}

/* =========================================
   ANIMATIONS & SCROLL
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3)::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav__links { display: none; }
  .nav__lang { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta-desktop { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .locations__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .what__badge { display: none; }
  .what__features { grid-template-columns: 1fr; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

@media (max-width: 520px) {
  .grid-3 { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .pricing__tabs { flex-direction: column; }
  .booking-cta__btns { flex-direction: column; align-items: stretch; }
  .gift-strip__inner { flex-direction: column; text-align: center; }
}

/* =========================================
   SOCIAL REEL — Phone mockup carousel
   ========================================= */
.social-reel {
  background: var(--dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.social-reel__intro {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: 0 clamp(20px, 5vw, 60px);
}
.social-reel__intro .section-title {
  color: var(--white);
  margin-bottom: 0;
}

/* Track wrapper — centered on desktop */
.social-reel__track-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  overflow: hidden;
}

.social-reel__track {
  display: flex;
  gap: 28px;
  padding: 20px 0 48px;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.social-reel__track::-webkit-scrollbar { display: none; }

@media (max-width: 900px) {
  .social-reel__track {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 9 / 19.5;
  scroll-snap-align: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.phone-mockup:hover { transform: translateY(-6px) scale(1.02); }

/* Outer shell */
.phone-mockup__shell {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(160deg, #2e2e2e 0%, #1a1a1a 60%, #111 100%);
  border: 1.5px solid #3a3a3a;
  box-shadow:
    0 0 0 1px #111,
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 32px 64px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.4);
}

/* Side buttons */
.phone-mockup__shell::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 22%;
  width: 3px;
  height: 14%;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 calc(100% + 6px) 0 #2a2a2a;
}
.phone-mockup__shell::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 28%;
  width: 3px;
  height: 18%;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
}

/* Screen area */
.phone-mockup__screen {
  position: absolute;
  inset: 6px;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}

/* Video/content inside */
.phone-mockup__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Placeholder (amíg nincs valódi videó) */
.phone-mockup__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  gap: 12px;
}
.phone-mockup__placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup__placeholder-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.phone-mockup__placeholder-text {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding: 0 16px;
}

/* Dynamic island */
.phone-mockup__island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 100px;
  z-index: 10;
}

/* TikTok-style overlay */
.phone-mockup__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  border-radius: 30px;
  pointer-events: none;
}
.phone-mockup__handle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.phone-mockup__caption {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.phone-mockup__likes {
  position: absolute;
  right: 12px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.phone-mockup__like-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--white);
}
.phone-mockup__like-item svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.phone-mockup__like-item span {
  font-size: 0.55rem;
  font-weight: 600;
}

/* Scroll dots */
.social-reel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}
.social-reel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.social-reel__dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .phone-mockup { width: 180px; }
  .phone-mockup__island { width: 66px; height: 18px; }
}
@media (max-width: 480px) {
  .phone-mockup { width: 160px; }
}

/* =========================================
   CRO ELEMENTS
   ========================================= */

/* 1. Hero urgency bar */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.8rem;
  padding: 10px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.hero__urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* 2. Micro social proof under CTAs */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.cta-trust--dark {
  color: var(--gray);
}
.cta-trust__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}

/* 3. Sticky mobile booking bar */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.sticky-book__left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sticky-book__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: -1px;
}
.sticky-book__rating {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.sticky-book__slots {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.sticky-book .btn {
  padding: 13px 24px;
  font-size: 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-book { display: flex; }
  body { padding-bottom: 72px; }
  .sticky-book__slots { display: none; }
}
@media (max-width: 400px) {
  .sticky-book { padding: 10px 14px; gap: 8px; }
  .sticky-book__rating { font-size: 0.65rem; }
  .sticky-book .btn { padding: 11px 18px; font-size: 0.6rem; }
}

/* 4. Exit intent overlay */
.exit-intent {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-intent.visible { display: flex; }
.exit-intent__box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(32px, 5vw, 56px);
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.exit-intent__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  transition: background var(--transition);
}
.exit-intent__close:hover { background: var(--border); }
.exit-intent__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.exit-intent__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.exit-intent__sub {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}
.exit-intent__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exit-intent__skip {
  font-size: 0.68rem;
  color: var(--light-gray);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  letter-spacing: 0.06em;
}
.exit-intent__skip:hover { color: var(--gray); }

/* =========================================
   OCCASIONS
   ========================================= */
.occasions__intro {
  text-align: center;
  margin-bottom: 56px;
}
.occasions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.occasion-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.occasion-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.occasion-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.occasion-card__icon svg {
  width: 100%;
  height: 100%;
}
.occasion-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--dark);
}
.occasion-card__desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .occasions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .occasions__grid { grid-template-columns: 1fr; }
}

/* =========================================
   GUARANTEE V2 – Two premium cards
   ========================================= */
.guarantee-v2 {
  background: var(--black);
  padding: var(--section-pad) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.guarantee-v2::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Light / cream variant (old guarantee-v2) */
.guarantee-v2--light {
  background: var(--cream);
  color: var(--dark);
}
.guarantee-v2--light::before { display: none; }
.guarantee-v2--light .guarantee-v2__intro .section-title { color: var(--dark); }
.guarantee-v2--light .guarantee-v2__intro .section-title em { color: var(--gold-dark); }
.guarantee-v2--light .guarantee-v2__sub { color: var(--mid); }
.guarantee-v2--light .guarantee-v2__note { color: var(--mid); border-color: var(--border); }

/* LP guarantee on cream background — fix colours */
.lp-section--cream .lp-guarantee__sub,
.lp-section--cream .lp-guarantee__note {
  color: var(--mid);
}
.lp-section--cream .lp-guarantee .lp-title {
  color: var(--dark);
}
.lp-section--cream .lp-guarantee .lp-title em {
  color: var(--gold-dark);
}
.lp-section--cream .lp-guarantee .lp-label {
  color: var(--gold-dark);
}
/* Silver card: on cream use a visible border + subtle bg */
.lp-section--cream .lp-g-card--silver {
  background: rgba(13,13,13,0.04);
  border: 1px solid var(--border);
}
/* Card text on cream */
.lp-section--cream .lp-g-card__brand--silver {
  color: var(--dark);
}
.lp-section--cream .lp-g-card__type,
.lp-section--cream .lp-g-card__desc,
.lp-section--cream .lp-g-card__footer-text {
  color: var(--mid);
}
.lp-section--cream .lp-g-card__duration--silver {
  color: var(--gold-dark);
}
.lp-section--cream .lp-g-card__footer--silver {
  border-top-color: var(--border);
}

.guarantee-v2__intro {
  text-align: center;
  margin-bottom: 56px;
}
.guarantee-v2__intro .section-title {
  color: var(--white);
}
.guarantee-v2__intro .section-title em {
  color: var(--gold-light);
  font-style: italic;
}
.guarantee-v2__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* Grid */
.guarantee-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .guarantee-v2__grid { grid-template-columns: 1fr; }
}

/* Base card */
.g-card {
  position: relative;
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.g-card:hover {
  transform: translateY(-4px);
}

/* Gold card */
.g-card--gold {
  background: linear-gradient(145deg, #1a1500 0%, #0d0d0d 60%);
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
}
.g-card--gold:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.08);
}

/* Silver card */
.g-card--silver {
  background: linear-gradient(145deg, #0e1218 0%, #0a0a0a 60%);
  border: 1px solid rgba(200,215,230,0.15);
  box-shadow: 0 0 0 0 rgba(200,215,230,0);
}
.g-card--silver:hover {
  border-color: rgba(200,215,230,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(200,215,230,0.05);
}

/* Glow (background radial) */
.g-card__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.g-card__glow--silver {
  background: radial-gradient(circle, rgba(180,210,240,0.07) 0%, transparent 70%);
}

/* Top row: badge + brand name */
.g-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.g-card__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-card__badge svg {
  width: 26px;
  height: 26px;
}
.g-card__badge--gold {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
}
.g-card__badge--silver {
  background: rgba(200,215,230,0.08);
  border: 1px solid rgba(200,215,230,0.2);
  color: #b8d0e8;
}
.g-card__brand {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2px;
}
.g-card__brand--silver {
  color: #b8d0e8;
}
.g-card__type {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Divider */
.g-card__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3) 0%, transparent 100%);
  margin-bottom: 24px;
}
.g-card__divider--silver {
  background: linear-gradient(90deg, rgba(200,215,230,0.2) 0%, transparent 100%);
}

/* Title & desc */
.g-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.g-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* List */
.g-card__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.g-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.g-card__list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 1px;
}
.g-card__list--silver li svg {
  color: #b8d0e8;
}

/* Footer strip */
.g-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.g-card__footer--silver {
  border-top-color: rgba(200,215,230,0.1);
}
.g-card__duration {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.g-card__duration--silver {
  color: #b8d0e8;
  font-size: 1.3rem;
}
.g-card__footer-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Bottom note */
.guarantee-v2__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}
.guarantee-v2__note svg {
  color: rgba(255,255,255,0.2);
}

@media (prefers-reduced-motion: reduce) {
  .g-card { transition: none; }
}

/* =========================================
   MORE TESTIMONIALS
   ========================================= */
.testimonials-more__intro {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-more__intro .section-title em {
  font-style: italic;
  color: var(--gold);
}
.testimonials-more__grid {
  /* inherits .testimonials__grid layout */
}
.testimonials-more__grid .review-card {
  background: var(--white);
  border-color: var(--border);
}
.testimonials-more__grid .review-card__text {
  color: var(--mid);
}
.testimonials-more__grid .review-card__author {
  color: var(--dark);
}
.testimonials-more__grid .review-card__date {
  color: var(--gray);
}
.testimonials-more__grid .review-card__stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

/* =========================================
   HERO DIY LINK
   ========================================= */
.hero__diy-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.hero__diy-link a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.hero__diy-link a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* =========================================
   DIY BANNER (index – helyszínek után)
   ========================================= */
.diy-banner {
  background: var(--dark);
  padding: clamp(40px, 6vw, 64px) 0;
}
.diy-banner__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
}
.diy-banner__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: var(--gold);
  opacity: 0.8;
}
.diy-banner__icon svg { width: 100%; height: 100%; }
.diy-banner__content { flex: 1; }
.diy-banner__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.diy-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.diy-banner__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 480px;
}
.diy-banner__btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .diy-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .diy-banner__btn { width: 100%; text-align: center; }
}

/* =========================================
   PRESS BAR — Scrolling logo strip
   ========================================= */
.press-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 24px;
  overflow: hidden;
}
.press-bar__label-wrap {
  text-align: center;
  margin-bottom: 18px;
}
.press-bar__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-gray);
}
.press-bar__track-wrap {
  position: relative;
  overflow: hidden;
}
/* Fade edges */
.press-bar__track-wrap::before,
.press-bar__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.press-bar__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.press-bar__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.press-bar__track {
  display: flex;
  width: max-content;
  animation: press-scroll 30s linear infinite;
}
.press-bar__set {
  display: flex;
  align-items: center;
}
.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 44px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--light-gray);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.press-logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--border);
}
.press-logo--serif {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .press-bar__track { animation: none; }
}

/* =========================================
   WELD ANIMATION SCENE
   ========================================= */
.weld-scene {
  background: var(--black);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.weld-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
/* Subtle gold top/bottom lines to bridge with adjacent sections */
.weld-scene::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.weld-scene__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 52px);
}
.weld-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  overflow: visible;
}
/* Arc stroke */
.weld-arc {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.35));
}

/* --- Chain movement --- */
/* Initial state: arcs pulled apart */
.weld-chain--left  { transform: translateX(-130px); }
.weld-chain--right { transform: translateX(130px); }

/* After .welded class added by JS */
.weld-chain--left.welded,
.weld-chain--right.welded {
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Sparks --- */
.weld-spark {
  opacity: 0;
  transform-origin: center;
}
.weld-spark.spark-on {
  animation: spark-burst 0.65s ease forwards;
}
@keyframes spark-burst {
  0%   { opacity: 0; transform: scale(0.4); }
  25%  { opacity: 1; transform: scale(1.3); }
  60%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.7); }
}

/* --- Glow ring after weld completes --- */
.weld-glow-ring {
  opacity: 0;
}
.weld-glow-ring.glow-active {
  animation: bracelet-glow 2s ease forwards;
}
@keyframes bracelet-glow {
  0%   { stroke: rgba(201,168,76,0);   opacity: 0; }
  20%  { stroke: rgba(201,168,76,0.7); opacity: 1; }
  60%  { stroke: rgba(201,168,76,0.4); opacity: 0.8; }
  100% { stroke: rgba(201,168,76,0.15); opacity: 0.4; }
}

/* Caption */
.weld-scene__caption {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.weld-scene__caption em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

/* Reduced motion: skip to final state */
@media (prefers-reduced-motion: reduce) {
  .weld-chain--left,
  .weld-chain--right {
    transform: translateX(0);
    transition: none;
  }
  .weld-glow-ring {
    opacity: 0.4;
    stroke: rgba(201,168,76,0.2);
  }
  .weld-spark { display: none; }
}

/* =========================================================
   PRÉMIUM UI/UX FACELIFT
   Szisztematikus design-refinement az összes szekción
   Palette: white · beige · gold · dark-gray · black
   ========================================================= */

/* ---------------------------------------------------------
   1. GLOBÁLIS TIPOGRÁFIA – editorial, letisztult
   --------------------------------------------------------- */

/* h2 legyen kicsit könnyebb – luxury editorial feel */
h2 {
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* section-title kicsit nagyobb légzési tér */
.section-title {
  line-height: 1.12;
  margin-bottom: 1.4rem;
}

/* section-label – finomabb arány */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  margin-bottom: 1.2rem;
}

/* section-subtitle – olvashatóbb */
.section-subtitle {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--mid);
}

/* ---------------------------------------------------------
   2. SECTION ÁTMENETEK – arany elválasztó vonalak
   Minden sötét blokk aljára kerül egy vékony arany gradient
   --------------------------------------------------------- */

/* Stats (dark) → Press bar (white) */
.stats {
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

/* Testimonials (dark) → Social reel (dark): belső határvonal */
.testimonials {
  border-bottom: 1px solid var(--border-dark);
}

/* Social reel (dark) → Guarantee (black) */
.social-reel {
  border-bottom: 1px solid rgba(201,168,76,0.10);
}

/* Guarantee (black) → Weld scene (black): belső arany vonal */
.guarantee-v2 {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

/* Locations (cream) → DIY banner (dark): erős elválasztás */
.locations {
  border-bottom: 1px solid var(--border);
}

/* DIY banner (dark) → FAQ (white) */
.diy-banner {
  border-bottom: 1px solid rgba(201,168,76,0.10);
}

/* Booking CTA: arany top + bottom accent vonal */
.booking-cta::before {
  background:
    linear-gradient(to bottom, rgba(201,168,76,0.12) 0%, transparent 40%,
      transparent 60%, rgba(201,168,76,0.06) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.14) 0%, transparent 70%);
}

/* ---------------------------------------------------------
   3. STATS BAR – prémiumabb számok
   --------------------------------------------------------- */

.stats__number {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.01em;
}

.stats__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

/* ---------------------------------------------------------
   4. WHAT IS IT – kép-placeholder + feature ikonok
   --------------------------------------------------------- */

/* Placeholder: mélyebb, arany shimmer */
.what__image-placeholder {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.12) 0%, transparent 55%),
    linear-gradient(160deg, #221a10 0%, #1a1208 50%, #0d0d0d 100%);
}

.what__image-placeholder span {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  opacity: 0.4;
}

/* Badge – arány */
.what__badge {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Feature-icon: subtilis hover */
.what__feature-icon {
  transition: background var(--transition), box-shadow var(--transition);
}
.what__feature:hover .what__feature-icon {
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.08);
}

/* Feature h4: kicsit erősebb */
.what__feature-text h4 {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--dark);
}

/* ---------------------------------------------------------
   5. SERVICE CARDS – ikon placeholder polish
   --------------------------------------------------------- */

/* Kártya kép háttér: melegebb gradient */
.service-card__img {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,168,76,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #1e1710 0%, #111 100%);
  transition: background var(--transition);
}
.service-card:hover .service-card__img {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,168,76,0.16) 0%, transparent 60%),
    linear-gradient(160deg, #261e12 0%, #111 100%);
}

/* Szimbólum ikon nagyobb, elegánsabb */
.service-card__icon {
  font-size: 3.4rem;
  opacity: 0.55;
  text-shadow: 0 0 24px rgba(201,168,76,0.3);
}

/* Kártyatest */
.service-card__body {
  padding: 28px 24px 24px;
}

.service-card__name {
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

.service-card__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

/* Kártya hover: erősebb mélység */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

/* ---------------------------------------------------------
   6. OCCASIONS – kártyák finomítása
   --------------------------------------------------------- */

.occasion-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-color: var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.occasion-card:hover {
  border-color: rgba(201,168,76,0.6);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07), 0 0 0 1px rgba(201,168,76,0.15);
}

/* Ikon kör kerettezés */
.occasion-card__icon {
  padding: 10px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.04);
  transition: background var(--transition), border-color var(--transition);
}
.occasion-card:hover .occasion-card__icon {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.45);
}
.occasion-card__icon svg {
  width: 22px;
  height: 22px;
}

.occasion-card__title {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  margin-top: 0;
}

/* ---------------------------------------------------------
   7. PROCESS – lépés-körök premium glow
   --------------------------------------------------------- */

.process__num {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.55);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.05);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.process__step:hover .process__num {
  background: rgba(201,168,76,0.10);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.08);
}

/* Összekötő vonal erősítése */
.process__grid::before {
  opacity: 0.35;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent);
}

.process__title {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.process__desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   8. TESTIMONIALS (dark háttér) – jobb kontrast
   --------------------------------------------------------- */

.review-card {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.07);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

.review-card__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.review-card__author {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
}

.review-card__date {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
}

/* MORE TESTIMONIALS-ban fehér kártyák (cream háttéren) */
.testimonials-more__grid .review-card:hover {
  background: var(--white);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   9. LOCATION CARDS – placeholder és kártyatest polish
   --------------------------------------------------------- */

/* Kép placeholder: melegebb, felirat kiemelve */
.location-card__img {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #1e1a12 0%, #111 100%);
}

.location-card__placeholder {
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.22;
  letter-spacing: 0.05em;
}

.location-card__city {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

/* Kártyatest */
.location-card {
  transition: box-shadow var(--transition), transform var(--transition);
}
.location-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Cím sor */
.location-card__address-text {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.55;
}

/* Nyitvatartás sor */
.hours-row {
  font-size: 0.8rem;
  padding: 7px 0;
}

/* ---------------------------------------------------------
   10. FAQ – kérdések finomítása
   --------------------------------------------------------- */

.faq__question {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  padding: 24px 0;
}

/* Nyitott kérdés gold bal accent */
.faq__item.open .faq__question {
  color: var(--gold-dark);
}

.faq__answer {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--mid);
  padding-bottom: 24px;
}

/* ---------------------------------------------------------
   11. BOOKING CTA – mélyebb, erősebb vizuális
   --------------------------------------------------------- */

.booking-cta {
  background: var(--black);
}

.booking-cta__title {
  font-weight: 300;
  letter-spacing: 0.015em;
}

.booking-cta__title em {
  font-weight: 400;
}

.booking-cta__subtitle {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ---------------------------------------------------------
   12. GUARANTEE V2 – intro szöveg finomítás
   --------------------------------------------------------- */

.guarantee-v2__intro .section-title {
  font-weight: 300;
}

.guarantee-v2__sub {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------
   13. HERO DECO – scroll indicator erősítése
   --------------------------------------------------------- */

.hero__scroll {
  gap: 10px;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
}

/* ---------------------------------------------------------
   14. GOMB RENDSZER – polish
   --------------------------------------------------------- */

/* Gold gomb: subtilis box-shadow rest állapotban */
.btn--gold {
  box-shadow: 0 2px 12px rgba(201,168,76,0.2);
}
.btn--gold:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.38);
}

/* Outline gold: hover fill legyen sima */
.btn--outline-gold:hover {
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

/* ---------------------------------------------------------
   15. RESPONSIVE FINOMÍTÁSOK
   --------------------------------------------------------- */

@media (max-width: 768px) {
  /* Occasion kártyák: full width-en is szép */
  .occasion-card {
    padding: 28px 22px;
  }
  /* Location kártyák: kisebb padding */
  .location-card__body { padding: 22px 20px; }
  /* Process grid */
  .process__step { padding: 0 12px; }
  /* Booking CTA gombok */
  .booking-cta__title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

/* ---------------------------------------------------------
   16. LP SECTION OVERRIDES (index.html LP components)
   --------------------------------------------------------- */

/* Process dark section: force white text */
.lp-section--dark .lp-process__sub {
  color: rgba(255,255,255,0.6);
}
.lp-section--dark .lp-process__title {
  color: #ffffff;
}
.lp-section--dark .lp-process__desc {
  color: rgba(255,255,255,0.55);
}
.lp-section--dark .lp-process__num {
  color: rgba(201,168,76,0.6);
}

/* Dark review section: force white text */
.lp-section--dark .lp-review-card__text {
  color: rgba(255,255,255,0.65);
}
.lp-section--dark .lp-review-card__name {
  color: #ffffff;
}
.lp-section--dark .lp-review-card__meta {
  color: rgba(255,255,255,0.4);
}
.lp-section--dark .lp-review-card__stars {
  color: var(--gold);
}

/* Process dark section: section-level headline + label */
.lp-section--dark .lp-title,
.lp-section--dark .lp-title--center {
  color: #ffffff;
}
.lp-section--dark .lp-label {
  color: var(--gold);
}

/* =============================================
   Social Reel — play button + arrow navigation
   ============================================= */

/* Play/pause button overlay */
.phone-mockup__play-btn {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.phone-mockup__play-btn svg {
  width: 52px;
  height: 52px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
  background: rgba(0,0,0,0.38);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.15s, background 0.15s;
}
.phone-mockup__play-btn:hover svg {
  background: rgba(201,168,76,0.72);
  transform: scale(1.08);
}
/* Hide play icon when playing, show pause icon via CSS trick */
.phone-mockup__play-btn.is-playing svg {
  opacity: 0;
  pointer-events: none;
}
/* Clicking anywhere on screen while playing pauses — play btn invisible */
.phone-mockup__play-btn.is-playing {
  opacity: 0;
  transition: opacity 0.2s;
}
/* Desktop: show pause hint on hover */
@media (hover: hover) {
  .phone-mockup__screen:hover .phone-mockup__play-btn.is-playing {
    opacity: 0.7;
  }
  .phone-mockup__screen:hover .phone-mockup__play-btn.is-playing svg {
    opacity: 1;
  }
}
/* Mobile: keep it hidden while playing — tap anywhere to pause */

/* Reel arrow buttons */
.reel-arrow {
  display: none; /* hidden on mobile */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.5);
  background: rgba(13,13,13,0.6);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.reel-arrow:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.reel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.reel-arrow--prev { left: -20px; }
.reel-arrow--next { right: -20px; }

@media (min-width: 901px) {
  .reel-arrow { display: flex; align-items: center; justify-content: center; }
}

/* lp-btn--outline-gold alias (missing from lp.css) */
.lp-btn--outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.lp-btn--outline-gold:hover {
  background: rgba(201,168,76,0.08);
}
