/* ── Custom Properties ── */
:root {
  --gold-light: #fdeaa8;
  --gold-mid: #d4922a;
  --gold-dark: #935918;
  --burgundy-light: #f3a7b5;
  --burgundy-mid: #d44060;
  --burgundy-dark: #781830;
  --dark-950: #040408;
  --dark-900: #08080e;
}

/* ── Base / Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; overflow-x: hidden; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-950); }
::-webkit-scrollbar-thumb { background: rgba(212,146,42,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,146,42,0.5); }

/* ── Selection ── */
::selection { background: rgba(212,146,42,0.3); color: #fff; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,234,168,0.7);
  border: 1px solid rgba(212,146,42,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(212,146,42,0.06);
}

/* ── Section Titles ── */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

/* ── Section Descriptions ── */
.section-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Service Cards ── */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,146,42,0.1), transparent, rgba(212,146,42,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover::before { opacity: 1; }

/* ── Testimonial Cards ── */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: rgba(212,146,42,0.06);
  pointer-events: none;
  transition: color 0.5s ease;
}
.testimonial-card:hover::after { color: rgba(212,146,42,0.1); }

/* ── Mobile Menu Animation ── */
.menu-line { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
#mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#mobile-menu-btn.active .menu-line:nth-child(3) {
  width: 24px;
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Link Hover ── */
.mobile-link {
  position: relative;
}
.mobile-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fdeaa8, #d4922a);
  transition: width 0.3s ease;
}
.mobile-link:hover::after { width: 100%; }

/* ── Form Select Arrow ── */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(212,146,42,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── Focus Visible ── */
:focus-visible {
  outline: 2px solid rgba(212,146,42,0.6);
  outline-offset: 2px;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Scroll Reveal (progressive enhancement) ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden-reveal {
  opacity: 0;
  transform: translateY(30px);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}
