/* ==========================================================================
   CONTACT PAGE  —  ct- prefix
   Meteora Constructions · meteoraconstructions.com.au
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800;900&family=Archivo+Black&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- Design Tokens --- */
body.ct-page {
  --ct-bg: #0C0C0C;
  --ct-bg2: #14110c;
  --ct-bg3: #1a1610;
  --ct-bg4: #211c14;
  --ct-gold: #C9A227;
  --ct-gold-lite: #E5C151;
  --ct-gold-deep: #8A6E1A;
  --ct-bone: #EDE7D6;
  --ct-fog: #D7CFB8;
  --ct-muted: #8E8480;
  --ct-line: rgba(237, 231, 214, 0.12);
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  background: var(--ct-bg2);
  color: var(--ct-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Hide old footer from styles.css */
body.ct-page .site-footer { display: none; }


/* ============================================
   1. REUSABLES
   ============================================ */

.ct-gold-text {
  background: linear-gradient(180deg, #6b5a2a 0%, #E5C151 55%, #fff1c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ct-font-display {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
}

.ct-font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.ct-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ct-gold);
  display: block;
  margin-bottom: 16px;
}

.ct-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .ct-container { padding: 0 40px; }
}

/* Scroll reveal */
.ct-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25,0.1,0.25,1),
              transform 0.7s cubic-bezier(0.25,0.1,0.25,1);
}
.ct-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ct-fade[data-delay="1"] { transition-delay: 0.05s; }
.ct-fade[data-delay="2"] { transition-delay: 0.1s; }
.ct-fade[data-delay="3"] { transition-delay: 0.15s; }
.ct-fade[data-delay="4"] { transition-delay: 0.2s; }
.ct-fade[data-delay="5"] { transition-delay: 0.25s; }
.ct-fade[data-delay="6"] { transition-delay: 0.3s; }

/* Blueprint background */
.ct-blueprint-bg {
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Section heading */
.ct-heading-xl {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

/* Section description */
.ct-section-desc {
  margin-top: 24px;
  color: rgba(215, 207, 184, 0.7);
  line-height: 1.65;
  font-size: 1.05rem;
  max-width: 560px;
}

/* Gold button */
.ct-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(123deg, #2a1a02 7%, #8A6E1A 37%, #C9A227 72%, #f0c54a 100%);
  box-shadow:
    0px 4px 16px rgba(201, 162, 39, 0.25),
    4px 4px 14px rgba(201, 162, 39, 0.35) inset,
    0 0 0 2px rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  outline: 2px solid rgba(255, 241, 196, 0);
  outline-offset: -3px;
  transition: outline-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ct-btn-gold:hover {
  outline-color: rgba(255, 241, 196, 0.6);
  transform: translateY(-1px);
}
.ct-btn-gold__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #fff1c4;
  box-shadow: 0 0 10px #f0c54a;
}

@media (min-width: 640px) {
  .ct-btn-gold { padding: 14px 40px; font-size: 14px; }
}
@media (min-width: 768px) {
  .ct-btn-gold { padding: 16px 48px; font-size: 15px; }
}

/* Side card */
.ct-side-card {
  background: linear-gradient(160deg, #1f1a13 0%, #14110c 100%);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.ct-side-card:hover { border-color: rgba(201,162,39,0.55); }

/* Ambient orb */
.ct-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}


/* ============================================
   3. HERO
   ============================================ */

.ct-hero {
  position: relative;
  overflow: hidden;
  padding-top: 135px;
  background: linear-gradient(180deg, var(--ct-bg2) 0%, var(--ct-bg3) 100%);
}
@media (min-width: 768px) {
  .ct-hero { padding-top: 120px; }
}

.ct-hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Breadcrumb */
.ct-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 40px 0 0;
}
@media (min-width: 768px) {
  .ct-breadcrumb { padding-top: 56px; }
}
.ct-breadcrumb a {
  color: var(--ct-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.ct-breadcrumb a:hover { color: var(--ct-gold); }
.ct-breadcrumb__sep { color: rgba(201, 162, 39, 0.6); }
.ct-breadcrumb__current { color: var(--ct-bone); }

/* Hero grid (2 columns: left headline + right form) */
.ct-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .ct-hero__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    padding: 56px 0 112px;
    align-items: start;
  }
}

/* Pull the form card up to align with the breadcrumb/top of left column */
@media (min-width: 1024px) {
  .ct-hero__grid > :last-child {
    margin-top: -56px;
  }
}

/* Hero heading */
.ct-hero__heading {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
}

.ct-hero__desc {
  margin-top: 32px;
  max-width: 480px;
  color: rgba(215, 207, 184, 0.8);
  line-height: 1.65;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

/* 3-step process */
.ct-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.ct-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ct-step__num {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,39,0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ct-gold-lite);
  font-weight: 600;
  background: rgba(201,162,39,0.06);
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-step__title {
  color: var(--ct-bone);
  font-weight: 700;
  font-size: 1.25rem;
}

.ct-step__body {
  color: rgba(215,207,184,0.6);
  font-size: 1.1rem;
  margin-top: 4px;
  line-height: 1.55;
}

/* Quick contact pill */
.ct-call-pill {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,39,0.3);
  background: rgba(201,162,39,0.06);
  text-decoration: none;
}

.ct-call-pill__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #C9A227, #8A6E1A);
}
.ct-call-pill__icon svg { stroke: #14110c; }

.ct-call-pill__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-call-pill__number {
  color: var(--ct-bone);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.25s;
}
.ct-call-pill:hover .ct-call-pill__number { color: var(--ct-gold); }


/* ============================================
   4. FORM CARD (Light cream)
   ============================================ */

.ct-form-card {
  background: linear-gradient(170deg, #F6F1E1 0%, #EDE7D6 60%, #E4DCC4 100%);
  border: 1px solid rgba(201,162,39,0.5);
  border-radius: 32px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    0 0 60px rgba(201,162,39,0.10),
    0 0 0 1px rgba(255, 241, 196, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  color: #1c1812;
  padding: 24px;
}
@media (min-width: 640px) {
  .ct-form-card { padding: 32px; }
}
@media (min-width: 768px) {
  .ct-form-card { padding: 40px; }
}

.ct-form-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(201,162,39,0.18) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(138,110,26,0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Form header bar */
.ct-form-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(28,24,18,0.10);
}

.ct-form-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2F7A36;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ct-form-status__dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: #2F7A36;
  box-shadow: 0 0 6px #2F7A36;
}

.ct-form-title {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1c1812;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.ct-form-response {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: right;
  color: rgba(28,24,18,0.55);
}

.ct-form-response__time {
  font-size: 14px;
  margin-top: 4px;
  color: var(--ct-gold-deep);
}

/* Form fields */
.ct-form { position: relative; }

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .ct-form-row { grid-template-columns: 1fr 1fr; }
}

.ct-field-group {
  position: relative;
  margin-bottom: 20px;
}
.ct-form-row .ct-field-group { margin-bottom: 0; }

.ct-field-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ct-gold-deep);
  margin-bottom: 10px;
  font-weight: 700;
}

.ct-field-label__req {
  color: rgba(28,24,18,0.45);
  font-size: 10px;
  font-weight: 600;
}

.ct-field-label__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(28,24,18,0.55);
  border: 1px solid rgba(28,24,18,0.22);
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
  font-weight: 700;
}

.ct-input,
.ct-textarea,
.ct-select {
  width: 100%;
  background: #FFFDF6;
  border: 1px solid rgba(28,24,18,0.14);
  border-radius: 14px;
  color: #1c1812;
  font-size: 15px;
  line-height: 1.4;
  padding: 13px 16px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  font-family: 'Archivo', sans-serif;
}

.ct-input:focus,
.ct-textarea:focus,
.ct-select:focus {
  outline: none;
  border-color: #C9A227;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.18);
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: rgba(28,24,18,0.38);
}

.ct-textarea {
  resize: vertical;
  min-height: 110px;
}

.ct-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8A6E1A 50%),
    linear-gradient(135deg, #8A6E1A 50%, transparent 50%);
  background-position: calc(100% - 20px) 19px, calc(100% - 14px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  background-color: #FFFDF6;
}
.ct-select option { background: #FFFDF6; color: #1c1812; }

/* Textarea counter */
.ct-textarea-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28,24,18,0.50);
}

/* Service chips */
.ct-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(138,110,26,0.35);
  border-radius: 999px;
  background: rgba(255,253,246,0.7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #6B5417;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  user-select: none;
}
.ct-chip:hover { background: #FFFDF6; border-color: rgba(138,110,26,0.7); }
.ct-chip.is-active {
  background: linear-gradient(123deg, #2a1a02 7%, #8A6E1A 37%, #C9A227 72%, #f0c54a 100%);
  color: #ffffff;
  border-color: #f0c54a;
  box-shadow: 0 6px 18px rgba(201,162,39,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ct-chip__dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: #8A6E1A;
}
.ct-chip.is-active .ct-chip__dot { background: #fff1c4; box-shadow: 0 0 8px #fff1c4; }
.ct-chip__check {
  display: none;
}
.ct-chip.is-active .ct-chip__check { display: inline; }
.ct-chip.is-active .ct-chip__dot { display: none; }

/* File hint */
.ct-file-hint {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(138,110,26,0.30);
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .ct-file-hint { grid-template-columns: 1fr auto; }
}

.ct-file-hint__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ct-file-hint__title {
  font-size: 14px;
  font-weight: 600;
  color: #1c1812;
}

.ct-file-hint__text {
  font-size: 13px;
  margin-top: 4px;
  color: rgba(28,24,18,0.65);
  line-height: 1.5;
}

.ct-file-hint__text a {
  color: var(--ct-gold-deep);
  font-weight: 600;
  text-decoration: none;
}
.ct-file-hint__text a:hover { text-decoration: underline; }

/* Form footer */
.ct-form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
@media (min-width: 640px) {
  .ct-form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ct-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(28,24,18,0.55);
  max-width: 340px;
}
.ct-privacy-note svg { flex-shrink: 0; margin-top: 2px; }

/* Success overlay */
.ct-form-success {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(170deg, #F6F1E1 0%, #EDE7D6 60%, #E4DCC4 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  color: #1c1812;
}
.ct-form-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.ct-form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(201,162,39,0.18);
  border: 2px solid var(--ct-gold-deep);
}

.ct-form-success__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ct-gold-deep);
  margin-bottom: 12px;
}

.ct-form-success__heading {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  background: linear-gradient(180deg, #6b5a2a 0%, #8A6E1A 55%, #2a1a02 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-form-success__text {
  max-width: 400px;
  line-height: 1.65;
  color: rgba(28,24,18,0.70);
  margin-bottom: 32px;
}
.ct-form-success__text a {
  font-weight: 600;
  color: var(--ct-gold-deep);
  text-decoration: none;
}

.ct-form-success__reset {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(28,24,18,0.65);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
}
.ct-form-success__reset:hover { color: var(--ct-gold-deep); }


/* ============================================
   5. VALUE STRIP (Scrolling marquee)
   ============================================ */

.ct-strip {
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(215,207,184,0.10);
  border-bottom: 1px solid rgba(215,207,184,0.10);
  background: #100d08;
}

.ct-strip__track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: ct-strip-scroll 70s linear infinite;
  width: max-content;
}

.ct-strip__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.ct-strip__diamond {
  width: 8px; height: 8px;
  background: var(--ct-gold);
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ct-strip__text {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ct-bone);
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  white-space: nowrap;
}

@keyframes ct-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ct-strip__track { animation: none; }
}


/* ============================================
   6. SECTION: OTHER WAYS
   ============================================ */

.ct-section {
  padding: 96px 0;
}
@media (min-width: 768px) {
  .ct-section { padding: 128px 0; }
}

.ct-section__header {
  margin-bottom: 56px;
  max-width: 960px;
}

/* Channel cards grid */
.ct-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .ct-channels { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

.ct-channel-card {
  display: block;
  padding: 28px;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .ct-channel-card { padding: 32px; }
}

.ct-channel-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ct-channel-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.4);
  display: grid;
  place-items: center;
  color: var(--ct-gold);
}

.ct-channel-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-channel-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-gold);
  margin-bottom: 12px;
}

.ct-channel-card__title {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ct-bone);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  margin-bottom: 16px;
  word-break: break-word;
}

.ct-channel-card__desc {
  color: rgba(215,207,184,0.65);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.ct-channel-card__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ct-gold);
  transition: gap 0.3s;
}
.ct-channel-card:hover .ct-channel-card__cta { gap: 20px; }


/* ============================================
   7. SERVICE AREAS
   ============================================ */

.ct-areas {
  position: relative;
}

.ct-areas__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
}

.ct-areas__aside {
  max-width: 480px;
  color: rgba(215,207,184,0.7);
  line-height: 1.65;
  border-left: 2px solid rgba(201,162,39,0.6);
  padding-left: 20px;
}

.ct-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
}
@media (min-width: 640px) {
  .ct-areas-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (min-width: 1024px) {
  .ct-areas-grid { grid-template-columns: repeat(4, 1fr); }
}

.ct-area-card {
  padding: 24px;
}

.ct-area-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ct-area-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-area-card__name {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ct-bone);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  margin-bottom: 8px;
}

.ct-area-card__note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(215,207,184,0.55);
}


/* ============================================
   8. HOURS & DETAILS
   ============================================ */

.ct-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .ct-details-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.ct-hours-card {
  padding: 28px;
}
@media (min-width: 768px) {
  .ct-hours-card { padding: 36px; }
}

.ct-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.ct-hours-row__day {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: rgba(215,207,184,0.7);
}
.ct-hours-row--active .ct-hours-row__day { color: var(--ct-bone); }

.ct-hours-row__dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: #7BC97F;
  box-shadow: 0 0 8px #7BC97F;
}

.ct-hours-row__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.10em;
  color: rgba(215,207,184,0.55);
}
.ct-hours-row--active .ct-hours-row__time { color: var(--ct-gold); }

.ct-hours-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(215,207,184,0.10);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ct-hours-footer__title {
  color: var(--ct-bone);
  font-weight: 600;
  margin-bottom: 4px;
}

.ct-hours-footer__text {
  color: rgba(215,207,184,0.65);
  font-size: 14px;
  line-height: 1.55;
}

/* Promises card */
.ct-promises-card {
  padding: 28px;
}
@media (min-width: 768px) {
  .ct-promises-card { padding: 36px; }
}

.ct-promises-desc {
  color: rgba(215,207,184,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
}

.ct-promises-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-promise-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ct-promise-row__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.5);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(201,162,39,0.10);
}

.ct-promise-row__text {
  color: rgba(215,207,184,0.8);
  line-height: 1.55;
  font-size: 15px;
}


/* ============================================
   9. FAQ
   ============================================ */

.ct-faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .ct-faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
  }
}

.ct-faq-desc {
  color: rgba(215,207,184,0.65);
  line-height: 1.65;
  margin-top: 24px;
}

.ct-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-faq-item {
  overflow: hidden;
}

.ct-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.ct-faq-item__left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ct-faq-item__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.ct-faq-item__q {
  color: var(--ct-bone);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .ct-faq-item__q { font-size: 16px; }
}

.ct-faq-item__toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.4);
  display: grid;
  place-items: center;
  color: var(--ct-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s, color 0.25s;
}

.ct-faq-item.is-open .ct-faq-item__toggle {
  transform: rotate(45deg);
  background: var(--ct-gold);
  color: #14110c;
}

.ct-faq-item__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.ct-faq-item.is-open .ct-faq-item__answer {
  max-height: 400px;
  opacity: 1;
}

.ct-faq-item__answer-inner {
  padding: 0 28px 28px;
  padding-left: 68px;
  color: rgba(215,207,184,0.7);
  line-height: 1.65;
  font-size: 14px;
}
@media (min-width: 768px) {
  .ct-faq-item__answer-inner { font-size: 15px; }
}


/* ============================================
   10. FOOTER (Dark, matches site pattern)
   ============================================ */

.ct-footer {
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 50;
  padding: 80px 24px;
  background: linear-gradient(180deg, #1a1610 0%, #14110c 100%);
}
@media (min-width: 640px) {
  .ct-footer { border-radius: 50px 50px 0 0; }
}
@media (min-width: 768px) {
  .ct-footer {
    border-radius: 60px 60px 0 0;
    padding: 96px 40px;
  }
}

.ct-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ct-footer__grid {
  border-top: 1px solid rgba(215,207,184,0.15);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .ct-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .ct-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
}

/* Logo pill in footer */
.ct-footer .ct-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #EDE7D6;
  border: 1px solid rgba(201,162,39,0.4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,241,196,0.05);
  margin-bottom: 16px;
}
.ct-footer .ct-logo-pill img {
  height: 56px;
  width: auto;
  display: block;
}

.ct-footer__brand-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-footer__brand-abn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
  margin-top: 4px;
}

.ct-footer__brand-tagline {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ct-gold);
}

.ct-footer__col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-gold);
  margin-bottom: 16px;
}

.ct-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-footer__col li {
  color: rgba(215,207,184,0.65);
  font-size: 14px;
}

.ct-footer__col a {
  color: rgba(215,207,184,0.65);
  text-decoration: none;
  transition: color 0.25s;
}
.ct-footer__col a:hover { color: var(--ct-gold); }

.ct-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(215,207,184,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ct-footer__legal a {
  color: var(--ct-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.ct-footer__legal a:hover { color: var(--ct-gold); }


/* ============================================
   11. STICKY MOBILE CALL BUTTON FIX
   ============================================ */

body.ct-page .sticky-call-btn {
  background: linear-gradient(123deg, #2a1a02 7%, #8A6E1A 37%, #C9A227 72%, #f0c54a 100%);
  color: #fff;
}
