body {
  font-family: "Inter", system-ui, sans-serif;
  background: #0b1018;
  color: #ece4d3;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
h1,
h2,
h3,
h4,
.font-display {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.01em;
}
.font-mono-tight {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.15em;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #c9a14a 0%, #e9c87a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-gradient-gold {
  background: linear-gradient(135deg, #c9a14a 0%, #e9c87a 100%);
}
.bg-gradient-hero {
  background: linear-gradient(
    180deg,
    rgba(7, 11, 18, 0.3) 0%,
    rgba(7, 11, 18, 0.85) 70%,
    #0b1018 100%
  );
}
.bg-gradient-radial {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(201, 161, 74, 0.18),
    transparent 60%
  );
}
.shadow-gold {
  box-shadow: 0 20px 60px -20px rgba(201, 161, 74, 0.4);
}
.shadow-elegant {
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.animate-shimmer {
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
}
.reveal.visible {
  animation: floatUp 0.9s ease-out forwards;
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: linear-gradient(135deg, #c9a14a, #e9c87a);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.service-card {
  transition: background-color 0.5s ease;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(135deg, #c9a14a, #e9c87a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.service-icon {
  transition: transform 0.5s ease;
}

.field {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 161, 74, 0.18);
  transition: border-color 0.3s ease;
}
.field:focus {
  outline: none;
  border-color: #c9a14a;
}

.btn-primary {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-arrow {
  transition: transform 0.3s ease;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.btn-ghost:hover {
  color: #c9a14a;
  border-color: #c9a14a;
}

.toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: #10172180;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 161, 74, 0.4);
  color: #ece4d3;
  padding: 16px 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/*  form msg  */
.field-error {
  border-color: #ef4444 !important;
}


.error-text {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
}

/* Placeholder block (use when a real photo is not yet sourced) */
.img-placeholder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 161, 74, 0.16), transparent 60%),
    linear-gradient(135deg, #0f1623 0%, #070b12 100%);
  border: 1px solid rgba(201, 161, 74, 0.22);
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 14px,
    rgba(201, 161, 74, 0.04) 14px 15px
  );
  pointer-events: none;
}
.img-placeholder__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 161, 74, 0.6);
}
.img-placeholder__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 1px;
  background: linear-gradient(135deg, #c9a14a, #e9c87a);
  opacity: 0.6;
}

/* FAQ (details/summary) */
.faq-item {
  border-bottom: 1px solid rgba(201, 161, 74, 0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 1px solid #c9a14a;
  border-bottom: 1px solid #c9a14a;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.faq-item summary:hover {
  color: #c9a14a;
}
.faq-item .faq-body {
  padding: 0 0 1.5rem;
  color: #8a8470;
  line-height: 1.7;
}

/* Active nav link */
.nav-link.is-active,
.mobile-link.is-active {
  color: #c9a14a;
}
.nav-link.is-active::after {
  width: 100%;
}
