/* ============================================================
   CONTACT.CSS — Lumière Luxury Store
   Contact Hero · Info · Form · Hours · Socials
   ============================================================ */

/* ── CONTACT HERO ── */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--espresso);
}

.contact-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(201,150,63,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(139,105,20,0.08) 0%, transparent 60%);
  animation: meshShift 10s ease-in-out infinite alternate;
}

.contact-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.12;
  animation: orbFloat 8s ease-in-out infinite;
}

.contact-hero-orb--1 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  top: -80px;
  right: 10%;
  animation-delay: 0s;
}

.contact-hero-orb--2 {
  width: 250px;
  height: 250px;
  background: var(--brass);
  bottom: -60px;
  left: 15%;
  animation-delay: 4s;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

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

.contact-hero-sub {
  font-size: 1rem;
  color: rgba(250,246,238,0.6);
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

/* ── CONTACT MAIN ── */
.contact-main {
  padding: var(--section-pad);
  background: var(--ivory);
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

/* ── CONTACT INFO ── */
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item:hover .contact-item-icon {
  background: var(--gold);
  color: var(--cream);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.2rem;
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-val {
  font-size: 0.95rem;
  color: var(--mahogany);
  font-weight: 500;
  transition: color 0.25s;
}

a.contact-item-val:hover { color: var(--gold); }

/* ── BUSINESS HOURS ── */
.business-hours {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-size: 0.85rem;
  color: var(--mahogany);
  font-weight: 500;
}

.hours-time {
  font-size: 0.82rem;
  color: var(--sand);
}

.hours-time.closed {
  color: rgba(168,152,128,0.5);
  font-style: italic;
}

/* ── SOCIAL LINKS ── */
.socials-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--mahogany);
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.contact-social-btn svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,150,63,0.05);
  color: var(--gold);
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
}

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

.contact-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.contact-success.visible { display: block; }

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--cream);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mahogany);
  margin-bottom: 0.75rem;
}

.contact-success p {
  font-size: 0.9rem;
  color: var(--sand);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mahogany);
}

.optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sand);
  font-size: 0.68rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mahogany);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--ivory);
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,63,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes meshShift {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-25px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-wrap { padding: 2rem; }
}

@media (max-width: 480px) {
  .contact-form-wrap { padding: 1.5rem; }
  .contact-hero-title { font-size: clamp(2rem, 10vw, 3rem); }
}
