:root{
  --bg: #f4efe6;
  --text: #1e1b16;
  --muted: rgba(30, 27, 22, 0.55);
  --line: rgba(30, 27, 22, 0.10);
  --card: rgba(255, 255, 255, 0.35);
}

/* ==================================
   WOW BACKGROUND FX (same vibe)
================================== */
.bg-fx{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.blob{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.45;
  transform: translateZ(0);
}

.blob-1{
  top: -180px;
  left: -160px;
  background: rgba(139, 90, 43, 0.25);
  animation: blobFloat1 12s ease-in-out infinite;
}

.blob-2{
  top: 25%;
  right: -220px;
  background: rgba(30, 27, 22, 0.16);
  animation: blobFloat2 14s ease-in-out infinite;
}

.blob-3{
  bottom: -220px;
  left: 20%;
  background: rgba(139, 90, 43, 0.20);
  animation: blobFloat3 16s ease-in-out infinite;
}

@keyframes blobFloat1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(60px, 80px) scale(1.1); }
}
@keyframes blobFloat2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-80px, 40px) scale(1.08); }
}
@keyframes blobFloat3{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(40px, -70px) scale(1.12); }
}

.noise{
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.vignette{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(244,239,230,0) 0%, rgba(244,239,230,0) 45%, rgba(10,8,6,0.14) 100%);
  opacity: 0.65;
}

/* Cursor glow */
.cursor-glow{
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  background: radial-gradient(circle, rgba(139,90,43,0.35) 0%, rgba(139,90,43,0.15) 40%, rgba(139,90,43,0) 70%);
  transform: translate(-999px, -999px);
  filter: blur(2px);
}

/* =========================
   CONTACT HERO
========================= */
.contact-hero{
  padding: 45px 10px 0px;
  position: relative;
  overflow: hidden;
}

.contact-hero-wrap{
  position: relative;
}

.kicker{
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(30, 27, 22, 0.45);
  margin-bottom: 10px;
}

.contact-title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 0.98;
  margin-bottom: 12px;
}

.contact-subtitle{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(30, 27, 22, 0.55);
  max-width: 650px;
}

.contact-pills{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill{
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(30, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.25);
  color: rgba(30, 27, 22, 0.75);
}

.pill.soft{
  color: rgba(30, 27, 22, 0.55);
}

.contact-watermark{
  position: absolute;
  right: -10px;
  top: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(120px, 18vw, 220px);
  opacity: 0.05;
  letter-spacing: 6px;
  pointer-events: none;
}

/* =========================
   CONTACT GRID
========================= */
.contact-section{
  padding: 45px 0 0px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: start;
}

/* LEFT SIDE */
.contact-info{
  display: grid;
  gap: 14px;
}

.info-card{
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.22s ease, border-color 0.22s ease; /* no tilt */
}

.info-card:hover{
  border-color: rgba(139, 90, 43, 0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.info-card h2{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 8px;
}

.info-card p{
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(30, 27, 22, 0.55);
  margin-bottom: 14px;
}

.info-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 27, 22, 0.08);
}

.info-row:last-child{
  border-bottom: none;
}

.info-label{
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(30, 27, 22, 0.45);
}

.info-value{
  font-size: 12.5px;
  color: rgba(30, 27, 22, 0.75);
  text-align: right;
}

.divider{
  height: 1px;
  background: rgba(30, 27, 22, 0.10);
  margin: 14px 0;
}

.quick-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.action-btn{
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.action-btn:hover{
  opacity: 0.92;
}

.action-btn.dark{
  background: #241c18;
  color: white;
}

.action-btn.light{
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(30, 27, 22, 0.12);
  color: rgba(30, 27, 22, 0.8);
}

.address-box{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(30, 27, 22, 0.10);
  background: rgba(30, 27, 22, 0.04);
}

.address-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.addr-title{
  font-weight: 600;
  margin-bottom: 4px;
  color: rgba(30, 27, 22, 0.85);
}

.addr-text{
  font-size: 12.5px;
  color: rgba(30, 27, 22, 0.55);
  line-height: 1.6;
}

/* RIGHT SIDE */
.contact-main{
  display: grid;
  gap: 14px;
}

.form-card,
.map-card{
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.22s ease, border-color 0.22s ease; /* no tilt */
}

.form-card:hover,
.map-card:hover{
  border-color: rgba(139, 90, 43, 0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.form-head h2,
.map-head h2{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-head p,
.map-head p{
  font-size: 12.5px;
  color: rgba(30, 27, 22, 0.55);
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-form{
  display: grid;
  gap: 14px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full{
  grid-column: 1 / -1;
}

label{
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(30, 27, 22, 0.55);
}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(30, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.25);
  outline: none;
  color: rgba(30, 27, 22, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea{
  resize: none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(139, 90, 43, 0.35);
  box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.10);
}

.form-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.form-note{
  font-size: 12px;
  color: rgba(30, 27, 22, 0.50);
  max-width: 460px;
  line-height: 1.6;
}

.send-btn{
  background: #241c18;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}

.send-btn:hover{
  opacity: 0.92;
}

/* MAP */
.map-embed{
  height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(30, 27, 22, 0.10);
  overflow: hidden;
  position: relative;
  background: rgba(30, 27, 22, 0.03);
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Toast */
.toast{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  min-width: 240px;
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(30, 27, 22, 0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: 0.22s ease;
}

.toast.show{
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.toast-title{
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 3px;
  color: rgba(30, 27, 22, 0.90);
}

.toast-text{
  font-size: 12px;
  color: rgba(30, 27, 22, 0.60);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 950px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }

  .info-value{
    text-align: left;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow{ display: none !important; }
}
