/* ================================================================
   FRAMOS CABINETS — Reusable Components
   ================================================================ */

/* ── Google Font Import ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  line-height: 1;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .icon { width: 18px; height: 18px; }

/* Gold filled (primary CTA) */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  font-weight: var(--fw-bold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  color: var(--navy);
}

/* Navy filled */
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}

/* White outline (on dark backgrounds) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Navy outline */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* Gold outline */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Sizes */
.btn-sm { padding: 0.625rem 1.375rem; font-size: var(--text-sm); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: var(--text-md); }
.btn-full { width: 100%; }

/* ── Section Header ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: var(--fw-light);
}

/* Section header on dark background */
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: var(--text-white-60); }

/* Gold decorative line */
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: var(--sp-4) auto 0;
}

.gold-line--left { margin-left: 0; }

/* ── Card (base) ─────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

/* ── Service Card ────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.service-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.service-card__icon-wrap svg { width: 28px; height: 28px; }

.service-card__en {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--sp-1);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-top: var(--sp-2);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-body);
}

.service-card__feature::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.service-card__price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--gold-dark);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  display: inline-block;
  width: fit-content;
  margin-top: var(--sp-2);
}

.service-card__cta {
  margin-top: var(--sp-2);
}

/* ── Feature Block (Why Us) ──────────────────────────────────── */
.feature-block {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}

.feature-block:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold-border);
}

.feature-block__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gold-pale-2);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-block__icon-wrap svg { width: 26px; height: 26px; }

.feature-block__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.feature-block__desc {
  font-size: var(--text-sm);
  color: var(--text-white-60);
  line-height: 1.65;
}

/* ── Stats Item ──────────────────────────────────────────────── */
.stat-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.stat-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-item__icon svg { width: 24px; height: 24px; }

.stat-item__number {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--sp-1);
  font-weight: var(--fw-medium);
}

/* ── Testimonial Card ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote-mark {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--gold);
  opacity: 0.18;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.testimonial-card__stars svg { width: 18px; height: 18px; }

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  font-weight: var(--fw-light);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonial-card__name {
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  font-size: var(--text-sm);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: block;
  margin-top: 2px;
}

/* ── Collection Card ─────────────────────────────────────────── */
.collection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-border);
}

.collection-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.collection-card--featured .collection-card__name { color: var(--white); }
.collection-card--featured .collection-card__desc { color: var(--text-white-60); }
.collection-card--featured .collection-card__initial { color: rgba(255,255,255,0.05); }
.collection-card--featured .collection-card__link { color: var(--gold); }

.collection-card__initial {
  position: absolute;
  top: -12px;
  right: 10px;
  font-family: var(--font-heading);
  font-size: 9rem;
  font-weight: var(--fw-extrabold);
  color: rgba(0,0,0,0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.collection-card__badge {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.875rem;
  display: inline-block;
}

.collection-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin-top: var(--sp-2);
}

.collection-card__desc {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
}

.collection-card__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  display: inline-block;
  margin-top: var(--sp-3);
  transition: var(--transition);
}
.collection-card:hover .collection-card__link { color: var(--gold); }

.collection-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

/* ── Tag / Pill ──────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.tag--gold {
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
}

.tag--navy {
  color: var(--white);
  background: var(--navy);
}

.tag--white {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
}

/* ── Form Elements ───────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-pale);
}

.form-select-wrap {
  position: relative;
}

.form-select { cursor: pointer; padding-right: 2.75rem; }

.form-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.form-select-arrow svg { width: 16px; height: 16px; }

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

.form-error {
  font-size: var(--text-xs);
  color: var(--error);
  font-weight: var(--fw-medium);
  min-height: 1.1em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Form success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  min-height: 300px;
}

.form-success[hidden] { display: none; }

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--success-pale);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  border: 2.5px solid rgba(45,122,79,0.25);
}

.form-success__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--text-dark);
}

.form-success__text {
  font-size: var(--text-base);
  color: var(--text-body);
  max-width: 360px;
  line-height: 1.65;
}

/* ── Contact Info Card ───────────────────────────────────────── */
.contact-info-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.contact-info-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-card__icon svg { width: 20px; height: 20px; }

.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 3px;
}

.contact-info-card__value {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.55;
}

.contact-info-card__value a {
  color: var(--gold-dark);
  font-weight: var(--fw-medium);
}

.contact-info-card__value a:hover { color: var(--navy); }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.is-open { opacity: 1; }
.lightbox-overlay[hidden] { display: none; }

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-content {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  animation: lbIn 0.28s ease;
}

@keyframes lbIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  display: block;
}

.lightbox-caption {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

/* ── Filter Pills (gallery) ──────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.filter-pill {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-pill.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Gallery Item ────────────────────────────────────────────── */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: var(--sp-5);
  transition: var(--transition);
}

.gallery-item.is-hidden { display: none; }

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  border-radius: var(--radius-md);
}

.gallery-item:hover .gallery-item__img { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.80) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  border-radius: var(--radius-md);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(4px);
}

.gallery-item__zoom svg { width: 22px; height: 22px; }

.gallery-item__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.3rem 0.875rem;
  background: rgba(201,168,76,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-pill);
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-5);
}

.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.25); }
.breadcrumb__current { color: var(--gold); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: var(--navbar-h);
  gap: var(--sp-8);
}

.navbar-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  position: relative;
  padding-block: var(--sp-2);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
}

@media (min-width: 1024px) {
  .navbar-actions { display: flex; }
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.875rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover { background: rgba(255,255,255,0.12); }

.lang-label {
  font-weight: var(--fw-medium);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.lang-label.active-lang {
  opacity: 1;
  font-weight: var(--fw-bold);
  color: var(--gold);
}

.lang-sep { opacity: 0.25; }

.navbar-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.navbar-phone svg { width: 15px; height: 15px; color: var(--gold); }
.navbar-phone:hover { color: var(--white); }

/* Hamburger */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: var(--transition);
}

.hamburger-btn:hover { background: rgba(255,255,255,0.14); }

@media (min-width: 1024px) {
  .hamburger-btn { display: none; }
}

.hamburger-btn .ham-icon { display: block; width: 20px; height: 20px; }
.hamburger-btn .close-icon { display: none; width: 20px; height: 20px; }
.hamburger-btn.is-open .ham-icon { display: none; }
.hamburger-btn.is-open .close-icon { display: block; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-6) 0 var(--sp-8);
}

.mobile-menu.is-open { display: block; }

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-6);
}

.mobile-nav-link {
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.80);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  padding-left: var(--sp-3);
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-4);
}

.mobile-menu-phone svg { width: 14px; height: 14px; color: var(--gold); }

/* ── Partners Logo ───────────────────────────────────────────── */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: var(--sp-3) var(--sp-6);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}

.partner-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: var(--sp-5);
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
  align-items: center;
}

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

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

/* ── Reveal (scroll animation) ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Map placeholder ─────────────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  border: 1.5px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.map-placeholder__icon { color: var(--gold); position: relative; z-index: 1; }
.map-placeholder__icon svg { width: 40px; height: 40px; }

.map-placeholder__text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-placeholder__address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.map-placeholder__link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  display: inline-block;
  margin-top: var(--sp-2);
  transition: var(--transition);
}

.map-placeholder__link:hover { color: white; border-color: white; }
