﻿/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors — Luxury Gold & Dark */
  --bg-primary: #08080c;
  --bg-secondary: #0e0e14;
  --bg-card: rgba(18, 18, 28, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.07);

  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #9a7b2f;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --accent-gradient: linear-gradient(135deg, #c9a84c, #e8d48b, #c9a84c);
  --accent-gradient-hover: linear-gradient(135deg, #e8d48b, #f0e2a8, #e8d48b);

  --text-primary: #f5f0e8;
  --text-secondary: #a8a098;
  --text-muted: #6a6460;

  /* Typography */
  --font-display: 'Rubik', sans-serif;
  --font-body: 'Rubik', sans-serif;

  /* Spacing */
  --section-padding: 70px 0;
  --container-width: 1200px;

  /* Effects */
  --glass-blur: blur(20px);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-glow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --border-radius: 16px;
  --border-radius-sm: 10px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

body.intro-active {
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 35px;
  height: 1.5px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.9;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb--gold {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.05);
  top: -100px;
  right: -100px;
  animation: orbFloat 18s ease-in-out infinite;
}

.bg-orb--warm {
  width: 600px;
  height: 600px;
  background: rgba(160, 100, 40, 0.04);
  bottom: -200px;
  left: -200px;
  animation: orbFloat 22s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.03); }
}

/* ===== MOTION ZOOM (infinite loop) ===== */
.motion-zoom {
  animation: motionZoomLoop 12s ease-in-out infinite alternate;
}

@keyframes motionZoomLoop {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(8, 8, 12, 0.9);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 6px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--gold-light);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 28px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.navbar__cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow-gold);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.navbar__toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to top, var(--bg-primary) 0%, transparent 25%),
    linear-gradient(to right, rgba(8,8,12,0.95) 0%, rgba(8,8,12,0.4) 100%);
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1400px;
}

.hero__content {
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.5s;
}







.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  padding: 14px 40px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 2px;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  padding: 14px 40px;
  background: transparent;
  border: 1.5px solid var(--border-glass);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero showcase (Removed old frame, kept empty for structural spacing if needed) */
.hero__showcase {
    display: flex;
    align-items: center;
    justify-content: center;
  }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== ABOUT ===== */
.about {
  padding: 0 0 var(--section-padding);
  position: relative;
  z-index: 5;
  margin-top: -10vh;
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.about__image-border {
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: calc(var(--border-radius) - 4px);
  pointer-events: none;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__header .section-desc {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__features li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-right: 18px;
  position: relative;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-card__cta {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: letter-spacing 0.3s ease;
}

.service-card:hover .service-card__cta {
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 24px 20px;
  }
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery__header .section-desc {
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
}

.gallery__item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item--large {
  grid-row: 1 / 3;
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,12,0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ===== PRODUCTS ===== */
.products {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
}

.products__header {
  text-align: center;
  margin-bottom: 60px;
}

.products__header .section-desc {
  margin: 0 auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: var(--glass-blur);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow-gold);
  border-color: rgba(201, 168, 76, 0.2);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 16px;
  background: var(--accent-gradient);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bg-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card__info {
  padding: 28px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card__cta {
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-card__cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__header .section-desc {
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testimonial-card--featured {
  grid-column: span 1;
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, rgba(18, 18, 28, 0.8) 100%);
}

.testimonial-card__quote {
  font-family: 'Rubik', sans-serif;
  font-size: 4rem;
  color: var(--gold-glow);
  line-height: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}

.testimonial-card__stars {
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 25px;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
}

.testimonial-card__avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-card__name {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Testimonial with sculpture image */
.testimonial-card--with-image {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.testimonial-card__sculpture {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.testimonial-card__sculpture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,28,1) 0%, transparent 60%);
  pointer-events: none;
}

.testimonial-card__sculpture-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.testimonial-card--with-image:hover .testimonial-card__sculpture-img {
  transform: scale(1.05);
}

.testimonial-card__body {
  padding: 28px 36px 36px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 80px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(201,168,76,0.04), transparent, rgba(201,168,76,0.03), transparent);
  animation: rotateBg 25s linear infinite;
}

@keyframes rotateBg {
  to { transform: rotate(360deg); }
}

.cta-box__content {
  position: relative;
  z-index: 2;
}

.cta-box__signature {
  width: 500px;
  max-width: 95%;
  margin: 0 auto 30px;
  mix-blend-mode: screen;
  opacity: 1;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-box__actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
}

.contact__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact__header .section-desc {
  margin: 0 auto;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.contact__info-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(-5px);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact__info-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: var(--glass-blur);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select option {
  background: var(--bg-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 4px;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 2;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer__signature {
  width: 400px;
  margin-top: 16px;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer__col ul a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    min-height: 85vh;
    background-color: var(--bg-primary);
  }

  .hero__bg-video {
    object-fit: cover;
    object-position: top center;
    height: 55vh;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 45vh; /* Push title down so video sits between subtitle and description */
  }

  .hero__signature { text-align: center; }
  .hero__signature img { margin: 0 auto; }
  .hero__desc { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }

  .hero__showcase {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__stats { justify-content: center; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
  }

  .gallery__item--large { grid-row: auto; }

  .products__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card__price { font-size: 1rem; }
  .product-card__name { font-size: 1rem; }

  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: var(--glass-blur);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-glass);
  }

  .navbar__links.active { display: flex; }
  .navbar__toggle { display: flex; }
  .navbar__cta { display: none; }

  /* Removed 1fr override to keep honeycomb grid */

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero__actions { flex-direction: column; }
  .about__stats { flex-wrap: wrap; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 30px; }

  .cta-box { padding: 50px 24px; }

  .intro-falling__img { width: 75vmin; }
  .intro-standing__img { width: 85vmin; }

  /* Mobile fix for signature video overlap */
  

  /* Compact Product Cards for Mobile Honeycomb */
  .product-card__info { padding: 12px; }
  .product-card__name { font-size: 0.95rem; margin-bottom: 5px; }
  .product-card__price { font-size: 0.9rem; }
  .product-card__cta { width: auto; height: 28px; padding: 0 12px; border-radius: 14px; font-size: 0.8rem; }
  .product-card__image { height: 160px; }

  /* Carousel Wrapper and Arrows */
  .testimonials__carousel-wrapper {
    position: relative;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }
  .carousel-btn--left { left: -10px; }
  .carousel-btn--right { right: -10px; }

  /* Mobile Carousel for Testimonials */
  .testimonials__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }

  .testimonial-card { 
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 20px; 
  }
  .testimonial-card__body { padding: 10px 0 0 0; }
  
  /* Text smaller and more compressed (more words per line) */
  .testimonial-card__text { 
    font-size: 0.85rem; 
    margin-bottom: 10px; 
    line-height: 1.5; 
  }
  .testimonial-card__sculpture { height: 200px; border-radius: var(--border-radius); }
  
  /* Top Corner Avatar */
  .testimonial-card__author { 
    display: block; /* Remove flex so we can use absolute positioning nicely */
    margin-bottom: 15px; 
    padding-bottom: 15px; 
    padding-left: 60px; /* Space for avatar on the left */
  }
  .testimonial-card__avatar-img { 
    position: absolute;
    top: 20px;
    left: 20px;
    width: 55px; 
    height: 55px; 
    margin: 0;
  }
  .testimonial-card__name { font-size: 0.9rem; }
  .testimonial-card__role { font-size: 0.75rem; }
}

/* ===== ACCESSIBILITY WIDGET ===== */
.accessibility-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.accessibility-btn {
  background: #0056b3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accessibility-btn:hover {
  transform: scale(1.1);
}

.accessibility-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 250px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.accessibility-menu.active {
  display: flex;
}

.accessibility-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-glass);
}

.accessibility-menu__header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--gold);
}

.accessibility-menu__header button {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
}

.accessibility-menu__options {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accessibility-menu__options button {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  text-align: right;
  transition: background 0.2s ease;
}

.accessibility-menu__options button:hover,
.accessibility-menu__options button.active {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

/* Accessibility Body Classes */
body.acc-high-contrast {
  filter: contrast(1.5) grayscale(0.5);
}
body.acc-large-text {
  font-size: 120%;
}
body.acc-large-text h1, body.acc-large-text h2, body.acc-large-text h3 {
  font-size: 120%;
}
body.acc-underline-links a {
  text-decoration: underline !important;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--gold);
  padding: 20px 0;
  z-index: 9998; /* Just below accessibility widget */
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: none;
}

.cookie-banner.visible {
  display: block;
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }
}



/* ============================================
   CART DRAWER STYLES
   ============================================ */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-card);
  border-right: 1px solid var(--border-glass);
  box-shadow: 10px 0 30px rgba(0,0,0,0.5);
  z-index: 2000;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  left: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 {
  font-size: 1.5rem;
  margin: 0;
}
.close-cart {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 50px;
}

.cart-item {
  display: flex;
  gap: 15px;
  background: rgba(255,255,255,0.02);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.cart-item-price {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  cursor: pointer;
}
.remove-btn {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: auto;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-glass);
  background: var(--bg-card);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.checkout-btn:hover {
  background: var(--gold-hover);
}
/* Fallback for JS failure */
noscript .reveal, .no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.hero__signature-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero__signature-video {
  width: 100%;
  max-width: 500px;
  height: auto;
  mix-blend-mode: screen;
  -webkit-mix-blend-mode: screen;
}
.hero__signature-video {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  -webkit-mix-blend-mode: screen;
}





