/* ============================================================
   MR.DENIM — Contact Page: Ultra-Luxury Redesign
   Inspired by: Loro Piana · Brunello Cucinelli · Maison Margiela
   ============================================================ */

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes heroImgReveal {
  from { transform: scale(1.15) translateX(-20px); }
  to   { transform: scale(1) translateX(0); }
}

@keyframes heroPanelSlide {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes goldLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes heroTextMask {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

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

@keyframes heroNumberTick {
  0%   { opacity: 0; transform: translateY(8px) rotate(-3deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes scrollBobble {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes rippleIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes successCheck {
  0%   { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes successRing {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(12px, -18px); }
}

@keyframes shimmer {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ══════════════════════════════════════════
   HERO — SPLIT-SCREEN EDITORIAL
══════════════════════════════════════════ */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

/* ── LEFT PANEL: IMAGE ── */
.contact-hero-image-panel {
  position: relative;
  overflow: hidden;
  background: #111;
  /* Slide in from left on load */
  clip-path: inset(0 100% 0 0);
  animation: heroPanelSlide 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  animation: heroImgReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  will-change: transform;
}

/* Thin gold border on image right edge */
.contact-hero-image-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.5) 30%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.5) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* Overlay vignette on image */
.contact-hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 40%);
  z-index: 1;
  pointer-events: none;
}

/* Year badge floating on image */
.contact-hero-badge {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.4s forwards;
}

.contact-hero-badge-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.contact-hero-badge-name {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── RIGHT PANEL: TEXT ── */
.contact-hero-text-panel {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  overflow: hidden;
}

/* Big ghost number watermark */
.contact-hero-text-panel::before {
  content: '01';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Eyebrow row */
.contact-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-hero-eyebrow-line {
  display: block;
  height: 1px;
  width: 48px;
  background: var(--color-gold);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  animation: goldLineGrow 0.8s var(--ease-luxury, cubic-bezier(0.25,0.46,0.45,0.94)) 1s forwards;
}

.contact-hero-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.1s forwards;
}

/* Headline — large editorial type */
.contact-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 36px;
  overflow: hidden;
}

.contact-hero-headline-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.contact-hero-headline-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}

.contact-hero-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.9);
  text-stroke: 1px rgba(212,175,55,0.9);
}

/* Divider rule */
.contact-hero-rule {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 36px;
  transition: width 1s ease 1.6s;
}

/* Subtitle */
.contact-hero-subtitle {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 360px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.7s forwards;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

/* Quick contact pills */
.contact-hero-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.9s forwards;
}

.contact-hero-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  group: true;
}

.contact-hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-hero-pill:hover .contact-hero-pill-dot {
  transform: scale(1.6);
}

.contact-hero-pill-text {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.contact-hero-pill:hover .contact-hero-pill-text {
  color: rgba(255,255,255,0.85);
}

.contact-hero-pill-val {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  margin-left: auto;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-hero-pill:hover .contact-hero-pill-val {
  color: var(--color-gold);
}

/* Scroll cue */
.contact-hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 2.2s forwards;
}

.contact-hero-scroll-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-scroll-dot-inner {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: scrollBobble 1.8s ease-in-out infinite;
}

.contact-hero-scroll-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.contact-stats {
  background: var(--color-black);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 48px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.contact-stat {
  text-align: center;
  padding: 24px 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.contact-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-stat + .contact-stat {
  border-left: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
}

/* ══════════════════════════════════════════
   MAIN CONTACT LAYOUT
══════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 120px 80px;
  align-items: start;
}

/* ══════════════════════════════════════════
   INFO COLUMN
══════════════════════════════════════════ */
.contact-info-col {
  padding-right: 80px;
  position: sticky;
  top: 120px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.contact-info-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.contact-section-tag span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 28px;
}

.contact-title em {
  font-style: italic;
  color: var(--color-gold);
}

.contact-desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 420px;
  font-weight: 300;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-method {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s ease;
}

.contact-method:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-method::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-luxury);
}

.contact-method:hover::before {
  transform: scaleY(1);
}

.contact-method:hover {
  background: rgba(212, 175, 55, 0.03);
}

.contact-method-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.contact-method:hover .contact-method-icon-wrap {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
}

.contact-method-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-method:hover .contact-method-icon-wrap::after {
  opacity: 1;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  stroke-width: 1.3;
}

.contact-method-text {
  flex: 1;
}

.contact-method-text h3 {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-method-text p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.contact-method-text a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method-text a:hover {
  color: var(--color-gold);
}

.contact-method-text p.sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   FORM COLUMN
══════════════════════════════════════════ */
.contact-form-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out) 0.15s, transform 0.9s var(--ease-out) 0.15s;
}

.contact-form-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

/* Gold corner accents */
.contact-form-wrapper::before,
.contact-form-wrapper::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.contact-form-wrapper::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
}

.contact-form-wrapper::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
}

.contact-form-header {
  padding: 48px 56px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 10px;
}

.contact-form-subtitle {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* Form */
.contact-form {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Floating label group */
.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group--full {
  grid-column: 1 / -1;
}

/* The floating label */
.form-group label {
  position: absolute;
  top: 18px;
  left: 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  transition:
    top 0.3s var(--ease-luxury),
    font-size 0.3s var(--ease-luxury),
    color 0.3s ease,
    letter-spacing 0.3s ease;
  transform-origin: left;
}

/* Floated state */
.form-group.is-focused label,
.form-group.has-value label {
  top: -4px;
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.25em;
}

/* Input / Select / Textarea base */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0 14px;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--color-white);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease;
}

/* Focus underline */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-luxury);
}

.form-group.is-focused::after {
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: transparent;
}

/* Select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.form-group.is-focused .select-wrap::after {
  border-color: var(--color-gold);
  transform: translateY(-50%) rotate(225deg);
}

.contact-form select option {
  background: #0a0a0a;
  color: #fff;
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.6;
}

/* Placeholder override */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: transparent;
}

/* Submit button */
.contact-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--color-gold);
  padding: 20px 48px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  cursor: pointer;
  margin-top: 16px;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  align-self: flex-start;
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-luxury);
  z-index: 0;
}

.contact-submit-btn:hover::before {
  transform: translateX(0);
}

.contact-submit-btn:hover {
  color: var(--color-black);
  border-color: var(--color-gold);
}

.contact-submit-btn > * {
  position: relative;
  z-index: 1;
}

.contact-submit-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease-luxury);
}

.contact-submit-btn:hover svg {
  transform: translateX(5px);
}

/* Sending state */
.contact-submit-btn.sending {
  pointer-events: none;
  opacity: 0.7;
}

.contact-submit-btn .btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.contact-submit-btn.sending .btn-text { display: none; }
.contact-submit-btn.sending .btn-arrow { display: none; }
.contact-submit-btn.sending .btn-spinner { display: block; }

/* ══════════════════════════════════════════
   SUCCESS STATE
══════════════════════════════════════════ */
.contact-success {
  display: none;
  text-align: center;
  padding: 80px 56px;
}

.contact-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rippleIn 0.6s var(--ease-out) forwards;
}

.contact-success-ring {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  animation: successRing 0.7s var(--ease-out) forwards;
}

.contact-success-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

.contact-success-icon {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  stroke-width: 1.5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: successCheck 0.8s var(--ease-out) 0.3s forwards;
}

.contact-success h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.contact-success p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 380px;
  font-weight: 300;
}

.contact-success-divider {
  width: 60px;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  margin: 32px auto;
}

/* ══════════════════════════════════════════
   FAQ STRIP — LUXURY DARK EDITION
══════════════════════════════════════════ */
.contact-faq-strip {
  background: #0A0A0A;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.contact-faq-strip::before {
  content: 'SUPPORT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 300;
  color: rgba(255,255,255,0.015);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.contact-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-faq-eyebrow::before,
.contact-faq-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.contact-faq-eyebrow span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-faq-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.contact-faq-strip p {
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.35);
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.95rem;
}

.contact-faq-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Premium ghost buttons */
.contact-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.contact-faq-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-luxury);
}

.contact-faq-link:hover::before {
  transform: translateX(0);
}

.contact-faq-link:hover {
  color: var(--color-gold);
  border-color: rgba(212, 175, 55, 0.4);
}

.contact-faq-link-arrow {
  transition: transform 0.4s var(--ease-luxury);
  font-size: 0.8rem;
}

.contact-faq-link:hover .contact-faq-link-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   CURSOR MAGNETIC EFFECT (form elements)
══════════════════════════════════════════ */
.contact-method {
  transition: background 0.4s ease, padding-left 0.4s ease;
}

.contact-method:hover {
  padding-left: 8px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .contact-layout {
    padding: 100px 60px;
    gap: 0;
  }

  .contact-info-col {
    padding-right: 60px;
  }

  .contact-form .contact-form-header,
  .contact-form-header {
    padding: 40px 40px 32px;
  }

  .contact-form {
    padding: 40px;
  }

  .contact-hero-text-panel {
    padding: 60px 48px;
  }

  .contact-hero-headline {
    font-size: clamp(3rem, 5vw, 5.5rem);
  }
}

@media (max-width: 1024px) {
  /* Hero stacks: image on top, text below */
  .contact-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: auto;
  }

  .contact-hero-image-panel {
    height: 55vh;
  }

  .contact-hero-text-panel {
    padding: 56px 40px 48px;
    min-height: auto;
  }

  .contact-hero-text-panel::before {
    font-size: 40vw;
  }

  .contact-hero-scroll {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 80px;
  }

  .contact-info-col {
    padding-right: 0;
    position: static;
  }

  .contact-stats {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    grid-template-rows: 50vh auto;
  }

  .contact-hero-image-panel {
    height: 50vh;
  }

  .contact-hero-text-panel {
    padding: 40px 24px;
  }

  .contact-hero-headline {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

  .contact-hero-badge {
    bottom: 24px;
    left: 24px;
  }

  .contact-stats {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 0;
  }

  .contact-stat + .contact-stat {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }

  .contact-layout {
    padding: 60px 24px;
    gap: 64px;
  }

  .contact-form-header {
    padding: 32px 28px 28px;
  }

  .contact-form {
    padding: 32px 28px;
  }

  .contact-form-wrapper::before,
  .contact-form-wrapper::after {
    width: 24px;
    height: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-faq-strip {
    padding: 80px 24px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-faq-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-faq-link {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}

/* ══════════════════════════════════════════
   LIGHT MODE OVERRIDES
══════════════════════════════════════════ */
html.light-mode body.contact-page {
  background-color: #F7F5F2;
  color: #000000;
}

html.light-mode .contact-page .main-nav.scrolled {
  background: rgba(247, 245, 242, 0.97) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06) !important;
}

html.light-mode .contact-page .main-nav.scrolled .nav-logo,
html.light-mode .contact-page .main-nav.scrolled .nav-link,
html.light-mode .contact-page .main-nav.scrolled .nav-icon-btn {
  color: #000000 !important;
}

html.light-mode .contact-hero-overlay {
  background:
    linear-gradient(135deg, rgba(15,10,5,0.75) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.5) 100%),
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 55%);
}

html.light-mode .contact-stats {
  background: #FFFFFF;
}

html.light-mode .contact-title {
  color: #000000;
  font-weight: 400;
}

html.light-mode .contact-desc {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-section-tag span {
  color: #8A6A14;
}

html.light-mode .contact-section-tag::before {
  background: #8A6A14;
}

html.light-mode .contact-method {
  border-color: rgba(0,0,0,0.15);
}

html.light-mode .contact-method:first-child {
  border-top-color: rgba(0,0,0,0.15);
}

html.light-mode .contact-method:hover {
  background: rgba(138, 106, 20, 0.04);
}

html.light-mode .contact-method-text p {
  color: #000000;
  font-weight: 400;
}

html.light-mode .contact-method-text p.sub {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-method-text a {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-form-wrapper {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.15);
}

html.light-mode .contact-form-title {
  color: #000000;
  font-weight: 400;
}

html.light-mode .contact-form-subtitle {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-form-header {
  border-bottom-color: rgba(0,0,0,0.15);
}

html.light-mode .contact-form label {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-form input,
html.light-mode .contact-form select,
html.light-mode .contact-form textarea {
  color: #000000;
  border-bottom-color: rgba(0,0,0,0.25);
  font-weight: 500;
}

html.light-mode .contact-form select option {
  background: #fff;
  color: #000000;
}

html.light-mode .contact-success h3 {
  color: #000000;
  font-weight: 400;
}

html.light-mode .contact-success p {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-faq-strip {
  background: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.15);
}

html.light-mode .contact-faq-strip h2 {
  color: #000000;
  font-weight: 400;
}

html.light-mode .contact-faq-strip p {
  color: #000000;
  font-weight: 500;
}

html.light-mode .contact-faq-link {
  color: #000000;
  border-color: rgba(0,0,0,0.8);
  font-weight: 600;
}

html.light-mode .contact-faq-link:hover {
  background: #000000;
  color: #FFFFFF;
}
