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

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --evergreen: #0D362B;
  --evergreen-light: #154a3a;
  --evergreen-dark: #081f19;
  --old-gold: #CCB263;
  --old-gold-light: #d9c27e;
  --old-gold-dark: #b09545;
  --cream: #f8f4ec;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.75);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--evergreen);
  overflow-x: hidden;
  cursor: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--old-gold);
  border-radius: 3px;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--old-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.custom-cursor.hover {
  width: 44px;
  height: 44px;
  background-color: rgba(204, 178, 99, 0.1);
  border: 1px solid var(--old-gold);
}

a, button, input, select, textarea, .service-card, .collection-card, .hamburger {
  cursor: none !important;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(13, 54, 43, 0.97);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--old-gold);
  letter-spacing: 6px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--old-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--evergreen) !important;
  background: var(--old-gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--old-gold-light) !important;
  color: var(--evergreen) !important;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--old-gold);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--evergreen);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(204,178,99,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(204,178,99,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #081f19 0%, #0D362B 50%, #154a3a 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--old-gold) 0,
    var(--old-gold) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--old-gold);
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  color: var(--old-gold);
  letter-spacing: 18px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--old-gold);
  margin: 0 auto 56px;
  opacity: 0.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--evergreen);
  background: var(--old-gold);
  padding: 18px 48px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--old-gold-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1px solid rgba(204,178,99,0.5);
  padding: 18px 48px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'Lato', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--old-gold), transparent);
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--old-gold);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--evergreen);
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--evergreen);
  border-radius: 50%;
  opacity: 0.5;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--old-gold);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--evergreen);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(13,54,43,0.65);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

.section-description.light {
  color: rgba(255,255,255,0.65);
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--old-gold);
  margin: 0 auto;
  margin-top: 28px;
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: 120px 60px;
  background: var(--cream);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--evergreen) 0%, var(--evergreen-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(204,178,99,0.3);
}

.about-image-inner-text {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(204,178,99,0.2);
  letter-spacing: 8px;
}

.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--old-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-accent-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--evergreen);
  line-height: 1;
}

.about-accent-label {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--evergreen);
  margin-top: 4px;
  text-align: center;
}

.about-content {
  padding-right: 20px;
}

.about-intro {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--old-gold);
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-text {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(13,54,43,0.7);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(13,54,43,0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--old-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(13,54,43,0.5);
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 120px 60px;
  background: var(--evergreen);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204,178,99,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 70px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(204,178,99,0.12);
  padding: 52px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--old-gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: rgba(204,178,99,0.06);
  border-color: rgba(204,178,99,0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  width: 100%;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(204,178,99,0.1);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.service-card:hover .service-number {
  color: rgba(204,178,99,0.2);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  opacity: 0.7;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--old-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 28px;
}

.service-link {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--old-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 18px;
}

.service-link::after {
  content: '→';
  font-size: 14px;
}

/* ===== COLLECTIONS / FEATURED ===== */
#collections {
  padding: 120px 60px;
  background: var(--cream);
}

.collections-container {
  max-width: 1200px;
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.collection-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.collection-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--evergreen);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  position: relative;
  overflow: hidden;
}

.collection-img-placeholder.gold {
  background: var(--old-gold-dark);
}

.collection-img-placeholder.mid {
  background: var(--evergreen-light);
}

.collection-img-placeholder-text {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 4px;
}

.collection-card:hover .collection-img-placeholder,
.collection-card:hover .collection-image {
  transform: scale(1.06);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(8,31,25,0.95) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.4s ease;
}

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

.collection-category {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--old-gold);
  display: block;
  margin-bottom: 10px;
}

.collection-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.collection-link {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--old-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.collection-link:hover { gap: 16px; }
.collection-link::after { content: '→'; }

/* ===== PROCESS SECTION ===== */
#process {
  padding: 120px 60px;
  background: var(--evergreen-dark);
  position: relative;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--old-gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(204,178,99,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--evergreen-dark);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-circle {
  border-color: var(--old-gold);
  background: rgba(204,178,99,0.08);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--old-gold);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.step-text {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 120px 60px;
  background: var(--cream);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(13,54,43,0.08);
  padding: 44px 38px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(204,178,99,0.4);
  box-shadow: 0 20px 50px rgba(13,54,43,0.08);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(204,178,99,0.15);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}

.star {
  color: var(--old-gold);
  font-size: 13px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--evergreen);
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,54,43,0.08);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--evergreen);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initials {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--old-gold);
}

.author-name {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--evergreen);
  display: block;
  letter-spacing: 1px;
}

.author-title {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(13,54,43,0.5);
  letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
#cta {
  padding: 140px 60px;
  background: var(--old-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: 'NOMME';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 220px;
  font-weight: 700;
  color: rgba(13,54,43,0.05);
  letter-spacing: 30px;
  white-space: nowrap;
  pointer-events: none;
}

.cta-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(13,54,43,0.6);
  display: block;
  margin-bottom: 24px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  color: var(--evergreen);
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
}

.cta-text {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(13,54,43,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 48px;
}

.btn-dark {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--old-gold);
  background: var(--evergreen);
  padding: 20px 56px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--evergreen-light);
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 120px 60px;
  background: var(--evergreen);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.contact-info-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--old-gold);
  display: block;
  margin-bottom: 18px;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.contact-info-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(204,178,99,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--old-gold);
  fill: none;
  stroke-width: 1.5;
}

.detail-type {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--old-gold);
  display: block;
  margin-bottom: 4px;
}

.detail-value {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(204,178,99,0.2);
  padding: 16px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--old-gold);
  background: rgba(204,178,99,0.04);
}

.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23CCB263' stroke-width='1.5' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-select option {
  background: var(--evergreen);
  color: var(--white);
}

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

.form-submit {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--evergreen);
  background: var(--old-gold);
  border: none;
  padding: 20px 48px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--old-gold-light);
}

/* ===== FOOTER ===== */
footer {
  background: var(--evergreen-dark);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(204,178,99,0.12);
}

.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--old-gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-brand-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(204,178,99,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.social-link:hover {
  border-color: var(--old-gold);
  color: var(--old-gold);
  background: rgba(204,178,99,0.05);
}

.footer-col-title {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--old-gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: var(--old-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-legal a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--old-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }

  .about-container { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-right: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .process-steps::before { display: none; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero, #about, #services, #collections, #process, #testimonials, #cta, #contact {
    padding: 60px 24px;
  }
  
  #hero { min-height: auto; }

  .hero-title { font-size: 48px; letter-spacing: 4px; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; gap: 16px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-input, .form-select, .form-textarea { font-size: 16px; }

  .about-accent-box { width: 100px; height: 100px; right: 0; bottom: -20px; }
  .about-accent-number { font-size: 28px; }

  .custom-cursor { display: none !important; }
  body, a, button, input, select, textarea, .service-card, .collection-card, .hamburger {
    cursor: auto !important;
  }

  footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 24px; }
  .footer-legal { flex-direction: column; gap: 12px; }

  #cta::before { font-size: 60px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; letter-spacing: 2px; }
  .section-title { font-size: 32px; }
  .about-image-inner-text { font-size: 48px; }
}