/* ─── CONTACT HERO ───────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 4rem 5rem;
  background: var(--bg);
  overflow: hidden;
  z-index: 1;
}

.contact-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.contact-orb--1 {
  top: -10%;
  right: 5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184,160,122,0.12) 0%, transparent 70%);
  animation: orb-drift 8s ease-in-out infinite;
}

.contact-orb--2 {
  bottom: 0%;
  left: -5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184,160,122,0.07) 0%, transparent 70%);
  animation: orb-drift 11s ease-in-out infinite reverse;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.05); }
}

.contact-hero-line {
  position: absolute;
  top: 0;
  left: 4rem;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  opacity: 0.6;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.contact-hero-content {
  max-width: 750px;
}

.contact-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.contact-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.contact-title-main {
  display: block;
}

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

.contact-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 480px;
}

.contact-hero-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--border), transparent);
  margin-top: 5rem;
}

/* ─── CONTACT BODY ───────────────────────────────────── */
.contact-body {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 5rem 4rem 8rem;
}

.contact-body-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

/* ─── INFO PANEL ─────────────────────────────────────── */
.contact-info-panel {
  position: relative;
  padding-top: 0.5rem;
}

.contact-info-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-block:last-of-type {
  border-bottom: none;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.info-value {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.3;
}

.info-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.info-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.info-link:hover {
  color: var(--gold);
}

.info-link:hover::after {
  width: 100%;
}

/* Scent strip */
.contact-scent-strip {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scent-strip-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scent-strip-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* Info watermark */
.contact-info-watermark {
  font-family: var(--ff-brand);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(158, 140, 120, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  margin-top: 3rem;
  overflow: hidden;
  display: block;
}

/* ─── FORM PANEL ─────────────────────────────────────── */
.contact-form-panel {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* Form group */
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 1rem 0;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.4s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: var(--muted);
  opacity: 0.85;
  font-weight: 400;
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input:focus ~ .form-underline,
.form-input:not(:placeholder-shown) ~ .form-underline {
  width: 100%;
}

/* Animated underline */
.form-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
  pointer-events: none;
}

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

.form-select {
  cursor: pointer;
  color: var(--muted);
  padding-right: 2rem;
}

.form-select option {
  color: var(--text);
  background: #fff;
}

.select-arrow {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.3s;
}

.form-select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.form-textarea {
  resize: none;
  line-height: 1.8;
  min-height: 120px;
}

/* Form footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
}

.form-privacy {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  max-width: 250px;
  line-height: 1.6;
}

/* Submit button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.2rem 2.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(140, 123, 104, 0.15);
  white-space: nowrap;
}

.btn-submit:hover {
  background: #8a7a68;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(158,140,122,0.22);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.btn-submit:hover .btn-submit-arrow {
  transform: translate(2px, -2px);
}

/* ─── FORM SUCCESS STATE ─────────────────────────────── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 4rem 0;
  animation: fade-in-up 0.7s var(--ease) both;
}

.form-success.visible {
  display: flex;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.success-icon {
  font-size: 2rem;
  color: var(--gold);
  animation: spin-in 0.6s var(--ease) both;
}

@keyframes spin-in {
  from { transform: rotate(-90deg) scale(0.5); opacity: 0; }
  to   { transform: rotate(0deg) scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.success-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 360px;
}

.success-back {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-color: var(--border);
  color: var(--muted);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.success-back:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FOCUS STYLES (accessibility) ──────────────────── */
.form-input:focus-visible,
.btn-submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
  }

  .contact-info-watermark {
    display: none;
  }

  .contact-scent-strip {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 8rem 1.5rem 4rem;
    min-height: 50vh;
  }

  .contact-hero-line {
    left: 1.5rem;
  }

  .contact-body {
    padding: 4rem 1.5rem 6rem;
  }

  .contact-info-panel {
    grid-template-columns: 1fr;
  }

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

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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