/* =========================================
   ARCON Architecture — styles.css
   Palette: Burgundy · White · Gold · Black
   ========================================= */

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

:root {
  --burgundy: #7A1B2D;
  --burgundy-light: #9B2D42;
  --burgundy-dark: #5C1422;
  --gold: #C9A84C;
  --gold-light: #D4BC72;
  --gold-dark: #A88B35;
  --black: #1A1A1A;
  --charcoal: #2A2A2A;
  --cream: #F8F5F0;
  --warm-gray: #E8E2DA;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::selection { background: var(--burgundy); color: var(--white); }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 4px; }

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section-label {
  display: inline-flex; align-items: center; gap: 16px;
  color: var(--gold); font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600;
}
.section-label::before {
  content: ''; display: block; width: 48px; height: 1.5px; background: var(--gold);
}

.section-label-center {
  justify-content: center;
}
.section-label-center::after {
  content: ''; display: block; width: 48px; height: 1.5px; background: var(--gold);
}

.section-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600; line-height: 1.12; margin-top: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title em.burgundy { color: var(--burgundy); }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}
.header.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.logo:hover .logo-mark { background: var(--gold); }
.logo-mark span {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--white); transition: color 0.3s;
}
.logo:hover .logo-mark span { color: var(--black); }
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }
.logo-text strong {
  display: block; color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 20px; letter-spacing: 0.2em; font-weight: 600;
}
.logo-text small {
  display: block; color: var(--gold); font-size: 9px;
  letter-spacing: 0.35em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; margin-top: -1px;
}

.nav-desktop { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  position: relative; color: rgba(255,255,255,0.75); font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px; margin-left: 16px;
  padding: 10px 20px; border: 1px solid var(--gold); color: var(--gold);
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
.btn-call:hover { background: var(--gold); color: var(--black); }
.btn-call svg { width: 14px; height: 14px; }

.hamburger { display: flex; color: var(--white); padding: 8px; transition: color 0.3s; }
.hamburger:hover { color: var(--gold); }
.hamburger svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(26,26,26,0.98); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 28px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-divider { width: 48px; height: 1px; background: var(--gold); }
.mobile-menu-phone { color: var(--gold); font-size: 13px; letter-spacing: 0.2em; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.92), rgba(26,26,26,0.7), rgba(26,26,26,0.35));
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8), transparent, rgba(26,26,26,0.25));
}

/* Decorative lines */
.hero-deco-line {
  position: absolute; background: rgba(201,168,76,0.25);
}
.hero-deco-line.v1 { top: 128px; left: 32px; width: 1px; height: 100px; }
.hero-deco-line.v2 { bottom: 128px; right: 32px; width: 1px; height: 100px; }
.hero-deco-line.h1 { top: 128px; left: 32px; width: 32px; height: 1px; }
@media (min-width: 1024px) {
  .hero-deco-line.v1, .hero-deco-line.h1 { left: 64px; }
  .hero-deco-line.v2 { right: 64px; }
}

.hero-content {
  position: relative; z-index: 10; width: 100%;
  padding-top: 128px; padding-bottom: 80px;
}
.hero-inner { max-width: 720px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}
.hero.loaded .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-eyebrow span:first-child { display: block; width: 48px; height: 1.5px; background: var(--gold); }
.hero-eyebrow span:last-child {
  color: var(--gold); font-size: 13px; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
}

.hero h1 {
  color: var(--white); font-size: clamp(48px, 7vw, 96px);
  font-weight: 600; line-height: 1.05; margin-bottom: 32px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 1s 0.5s, transform 1s 0.5s;
}
.hero.loaded h1 { opacity: 1; transform: translateY(0); }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,0.65); font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7; max-width: 540px; margin-bottom: 48px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 1s 0.7s, transform 1s 0.7s;
}
.hero.loaded .hero-sub { opacity: 1; transform: translateY(0); }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 20px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 1s 0.85s, transform 1s 0.85s;
}
.hero.loaded .hero-ctas { opacity: 1; transform: translateY(0); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; background: var(--burgundy); color: var(--white);
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  position: relative; overflow: hidden; transition: background 0.3s, box-shadow 0.3s;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--burgundy-light); box-shadow: 0 8px 32px rgba(122,27,45,0.3); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; border: 1.5px solid var(--gold); color: var(--gold);
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 80px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 1s 1s, transform 1s 1s;
}
.hero.loaded .hero-stats { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-top: 112px;
  }
  .hero-stat { padding: 0 32px; border-left: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:first-child { padding-left: 0; border-left: none; }
}
.hero-stat-number {
  font-family: 'Playfair Display', serif; color: var(--gold);
  font-size: clamp(36px, 4vw, 52px); font-weight: 600;
}
.hero-stat-label {
  color: rgba(255,255,255,0.45); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: float 5s ease-in-out infinite;
}
.scroll-indicator span {
  color: rgba(255,255,255,0.35); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-indicator svg { color: var(--gold); width: 16px; height: 16px; }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ---------- ABOUT ---------- */
.about { padding: 112px 0; background: var(--cream); position: relative; overflow: hidden; }
.about-corner-tl { position: absolute; top: 0; right: 0; width: 200px; height: 200px; border-top: 2px solid rgba(201,168,76,0.12); border-right: 2px solid rgba(201,168,76,0.12); pointer-events: none; }
.about-corner-br { position: absolute; bottom: 0; left: 0; width: 200px; height: 200px; border-bottom: 2px solid rgba(201,168,76,0.12); border-left: 2px solid rgba(201,168,76,0.12); pointer-events: none; }

.about-grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
@media (min-width: 1024px) { .about-img-wrap img { height: 600px; } }
.about-img-frame {
  position: absolute; bottom: -24px; right: -24px; width: 180px; height: 180px;
  border: 2px solid rgba(201,168,76,0.18); pointer-events: none;
}
@media (min-width: 1024px) { .about-img-frame { right: -40px; } }
.about-badge {
  position: absolute; top: -16px; left: -16px; background: var(--burgundy);
  color: var(--white); padding: 24px;
}
@media (min-width: 1024px) { .about-badge { left: -32px; padding: 32px; } }
.about-badge strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
}
.about-badge small {
  display: block; color: rgba(255,255,255,0.7); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-wrap img { transition: transform 0.7s cubic-bezier(.25,.46,.45,.94); }
.about-img-wrap { overflow: hidden; }

.about-text p {
  color: rgba(26,26,26,0.6); font-size: 16px; line-height: 1.8; margin-top: 24px;
}
@media (min-width: 1024px) { .about-text p { font-size: 17px; } }

.about-values { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.about-value { display: flex; align-items: flex-start; gap: 20px; }
.about-value-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(122,27,45,0.06); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.about-value:hover .about-value-icon { background: var(--burgundy); }
.about-value-icon svg { width: 20px; height: 20px; color: var(--burgundy); transition: color 0.3s; }
.about-value:hover .about-value-icon svg { color: var(--white); }
.about-value h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.about-value p { color: rgba(26,26,26,0.5); font-size: 13px; line-height: 1.6; margin-top: 0; }

/* ---------- SERVICES ---------- */
.services { padding: 112px 0; background: var(--black); position: relative; overflow: hidden; }
.services-deco { position: absolute; top: 0; left: 50%; width: 1px; height: 80px; background: rgba(201,168,76,0.18); }

.services-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.services-header p { color: rgba(255,255,255,0.45); font-size: 16px; line-height: 1.7; margin-top: 20px; }
.services-header .section-title { color: var(--white); }

.services-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.service-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
  padding: 40px; transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(122,27,45,0.06);
  border-color: rgba(201,168,76,0.25);
}
.service-icon {
  width: 56px; height: 56px; border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover .service-icon { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.45); }
.service-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 { color: var(--white); font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.service-card p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  color: var(--gold); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }
.service-link svg { width: 14px; height: 14px; }

/* ---------- PROJECTS ---------- */
.projects { padding: 112px 0; background: var(--cream); }

.projects-header {
  display: flex; flex-direction: column; gap: 32px; margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .projects-header {
    flex-direction: row; align-items: flex-end; justify-content: space-between;
  }
}

.filter-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-btn {
  padding: 10px 20px; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600; border: 1px solid rgba(26,26,26,0.1);
  background: var(--white); color: rgba(26,26,26,0.55);
  transition: all 0.3s;
}
.filter-btn:hover { color: var(--black); }
.filter-btn.active { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

.projects-grid { display: grid; gap: 32px; }
@media (min-width: 640px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card { cursor: pointer; }
.project-img {
  position: relative; overflow: hidden; aspect-ratio: 4/5; margin-bottom: 20px;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.project-card:hover .project-img img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0; background: rgba(26,26,26,0.6);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.5s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.project-overlay-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
}
.project-overlay-link svg { width: 14px; height: 14px; }
.project-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  padding: 6px 12px; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; color: var(--black);
}

.project-info h3 {
  font-size: 20px; font-weight: 600;
  transition: color 0.3s;
}
.project-card:hover .project-info h3 { color: var(--burgundy); }
.project-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 8px;
  color: rgba(26,26,26,0.4); font-size: 13px;
}
.project-meta svg { width: 13px; height: 13px; }
.project-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 112px 0; background: var(--black); position: relative; overflow: hidden; }
.testimonials-deco-1 {
  position: absolute; top: 80px; right: 80px; width: 160px; height: 160px;
  border: 1px solid rgba(201,168,76,0.06); border-radius: 50%; pointer-events: none;
}
.testimonials-deco-2 {
  position: absolute; bottom: 80px; left: 80px; width: 240px; height: 240px;
  border: 1px solid rgba(201,168,76,0.04); border-radius: 50%; pointer-events: none;
}

.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.testimonials-header .section-title { color: var(--white); }

.testimonial-content { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-quote-icon { color: rgba(201,168,76,0.18); margin-bottom: 32px; }
.testimonial-quote-icon svg { width: 48px; height: 48px; margin: 0 auto; }

.testimonial-slide { min-height: 160px; display: flex; align-items: center; justify-content: center; }
.testimonial-text {
  color: rgba(255,255,255,0.85); font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(20px, 3vw, 30px); line-height: 1.6;
  animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-stars { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }

.testimonial-author { margin-top: 24px; animation: fadeInUp 0.5s 0.1s ease-out both; }
.testimonial-author strong {
  display: block; color: var(--white); font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: 0.03em;
}
.testimonial-author span {
  display: block; color: rgba(255,255,255,0.35); font-size: 13px; margin-top: 4px;
}

.testimonial-dots { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 48px; }
.testimonial-dot {
  height: 6px; border-radius: 0; transition: width 0.3s, background 0.3s;
  width: 16px; background: rgba(255,255,255,0.15);
}
.testimonial-dot.active { width: 40px; background: var(--gold); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- CONTACT ---------- */
.contact { padding: 112px 0; background: var(--cream); }
.contact-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.contact-header p { color: rgba(26,26,26,0.5); font-size: 16px; line-height: 1.7; margin-top: 20px; }

.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 64px; } }

.form-row { display: grid; gap: 24px; margin-bottom: 24px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 24px; }

.form-label {
  display: block; margin-bottom: 10px; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  color: rgba(26,26,26,0.65);
}

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 20px; background: var(--white);
  border: 1px solid rgba(26,26,26,0.08); font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--black); outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--burgundy); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(26,26,26,0.25); }
.form-textarea { resize: none; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(122,27,45,0.06); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.contact-item:hover .contact-item-icon { background: var(--burgundy); }
.contact-item-icon svg { width: 17px; height: 17px; color: var(--burgundy); transition: color 0.3s; }
.contact-item:hover .contact-item-icon svg { color: var(--white); }
.contact-item-label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: rgba(26,26,26,0.4); margin-bottom: 2px;
}
.contact-item-value { font-size: 14px; line-height: 1.5; }

/* FAQ */
.faq-title { font-size: 22px; font-weight: 600; margin-bottom: 24px; }
.faq-item {
  border: 1px solid rgba(26,26,26,0.06); background: var(--white);
  margin-bottom: 12px; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(201,168,76,0.35); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-size: 14px; font-weight: 500; width: 100%;
  text-align: left; transition: color 0.3s; color: var(--black);
}
.faq-question:hover { color: var(--burgundy); }
.faq-chevron { width: 16px; height: 16px; color: rgba(26,26,26,0.3); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 20px 16px; color: rgba(26,26,26,0.5);
  font-size: 13px; line-height: 1.7;
}

/* Toast */
.toast {
  position: fixed; top: 24px; right: 24px; z-index: 200;
  background: var(--black); color: var(--white); padding: 16px 24px;
  border: 1px solid rgba(201,168,76,0.25); font-size: 14px;
  opacity: 0; transform: translateY(-16px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); padding-top: 80px; padding-bottom: 32px; position: relative; overflow: hidden; }
.footer-gold-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(201,168,76,0.25); }

.footer-grid {
  display: grid; gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; } }

.footer-brand p {
  color: rgba(255,255,255,0.35); font-size: 14px; line-height: 1.7;
  max-width: 280px; margin-top: 20px;
}
.footer-col-title {
  color: var(--gold); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}
.footer-links a, .footer-links span {
  display: block; color: rgba(255,255,255,0.4); font-size: 14px;
  margin-bottom: 12px; transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-text {
  color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; margin-bottom: 8px;
}

.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  color: rgba(255,255,255,0.35);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 15px; height: 15px; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding-top: 32px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal span {
  color: rgba(255,255,255,0.25); font-size: 12px; cursor: pointer;
  transition: color 0.3s;
}
.footer-legal span:hover { color: rgba(255,255,255,0.5); }
.btn-top {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); transition: border-color 0.3s, color 0.3s;
}
.btn-top:hover { border-color: var(--gold); color: var(--gold); }
.btn-top svg { width: 16px; height: 16px; }
