  :root{
  --brand:#801D2F;
  --brand-2:#6e1828;

  --white:#fff;
  --black:#111;

  --text:#fff;                         /* main text on dark */
  --muted:rgba(255,255,255,.75);
  --line:rgba(255,255,255,.22);
  --shadow:0 14px 35px rgba(0,0,0,.22);

  --container:1200px;
  --underline:#FA9819;
  --soft: rgba(128,29,47,.08);
  --radius: 18px;
     --navH: 180px;     /* desktop */
}
 

@media (max-width: 768px){
  :root{ --navH: 100px; }  /* mobile (promo + smaller topbar + menu collapsed) */
}
@media (max-width: 420px){
  :root{ --navH: 105px; }
}
@font-face{
  font-family: "Coralith";
  src: url("fonts/Coralith-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Poppins",sans-serif;

  /* ✅ push page below fixed navbar */
  padding-top: var(--navH);
}
.cu-page{
  padding: 42px 0 70px;
  background:#fff;
}

/* ======= TOP CARD ======= */
.cu-hero{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.cu-img{
  min-height: 420px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display:block;
}

.cu-form-wrap{
  padding: 34px 34px 28px;
  background: #fff;
}

.cu-title{
  margin: 0;
  font-size: 26px;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--brand);
}

.cu-sub{
  margin: 8px 0 22px;
  color: var(--underline);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cu-label{
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  font-weight: 800;
}

/* Inputs */
.cu-input,
.cu-select,
.cu-textarea{
  width: 100%;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  outline: 0;
  background: #fff;
  box-shadow: none !important;
}

.cu-input::placeholder,
.cu-textarea::placeholder{
  color: rgba(128,29,47,.55);
}

.cu-input:focus,
.cu-select:focus,
.cu-textarea:focus{
  border-color: rgba(128,29,47,.55);
  box-shadow: 0 0 0 .2rem rgba(250,152,25,.12) !important;
}

.cu-textarea{
  min-height: 130px;
  resize: vertical;
}

/* Button */
.cu-btn{
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cu-btn:hover{
  background: var(--brand-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(128,29,47,.22);
}

/* ======= INFO CARDS ======= */
.cu-info-sec{ padding: 40px 0 10px; }

.cu-info-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--brand);
  height: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.cu-info-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--underline);
  font-size: 18px;
  flex: 0 0 auto;
}

.cu-info-title{
  margin: 0;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

.cu-info-text{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cu-info-text a{
  color: var(--underline);
  text-decoration: none;
  font-weight: 800;
}
.cu-info-text a:hover{ text-decoration: underline; }

/* ======= MAP ======= */
.cu-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cu-map iframe{
  width: 100%;
  height: 380px;
  border: 0;
  display:block;
}

/* ============= RESPONSIVE ============= */

/* Tablet & below */
@media (max-width: 991.98px){
  .cu-form-wrap{ padding: 22px 16px 18px; }
  .cu-img{ min-height: 260px; }
  .cu-title{ font-size: 22px; }
  .cu-map iframe{ height: 320px; }
}

/* Mobile */
@media (max-width: 575.98px){
  .cu-page{ padding: 26px 0 50px; }

  .cu-title{
    font-size: 20px;
    letter-spacing: .06em;
  }
  .cu-sub{ font-size: 11px; }

  .cu-input,
  .cu-select,
  .cu-textarea{
    padding: 11px 11px;
    font-size: 14px;
  }

  .cu-btn{ padding: 11px 12px; }

  .cu-info-card{
    padding: 16px;
    border-radius: 14px;
  }

  .cu-info-icon{
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 16px;
  }

  .cu-map iframe{ height: 280px; }
}