/* ═══ TOKENS ═══ */
:root {
  --brand: #3B1A3A;
  --blush: #F2DDD8;
  --gold:  #C8A06A;
  --ink:   #1E1218;
  --muted: #8a7882;
  --white: #FFFAF8;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  overflow-x: hidden;
  margin: 0;
  background: var(--white);
}
img { max-width: 100%; display: block; }

/* ═══ TYPOGRAPHY ═══ */
.sup {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.display-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 34px;
  transition: all 0.22s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-dark        { background: var(--brand); color: #fff; }
.btn-dark:hover  { background: #2a1129; }
.btn-outline-dark { border: 1.5px solid var(--brand); color: var(--brand); }
.btn-outline-dark:hover { background: var(--brand); color: #fff; }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--brand); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8903a; }

/* ═══ NAV ═══ */
.nav-link {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--brand); }

/* ═══ SERVICE CARD ═══ */
.service-card {
  background: rgba(242,221,216,0.4);
  padding: 28px 24px;
  border: 1px solid rgba(59,26,58,0.08);
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover {
  border-color: rgba(59,26,58,0.2);
  background: rgba(242,221,216,0.65);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin: 0 0 10px;
}
.service-card p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: #5a4455;
  margin: 0;
}

/* ═══ MARQUEE ═══ */
@keyframes marquee { 0% { transform:translateX(0) } 100% { transform:translateX(-50%) } }
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 24px;
}

/* ═══ ANIMATIONS ═══ */
@keyframes bounce-y {
  0%,100% { transform: translateX(-50%) translateY(0) }
  50%     { transform: translateX(-50%) translateY(8px) }
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ DIVIDER ═══ */
.gold-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin-bottom: 22px;
}

/* ═══ SECTION SHELL ═══ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══ GALLERY GRID ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--blush);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ═══ RESPONSIVE NAV ═══ */
@media (max-width: 767px) {
  .desktop-nav { display: none !important; }
  .mobile-trigger { display: flex !important; }
}
@media (min-width: 768px) {
  .mobile-trigger { display: none !important; }
  #mobile-menu   { display: none !important; }
}

/* ═══ SECTION PADDING ═══ */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ═══ FLEX SPLIT (image + text) ═══ */
.split-wrap {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .split-wrap { flex-direction: row; align-items: center; }
  .split-wrap.reverse { flex-direction: row-reverse; }
  .split-img { max-width: 460px !important; flex-shrink: 0; }
}

/* ═══ CONTACT FORM ═══ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(59,26,58,0.18);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
}
.form-field textarea { resize: vertical; min-height: 120px; }
