/* =====================================================
   FINITURE DI PREGIO di Cristofer Giugno
   Tema Classico Professionale
   Palette: Avorio, Bianco, Oro Caldo, Marrone Scuro
   ===================================================== */

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

/* ─── Custom Properties ─── */
:root {
  --gold: #b09358;
  --gold-light: #cdb88a;
  --gold-dark: #8c7543;
  --gold-pale: #f0e6d2;
  --gold-gradient: linear-gradient(135deg, #b09358 0%, #cdb88a 50%, #b09358 100%);
  --gold-glow: 0 4px 24px rgba(176, 147, 88, 0.18);

  --bg-primary: #faf8f5;
  --bg-white: #ffffff;
  --bg-cream: #f3efe9;
  --bg-warm: #eee9e0;
  --bg-dark: #2a2520;
  --bg-dark-soft: #342e28;

  --text-dark: #2a2520;
  --text-body: #4a443d;
  --text-secondary: #7a7269;
  --text-muted: #a09889;
  --text-light: #faf8f5;

  --border-light: #e5dfd6;
  --border-medium: #d5cdc2;
  --border-gold: rgba(176, 147, 88, 0.35);

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-padding: 110px;
  --container-max: 1180px;
  --container-padding: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
  --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 4px 16px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 8px 40px rgba(42, 37, 32, 0.1);
  --shadow-card: 0 2px 12px rgba(42, 37, 32, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { font-family: var(--font-body); }

/* ─── Utility ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title .gold { color: var(--gold); }
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}

.gold-divider {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 28px 0;
}

.classic-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}
.classic-ornament::before,
.classic-ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border-medium);
}
.classic-ornament .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed { 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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-light);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-fast);
}
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.hero .nav-logo-name { color: var(--text-light); }
.nav-logo-tagline {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  position: relative;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hero state: white nav links */
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
.navbar:not(.scrolled) .nav-links a::after { background: #fff; }
.navbar:not(.scrolled) .nav-logo-name { color: #fff; }
.navbar:not(.scrolled) .nav-logo-tagline { color: rgba(255,255,255,0.6); }
.navbar:not(.scrolled) .nav-cta {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.navbar:not(.scrolled) .nav-cta:hover {
  background: #fff !important;
  color: var(--text-dark) !important;
  border-color: #fff !important;
}
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }

.nav-cta {
  padding: 9px 22px !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold-dark) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all var(--transition-fast);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42,37,32,0.25) 0%,
    rgba(42,37,32,0.45) 50%,
    rgba(42,37,32,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.hero-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 36px;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 0.3s forwards;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}
.hero-badge {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 0.5s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 0.7s forwards;
}
.hero-title .gold-text {
  color: var(--gold-light);
  font-style: italic;
}
.hero-description {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 0.9s forwards;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 1.1s forwards;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* On light backgrounds */
.light-section .btn-primary { color: #fff; }
.light-section .btn-secondary {
  color: var(--text-dark);
  border-color: var(--border-medium);
}
.light-section .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: heroUp 1s var(--ease-out) 1.6s forwards;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite 2.5s;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50%     { opacity: 1; }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-image:hover img { transform: scale(1.03); }

/* Classic frame effect */
.about-image::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1;
  pointer-events: none;
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-white);
  border: 1.5px solid var(--gold);
  padding: 22px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-experience .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-experience .label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 600;
}
.about-content { padding: 10px 0; }
.about-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}
.about-feature:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-feature p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-cream);
  position: relative;
}
.services::before,
.services::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--border-light);
}
.services::before { top: 0; }
.services::after { bottom: 0; }

.services-header { text-align: center; margin-bottom: 72px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 38px 28px;
  transition: all var(--transition-base);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}
.service-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-fast);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.service-card:hover h3 { color: var(--gold-dark); }
.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.service-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(176,147,88,0.07);
  line-height: 1;
}

/* =====================================================
   STATS
   ===================================================== */
.stats {
  padding: 72px 0;
  background: var(--bg-dark);
  color: var(--text-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { position: relative; padding: 16px; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-subtitle { margin: 0 auto; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(42,37,32,0.85) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.gallery-item-overlay p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(42,37,32,0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 88vw;
  max-height: 85vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2001;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-cream);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info { padding: 20px 0; }
.contact-info .section-subtitle { margin-bottom: 32px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
}
.contact-detail h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--gold-dark); }

.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,147,88,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-white); color: var(--text-dark); }
.form-submit { margin-top: 4px; }
.form-submit .btn-primary { width: 100%; justify-content: center; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 60px 0 24px;
  background: var(--bg-dark);
  color: var(--text-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand .nav-logo-name { color: var(--gold-light); }
.footer-brand .nav-logo-tagline { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(176,147,88,0.1);
}
.footer-social a svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}
.footer-column ul li a:hover { color: var(--gold-light); padding-left: 3px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 20px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-base);
    z-index: 999;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--text-body) !important; }
  .nav-links a:hover { color: var(--gold-dark) !important; }
  .nav-links a::after { background: var(--gold) !important; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3.4rem); }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-experience { right: 0; bottom: -20px; }
  .about-features { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .hero-logo { width: 120px; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Selection ─── */
::selection { background: rgba(176,147,88,0.25); color: var(--text-dark); }
