/* ============================================
   LUMIRE  contact.css
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #c4808a;
  --rose-deep: #a3616b;
  --blush: #f2e4e4;
  --blush-light: #faf4f4;
  --mauve: #8b5e6d;
  --ivory: #fdf8f3;
  --charcoal: #2c2a29;
  --mid: #6b5f5f;
  --white: #ffffff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", sans-serif;
  --radius: 6px;
  --tr: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

/*  UTILITY  */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.6rem;
}
em {
  font-style: italic;
  color: var(--rose-deep);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
}

/*  BUTTONS  */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition:
    background var(--tr),
    transform var(--tr);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

/* 
   NAV
 */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 128, 138, 0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color var(--tr);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.nav-phone {
  font-size: 0.78rem;
  color: var(--mid);
}
.btn-nav {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--rose);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--tr);
  font-family: var(--font-sans);
}
.btn-nav:hover {
  background: var(--rose-deep);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--charcoal);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--blush);
  padding: 1rem 2rem;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
}
.mobile-menu.open {
  display: flex;
}

/* 
   HERO SPLIT
 */
.contact-hero {
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: 480px;
  margin-top: 70px;
}

.ch-img-side {
  overflow: hidden;
}
.ch-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(
    145deg,
    #d8c0c4 0%,
    #b89098 35%,
    #8a6878 65%,
    #5a3a4a 100%
  );
  position: relative;
  transition: transform 0.7s ease;
}
.ch-img-side:hover .ch-img {
  transform: scale(1.03);
}

/* Decorative towel-wrap silhouette suggestion */
.ch-img::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 55%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.ch-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 70%,
    rgba(250, 244, 244, 0.3) 100%
  );
}

.ch-content-side {
  background: var(--blush-light);
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ch-content-side h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease both;
}

.ch-content-side p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.12s ease both;
}

.ch-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.24s ease both;
}

.ch-call {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: color var(--tr);
}
.ch-call:hover {
  color: var(--rose);
}
.ch-call-icon {
  font-size: 1rem;
}

/* 
   INFO + MAP
 */
.info-map {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: 6rem 5rem;
  background: #fff;
  align-items: start;
}

.info-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.info-intro {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 340px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2.5rem;
}
.info-block {
}
.info-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.info-block p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
}
.info-block a {
  color: var(--mid);
  text-decoration: none;
  transition: color var(--tr);
}
.info-block a:hover {
  color: var(--rose);
}

/* MAP */
.map-col {
}
.map-placeholder {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--blush);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-caption {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  padding: 0.8rem 1.2rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.map-caption span {
  color: var(--rose);
  margin-right: 0.4rem;
}

/* 
   LOCATIONS
 */
.locations-section {
  padding: 6rem 5rem;
  background: var(--blush-light);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.loc-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--blush);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(196, 128, 138, 0.12);
}

.loc-img {
  height: 240px;
  transition: transform 0.6s ease;
}
.loc-card:hover .loc-img {
  transform: scale(1.04);
}
.loc-img-1 {
  background: linear-gradient(
    145deg,
    #e0c4c8 0%,
    #c49094 40%,
    #9a7080 75%,
    #6d4a58 100%
  );
}
.loc-img-2 {
  background: linear-gradient(
    145deg,
    #d4b4b8 0%,
    #b08898 40%,
    #8a6878 75%,
    #5a3a4a 100%
  );
}

.loc-body {
  padding: 1.8rem 2rem 2rem;
}
.loc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.loc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.loc-detail-col {
}
.loc-label {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.loc-detail-col p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.8;
}

.loc-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
  transition:
    color var(--tr),
    border-color var(--tr);
}
.loc-directions:hover {
  color: var(--rose);
  border-color: var(--rose);
}

/* 
   ASK A QUESTION
 */
.ask-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 600px;
  background: #fff;
}

.ask-img-side {
  overflow: hidden;
}
.ask-img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  background: linear-gradient(
    140deg,
    #e0c8cc 0%,
    #c4a0a8 35%,
    #9a7888 65%,
    #6a4858 100%
  );
  position: relative;
  transition: transform 0.6s ease;
}
.ask-img-side:hover .ask-img {
  transform: scale(1.03);
}
/* Portrait silhouette feel */
.ask-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 85%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50% 50% 0 0;
}

.ask-form-side {
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.ask-form-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.ask-intro {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.ask-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 520px;
}
.ask-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.ask-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ask-group.full {
}
.ask-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.ask-group input,
.ask-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  background: #fff;
  color: var(--charcoal);
  outline: none;
  -webkit-appearance: none;
  transition: border-color var(--tr);
}
.ask-group input:focus,
.ask-group textarea:focus {
  border-color: var(--rose);
}
.ask-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-send {
  align-self: flex-start;
  background: var(--blush);
  color: var(--charcoal);
  border: 1.5px solid var(--rose);
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition:
    background var(--tr),
    color var(--tr),
    transform var(--tr);
}
.btn-send:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

/* 
   FOOTER
 */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 5rem;
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all var(--tr);
}
.social-links a:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col p {
  font-size: 0.85rem;
  line-height: 1.9;
}
.footer-col .hours {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-nav-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  gap: 2rem;
}
.footer-nav-bar a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--tr);
}
.footer-nav-bar a:hover {
  color: var(--rose);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 2rem;
  text-align: right;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-strip {
  background: var(--rose);
  padding: 0.75rem 0;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}
.footer-strip span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding-right: 2rem;
  animation: marquee 20s linear infinite;
  display: inline-block;
}
.footer-strip span:nth-child(2) {
  animation-delay: -10s;
}

/*  TOAST  */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--charcoal);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
  border-left: 3px solid var(--rose);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* 
   ANIMATIONS
 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE
 */
@media (max-width: 1100px) {
  .info-map {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
  }
  .locations-section {
    padding: 4rem 2rem;
  }
  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 1024px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }
  .ch-img-side {
    display: none;
  }
  .ch-content-side {
    padding: 4rem 2rem;
  }
  .ask-section {
    grid-template-columns: 1fr;
  }
  .ask-img-side {
    display: none;
  }
  .ask-form-side {
    padding: 4rem 2rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .ask-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-nav-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .loc-details {
    grid-template-columns: 1fr;
  }
}
