:root{
  --ink:#0b0b0c;
  --stone:#f5f5f4;
  --line:rgba(17,17,17,0.10);
  --muted:rgba(0,0,0,0.62);
  --gold:#c69a4b;
}

/* ===============================
   HERO MAP
   =============================== */
.cth-map-hero{
  position:relative;
  height:600px;
  overflow:hidden;
  background:linear-gradient(180deg,#0b1a24,#123047);
  border-bottom:1px solid rgba(0,0,0,.08);
  perspective:1400px;
}
#contactAustraliaMap{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,#2a6c97,#12374e);
  transform-origin:center 62%;
  transform: rotateX(9deg) scale(1.03);
  filter:saturate(1.06) contrast(1.03) brightness(1.05);
}

/* reduce darkness overlay */
.cth-map-hero #contactAustraliaMap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 50% 40%, rgba(255,255,255,0.12), rgba(0,0,0,0.30) 72%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.26));
  mix-blend-mode:multiply;
}

/* soften global overlay */
.cth-map-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(900px 560px at 18% 22%, rgba(255,255,255,.52), rgba(255,255,255,0) 62%),
    radial-gradient(820px 540px at 78% 26%, rgba(198,154,75,.18), rgba(198,154,75,0) 64%),
    radial-gradient(820px 520px at 70% 78%, rgba(120,200,255,.10), rgba(120,200,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(6,6,7,.40));
  mix-blend-mode:multiply;
  opacity:.85;
}

/* sheen */
.cth-map-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 42%, rgba(255,255,255,0) 70%);
  transform:translateX(-46%);
  animation: cthSheen 8.2s ease-in-out infinite;
  opacity:.45;
}
@keyframes cthSheen{
  0%{ transform:translateX(-48%); }
  50%{ transform:translateX(22%); }
  100%{ transform:translateX(-48%); }
}

.maplibregl-control-container{ display:none; }

/* hero text position */
.cth-map-hero .c2-hero-inner{
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 64px;
}
.cth-map-hero .c2-hero-row{
  width: 100%;
  max-width: 920px;
}
@media (max-width:640px){
  .cth-map-hero{ height:500px; }
  .cth-map-hero .c2-hero-inner{ padding-bottom:48px; }
  #contactAustraliaMap{ transform: rotateX(6deg) scale(1.02); }
}

/* ===============================
   PAGE WRAP
   =============================== */
.cth-wrap{
  background:#fff;
  padding:58px 0 90px;
}
.cth-flow{
  max-width:1120px;
  margin:0 auto;
}

/* top intro row */
.cth-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.cth-head h2{
  margin:0;
  font-size:30px;
  letter-spacing:-.02em;
  color:var(--ink);
}
.cth-lead{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.9;
  font-size:14px;
  max-width:760px;
}

/* ===============================
   SOCIAL (keep)
   =============================== */
.cth-quick{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cth-social-head{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}
.cth-social-label{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(0,0,0,.45);
  line-height:1;
}
.cth-social{
  display:flex;
  gap:14px;
  align-items:center;
}
.cth-social--head{ justify-content:flex-end; }
.cth-social-a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  text-decoration:none;
  transition: transform .15s ease, opacity .15s ease;
}
.cth-social-a svg{ width:22px; height:22px; }
.cth-social-a:hover{ transform: translateY(-1px); opacity:.85; }
.cth-social-a.insta{ color:#E4405F; }
.cth-social-a.linkedin{ color:#0A66C2; }
.cth-social-a.facebook{ color:#1877F2; }
.cth-social-a.x{ color:#111; }

@media (max-width:980px){
  .cth-head{ flex-direction:column; align-items:flex-start; }
  .cth-quick{ justify-content:flex-start; }
  .cth-social-head{ align-items:flex-start; }
  .cth-social--head{ justify-content:flex-start; }
}

/* ===============================
   CONTACT STRIP (clean + consistent)
   =============================== */
.cth-strip{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  padding:18px 0 22px;
  border-top:1px solid rgba(17,17,17,0.06);
  border-bottom:1px solid var(--line);
  margin-top:14px;
}
.cth-strip-item{
  display:flex;
  gap:12px;
  align-items:center;
  padding:14px 14px;
  text-decoration:none;
  color:inherit;
  transition:transform .14s ease, border-color .16s ease, background .16s ease;
}
.cth-strip-item:hover{
  transform:translateY(-2px);
  border-color:rgba(198,154,75,.28);
  background:rgba(255,255,255,.92);
}
.cth-strip-k{
  margin:0 0 4px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(0,0,0,.52);
  line-height:1;
}
.cth-strip-v{
  margin:0;
  font-size:14px;
  font-weight:900;
  color:#111;
  line-height:1.3;
  word-break: break-word;
}
.cth-ico svg{
  width:25px;
  height:25px;
  color:rgba(17,17,17,.92);
}
@media (max-width:980px){
  .cth-strip{ grid-template-columns: 1fr; }
}

/* ===============================
   SPLIT LAYOUT
   =============================== */
.cth-split{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap:34px;
  padding-top:26px;
}

/* Left column */
.cth-copy h3{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:-.01em;
  color:var(--ink);
}
.cth-copy p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.9;
  font-size:14px;
}
.cth-inline-link{
  color:#111;
  text-decoration:none;
  border-bottom:1px solid rgba(198,154,75,.55);
}
.cth-inline-link:hover{
  border-bottom-color: rgba(198,154,75,.95);
}


.cth-note{
  margin-top:16px;
  color:rgba(0,0,0,.58);
  font-size:13px;
  line-height:1.85;
  padding-top:14px;
  border-top:1px solid rgba(17,17,17,0.06);
}

/* Right column / form */
.cth-form{
  border-top:1px solid var(--line);
  padding-top:18px;
}
.cth-form h3{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:-.01em;
  color:var(--ink);
}
.cth-form p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.9;
  font-size:14px;
}

.aus-contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 16px;
}
.aus-contact-field--full{ grid-column: 1 / -1; }
.aus-contact-field{ display:flex; flex-direction:column; gap:7px; }

.aus-contact-field label{
  font-size:13px;
  font-weight:850;
  color:rgba(0,0,0,.70);
}

#contactFormWrap input,
#contactFormWrap textarea,
#contactFormWrap select{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  padding:12px 2px 12px;
  border:0;
  border-bottom:1px solid rgba(0,0,0,.18);
  border-radius:0;
  background:transparent;
  font-size:14px;
  color:#111;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease;
}
#contactFormWrap textarea{
  padding-top:10px;
  min-height:160px;
  resize:vertical;
}
#contactFormWrap input:focus,
#contactFormWrap textarea:focus,
#contactFormWrap select:focus{
  border-bottom-color: rgba(198,154,75,.80);
  box-shadow: 0 10px 0 -9px rgba(198,154,75,.55);
}

.aus-contact-field.is-invalid input,
.aus-contact-field.is-invalid textarea,
.aus-contact-field.is-invalid select{
  border-bottom-color: rgba(180,40,40,.70);
  box-shadow: 0 10px 0 -9px rgba(180,40,40,.55);
}
.aus-field-error{
  min-height:16px;
  font-size:12px;
  color:rgba(180,40,40,.92);
}

#contactFormWrap input:-webkit-autofill,
#contactFormWrap input:-webkit-autofill:hover,
#contactFormWrap input:-webkit-autofill:focus{
  -webkit-text-fill-color:#111;
  box-shadow:0 0 0 1000px #fff inset !important;
  transition: background-color 9999s ease-out 0s;
}

.aus-contact-submit-row{
  margin-top:16px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.aus-contact-btn{
  appearance:none;
  border:1px solid rgba(17,17,17,.18);
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  color:#fff;
  background:rgba(17,17,17,0.95);
  transition:transform .12s ease, background .18s ease, border-color .18s ease;
}
.aus-contact-btn:hover{ background:#111; border-color: rgba(198,154,75,.35); }
.aus-contact-btn:active{ transform:translateY(1px); }

.aus-recaptcha-note{
  font-size:12px;
  color:rgba(0,0,0,.55);
}
.aus-recaptcha-note a{ color:rgba(0,0,0,.72); text-decoration:none; }
.aus-recaptcha-note a:hover{ text-decoration:underline; }

/* alerts */
.cth-alert{
  margin:0 0 16px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.8);
}
.cth-alert--bad{ border-color:rgba(180,40,40,.20); background:rgba(180,40,40,.06); }

/* responsive */
@media (max-width:980px){
  .cth-split{ grid-template-columns:1fr; gap:24px; }
}
@media (max-width:640px){
  .cth-head h2{ font-size:26px; }
  .aus-contact-grid{ grid-template-columns:1fr; }
  
}

/* ===============================
   SIMPLE LEFT CONTENT (CLEAN)
   =============================== */

   .cth-copy h3{
  font-size:18px;
  margin-bottom:14px;
}

.cth-simple-block{
  margin-top:14px;
  padding-left:16px;
  border-left:2px solid rgba(198,154,75,.45);
}

.cth-simple-block strong{
  display:block;
  font-size:14px;
  font-weight:900;
  color:#111;
  margin-bottom:4px;
}

.cth-simple-block span{
  display:block;
  font-size:14px;
  color:rgba(0,0,0,.62);
  line-height:1.8;
}

.cth-simple-note{
  margin-top:18px;
  padding:14px 16px;
  background:rgba(0,0,0,.03);
  border-radius:14px;
  font-size:13.5px;
  color:rgba(0,0,0,.65);
  line-height:1.8;
}