/* ============================================
   MAISON AJAY — Premium Clothing Intro
   ============================================ */

:root {
  --color-bg: #0a0a0a;
  --color-bg-soft: #141414;
  --color-surface: #1a1a1a;
  --color-cream: #f5f0eb;
  --color-gold: #c9a96e;
  --color-gold-light: #dfc99a;
  --color-text: #e8e4df;
  --color-text-muted: #9a9590;
  --color-border: rgba(201, 169, 110, 0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(245, 240, 235, 0.3);
}

.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__links a.active {
  color: var(--color-cream);
}

.nav__links a.active::after {
  width: 100%;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s;
  position: relative;
}

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

.nav__links a:hover {
  color: var(--color-cream);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 2rem 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-cream);
  transition: color 0.3s;
}

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

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

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  padding-top: var(--nav-height);
}

.hero__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ---- Marquee ---- */
.marquee {
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.marquee__dot {
  font-size: 0.5rem;
  opacity: 0.5;
}

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

/* ---- About ---- */
.about {
  padding: 8rem 0;
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__images {
  position: relative;
  height: 550px;
}

.about__img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about__img--1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 75%;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about__img--2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  z-index: 1;
  border: 3px solid var(--color-bg);
}

.about__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---- Collections ---- */
.collections {
  padding: 8rem 0;
  background: var(--color-bg-soft);
}

.collections__header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.collection-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.collection-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-card__img img {
  transform: scale(1.08);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 60%);
  transition: background 0.4s;
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.2) 100%);
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.collection-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 0.4rem;
}

.collection-card__content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.collection-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.collection-card:hover .collection-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Craft ---- */
.craft {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

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

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

.craft__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
}

.craft__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.craft__item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: var(--transition);
}

.craft__item:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  background: rgba(201, 169, 110, 0.05);
}

.craft__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--color-gold);
}

.craft__icon svg {
  width: 100%;
  height: 100%;
}

.craft__item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 0.8rem;
}

.craft__item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Visit ---- */
.visit {
  padding: 8rem 0;
  background: var(--color-bg);
}

.visit__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-surface);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.visit__text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.visit__detail strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.visit__detail span {
  font-size: 0.95rem;
  color: var(--color-text);
}

.visit__visual {
  position: relative;
  min-height: 400px;
}

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

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

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

.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

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

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

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

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 968px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

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

  .about__images {
    height: 400px;
  }

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

  .craft__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .visit__text {
    padding: 3rem 2rem;
  }

  .visit__visual {
    min-height: 300px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .about__stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
}

/* ============================================
   SUB-PAGES
   ============================================ */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero--short { min-height: 45vh; }

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

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

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.88) 100%);
}

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

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.page-hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.page-hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--color-gold); }
.breadcrumb span { opacity: 0.4; }

.preview {
  padding: 6rem 0;
  background: var(--color-bg);
}

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

.preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: var(--transition);
}

.preview-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.preview-card__bg { position: absolute; inset: 0; }

.preview-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.preview-card:hover .preview-card__bg img { transform: scale(1.06); }

.preview-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 60%);
}

.preview-card__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
}

.preview-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.preview-card__content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}

.preview-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about-page { padding: 6rem 0; }

.about-story { padding: 4rem 0 6rem; }

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

.about-story__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-values {
  padding: 6rem 0;
  background: var(--color-bg-soft);
}

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

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.04);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-banner__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--color-cream);
  max-width: 700px;
  line-height: 1.4;
  text-align: center;
}

.craft-page { padding: 6rem 0; }

.craft-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.craft-showcase--reverse { direction: rtl; }
.craft-showcase--reverse > * { direction: ltr; }

.craft-showcase__img {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
}

.craft-showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.craft-showcase__img:hover img { transform: scale(1.04); }

.craft-showcase__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.craft-process {
  padding: 6rem 0;
  background: var(--color-bg-soft);
}

.craft-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step { text-align: center; padding: 2rem 1.5rem; }

.process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.visit-page { padding: 6rem 0; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.visit-info-card {
  padding: 3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.visit-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-cream);
  margin-bottom: 2rem;
}

.visit-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.visit-info-list li strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.visit-info-list li span,
.visit-info-list li a {
  font-size: 1rem;
  color: var(--color-text);
}

.visit-info-list li a:hover { color: var(--color-gold); }

.visit-map {
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  min-height: 400px;
}

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

.visit-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.visit-cta h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.visit-cta p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

.collections-page {
  padding: 4rem 0 6rem;
  background: var(--color-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.08);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.gallery-item:hover { border-color: var(--color-border); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-item--wide .gallery-item__img { aspect-ratio: 16/9; }
.gallery-item--tall .gallery-item__img { aspect-ratio: auto; height: 100%; min-height: 100%; }

.gallery-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__info { transform: translateY(0); }

.gallery-item__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 0.2rem;
}

.gallery-item__info p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.cta-strip {
  padding: 5rem 0;
  background: var(--color-bg-soft);
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-strip p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox__img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox__caption { margin-top: 1.5rem; }

.lightbox__caption h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-cream);
}

.lightbox__caption p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox__prev { left: -4rem; }
.lightbox__next { right: -4rem; }

@media (max-width: 968px) {
  .preview__grid,
  .about-story__grid,
  .craft-showcase,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .craft-showcase--reverse { direction: ltr; }

  .about-values__grid,
  .craft-process__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}

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

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
