/* ============================================
   NAVBAR
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
}

.navbar {
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: padding var(--t-std) var(--ease),
              background var(--t-std) var(--ease);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height var(--t-std) var(--ease);
}

.is-scrolled .navbar {
  background: rgba(10,9,8,0.97);
  border-bottom-color: rgba(201,168,76,0.15);
}

.is-scrolled .navbar__inner {
  height: 68px;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  transition: color var(--t-micro) var(--ease);
  position: relative;
  padding-bottom: 4px;
}

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

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--ivory);
}

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

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.navbar__social {
  color: var(--ivory-dim);
  transition: color var(--t-micro) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

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

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: all var(--t-std) var(--ease);
  transform-origin: center;
}

.navbar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-std) var(--ease);
  pointer-events: none;
}

.mobile-menu:not([hidden]) {
  pointer-events: all;
}

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-muted);
  cursor: pointer;
  transition: color var(--t-micro) var(--ease);
}

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

.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--ivory-warm);
  letter-spacing: 0.05em;
  transition: color var(--t-micro) var(--ease);
  display: block;
  padding: 8px 16px;
}

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

.mobile-menu__socials {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: var(--sp-md);
}

.mobile-menu__socials a {
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: color var(--t-micro) var(--ease);
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,4,4,0.95) 0%,
    rgba(5,4,4,0.5)  40%,
    rgba(5,4,4,0.1)  100%
  );
}

.hero__content {
  position: relative;
  z-index: var(--z-deco);
  padding-bottom: 96px;
  padding-top: 88px;
  width: 100%;
}

.hero__inner {
  max-width: 800px;
}

.hero__inner .label {
  margin-bottom: var(--sp-md);
}

.hero__title {
  color: var(--ivory);
  margin-bottom: var(--sp-md);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--ivory-muted);
  margin-bottom: var(--sp-xl);
  max-width: 55ch;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: var(--z-deco);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.4); opacity: 1; }
}

/* ============================================
   ABOUT — SPLIT
   ============================================ */

.about-split {
  background: var(--bg-dark);
  padding-bottom: 0;
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.about-split__image {
  position: relative;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-split__image::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--gold-line);
  z-index: -1;
  pointer-events: none;
}

.about-split__content h2 {
  margin: var(--sp-sm) 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.about-split__content .gold-line {
  margin-bottom: var(--sp-lg);
}

.about-split__content p {
  margin-bottom: var(--sp-lg);
  font-size: var(--fs-md);
  color: var(--ivory-muted);
}

.about-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* Stats bar */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-line);
  padding: var(--sp-xl) 0;
  margin-top: var(--sp-3xl);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stats-bar__number sup {
  font-size: 0.5em;
  vertical-align: super;
}

.stats-bar__label {
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
  letter-spacing: 0.05em;
}

/* ============================================
   ABOUT — PHILOSOPHY
   ============================================ */

.about-philosophy {
  background: var(--bg-deep);
}

.about-philosophy__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.about-philosophy__header h2 {
  margin: var(--sp-sm) 0;
}

.about-philosophy__header .gold-line {
  margin: var(--sp-sm) auto 0;
}

.quote-frame {
  border: 1px solid var(--gold-line);
  padding: var(--sp-2xl);
  position: relative;
  background: var(--bg-surface);
  margin-bottom: var(--sp-2xl);
  text-align: center;
}

.quote-frame__mark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold-dim);
  opacity: 0.4;
  line-height: 1;
  top: -24px;
  left: 32px;
}

.quote-frame__mark--close {
  top: auto;
  bottom: -56px;
  left: auto;
  right: 32px;
}

.quote-frame blockquote {
  position: relative;
  z-index: 1;
}

.about-philosophy__trust {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-philosophy__trust h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-lg);
  color: var(--ivory);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
  text-align: left;
}

.trust-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--fs-base);
  color: var(--ivory-muted);
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid rgba(201,168,76,0.08);
  background: var(--bg-surface);
  transition: border-color var(--t-std) var(--ease);
}

.trust-list__item:hover {
  border-color: var(--gold-line);
}

.trust-list__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SERVICES CAROUSEL
   ============================================ */

.services {
  background: var(--bg-dark);
  overflow: hidden;
}

.carousel {
  position: relative;
}

.carousel__track-wrapper {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: var(--sp-md);
  transition: transform 500ms var(--ease);
  will-change: transform;
}

/* Service card — width set by JS in initCarousel */
.service-card {
  flex-shrink: 0;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  transition: border-color var(--t-std) var(--ease),
              transform var(--t-std) var(--ease),
              box-shadow var(--t-std) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}

.service-card__title {
  font-size: var(--fs-lg);
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.3;
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--gold);
  font-weight: 300;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
  line-height: 1.6;
  max-width: 100%;
  flex: 1;
}

.service-card__meta {
  font-size: var(--fs-xs);
  color: var(--ivory-dim);
  letter-spacing: 0.08em;
  padding-top: var(--sp-xs);
  border-top: 1px solid rgba(201,168,76,0.08);
}

.service-card__body .btn {
  margin-top: var(--sp-sm);
  align-self: flex-start;
}

/* Carousel controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}

.carousel__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-std) var(--ease);
  flex-shrink: 0;
}

.carousel__btn:hover:not(:disabled) {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--ivory-dim);
  border: none;
  cursor: pointer;
  transition: all var(--t-std) var(--ease);
}

.carousel__dot.is-active {
  width: 24px;
  background: var(--gold);
}

/* ============================================
   PROCESS (TIMELINE)
   ============================================ */

.process {
  background: var(--bg-deep);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.process__content .section-header {
  margin-bottom: var(--sp-xl);
}

.process__content .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  margin: var(--sp-sm) 0;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

.timeline__item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md) 0;
  position: relative;
}

.timeline__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -31px;
  z-index: 1;
}

.timeline__icon span {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--gold);
  font-weight: 600;
}

.timeline__body {
  padding-top: 12px;
  padding-bottom: var(--sp-sm);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--ivory);
  margin-bottom: 8px;
  font-weight: 500;
}

.timeline__body p {
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
  line-height: 1.6;
  max-width: 100%;
}

.timeline__body p em {
  color: var(--ivory-muted);
  font-style: normal;
  font-size: var(--fs-xs);
}

.process__image {
  position: sticky;
  top: 108px;
}

.process__image::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--gold-line);
  z-index: -1;
  pointer-events: none;
}

.process__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  position: relative;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'STYLE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-heading);
  font-size: clamp(80px, 12vw, 180px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.cta-section__inner h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-section__inner .gold-line {
  margin-bottom: var(--sp-xs);
}

.cta-section__inner p {
  max-width: 50ch;
  text-align: center;
  font-size: var(--fs-md);
}

.cta-section__inner .btn {
  margin-top: var(--sp-sm);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  background: var(--bg-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xs);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,4,4,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-std) var(--ease);
  color: var(--gold);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(5,4,4,0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-std) var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-std) var(--ease);
  z-index: 1;
}

.lightbox__close:hover,
.lightbox__prev:hover:not(:disabled),
.lightbox__next:hover:not(:disabled) {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox__close  { top: 24px; right: 24px; }
.lightbox__prev   { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next   { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__prev:disabled,
.lightbox__next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--gold-line);
}

.lightbox__dots {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 6px;
}

.lightbox__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ivory-dim);
  border: none;
  cursor: pointer;
  transition: all var(--t-std) var(--ease);
}

.lightbox__dot.is-active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews {
  background: var(--bg-deep);
}

/* review-card — width set by JS in initCarousel */
.review-card {
  flex-shrink: 0;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: border-color var(--t-std) var(--ease);
}

.review-card:hover {
  border-color: var(--gold-line);
}

.review-card__stars {
  color: var(--gold);
  font-size: var(--fs-md);
  letter-spacing: 4px;
}

.review-card__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--ivory-warm);
  line-height: 1.6;
  font-weight: 400;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(201,168,76,0.1);
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--gold);
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card__name {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: var(--fs-base);
  color: var(--ivory);
  font-weight: 500;
}

.review-card__service {
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   FAQ — ACCORDION
   ============================================ */

.faq {
  background: var(--bg-dark);
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.accordion__item:first-child {
  border-top: 1px solid rgba(201,168,76,0.15);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--ivory);
  text-align: left;
  transition: color var(--t-micro) var(--ease);
}

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

.accordion__icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t-std) var(--ease);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 500ms var(--ease);
}

.accordion__body {
  padding-bottom: var(--sp-lg);
}

.accordion__body p {
  max-width: 100%;
  color: var(--ivory-muted);
  line-height: 1.8;
}

.accordion__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-micro) var(--ease);
}

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

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--bg-void);
  border-top: 1px solid var(--gold-line);
}

.footer__top {
  padding: var(--sp-2xl) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-xl);
}

.footer__logo img {
  height: 38px;
  width: auto;
  margin-bottom: var(--sp-md);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
  line-height: 1.6;
  max-width: 28ch;
  margin-bottom: var(--sp-md);
}

.footer__socials {
  display: flex;
  gap: var(--sp-sm);
}

.footer__social-link {
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
  transition: all var(--t-std) var(--ease);
}

.footer__social-link:hover {
  color: var(--gold);
  border-color: var(--gold-line);
  background: var(--gold-glow);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: var(--sp-md);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
  transition: color var(--t-micro) var(--ease);
  line-height: 1.4;
}

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

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
}

.footer__contacts svg {
  color: var(--gold-muted);
  flex-shrink: 0;
}

.footer__contacts a {
  transition: color var(--t-micro) var(--ease);
}

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

.footer__bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: var(--sp-lg) 0;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--ivory-dim);
  text-align: center;
  letter-spacing: 0.08em;
  max-width: 100%;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-std) var(--ease);
}

.modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,4,4,0.92);
  cursor: pointer;
}

.modal__window {
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  padding: var(--sp-2xl);
  width: 100%;
  max-width: 480px;
  transform: translateY(16px);
  transition: transform var(--t-std) var(--ease);
}

.modal.is-open .modal__window {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-dim);
  cursor: pointer;
  transition: color var(--t-micro) var(--ease);
}

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

.modal__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--ivory);
  margin: var(--sp-sm) 0 var(--sp-xs);
}

.modal__subtitle {
  font-size: var(--fs-sm);
  color: var(--ivory-dim);
  margin-bottom: var(--sp-xl);
  max-width: 100%;
}

/* Form fields */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.form-field__label span {
  color: var(--gold);
}

.form-field__input {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  padding: 14px 16px;
  border-radius: 2px;
  width: 100%;
  transition: border-color var(--t-micro) var(--ease);
  outline: none;
  min-height: 52px;
}

.form-field__input::placeholder {
  color: var(--ivory-dim);
}

.form-field__input:focus {
  border-color: var(--gold);
}

.modal__form .btn {
  margin-top: var(--sp-xs);
  width: 100%;
  justify-content: center;
}

/* Modal success state */
.modal__success {
  text-align: center;
  padding: var(--sp-sm) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.modal__success-icon {
  color: var(--gold);
}

.modal__success h2 {
  font-size: var(--fs-2xl);
}

.modal__success p {
  max-width: 36ch;
  text-align: center;
  margin: 0 auto;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 150;
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-std) var(--ease),
              transform var(--t-std) var(--ease),
              background var(--t-micro) var(--ease),
              border-color var(--t-micro) var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

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

@media (max-width: 1024px) {
  /* Navbar */
  .navbar__menu { display: none; }
  .navbar__burger { display: flex; }
  .navbar__actions .navbar__social { display: none; }

  /* About split */
  .about-split__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .about-split__image::before { display: none; }

  /* Stats */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process__grid {
    grid-template-columns: 1fr;
  }

  .process__image {
    position: static;
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .process__image::before {
    display: none;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  /* Carousel card widths handled by JS (initCarousel setCardWidths) */
}

@media (max-width: 768px) {
  /* Hero */
  .hero__subtitle { display: none; }
  .hero__scroll-indicator { display: none; }

  /* Quote */
  .quote-frame { padding: var(--sp-lg); }
  .quote-frame__mark { font-size: 5rem; }

  /* Gallery: 2 columns */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Lightbox arrows */
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer__col--brand { grid-column: auto; }

  /* Modal */
  .modal__window {
    padding: var(--sp-xl) var(--sp-md);
  }
}

@media (max-width: 480px) {
  /* Navbar logo */
  .navbar__logo img { height: 36px; }

  /* Hero */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery: 1 column */
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  /* About actions */
  .about-split__actions { flex-direction: column; }
  .about-split__actions .btn { width: 100%; justify-content: center; }

  /* Timeline */
  .timeline { padding-left: 16px; }
  .timeline::before { left: 15px; }
  .timeline__icon { width: 48px; height: 48px; margin-left: -15px; }
}
