/* ============================================================
   818 Business Solutions — Contact Us
   Page-specific styles. Loads after 818-home.css + 818-interior.css,
   which already provide: design tokens, .eyebrow, .glass-cta, the nav /
   footer / mnav chrome, the eclipse cursor, the shared keyframes
   (navDrop / heroRise / ctaIn) and every @media (max-width: 980px)
   override for .hero-main / .hero-shift / .hero-h1 / .nav-* / .footer-*.

   Everything here is namespaced `c-` on purpose: 818-interior.css already
   owns .contact-grid / .contact-card / .map-frame from the old interior
   page, and those rules would fight this layout.
   ============================================================ */

/* ---- Nav overlaid on the video hero (opt-in via $nav_overlay) ---- */
.top-nav--overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  animation: navDrop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---- Gold gradient ring on the glass CTA ---- */
.glass-cta-ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  padding: 1.4px;
  background: linear-gradient(
    rgba(198,168,119,0.95) 0%, rgba(198,168,119,0.4) 22%,
    rgba(198,168,119,0.1) 45%, rgba(198,168,119,0.1) 60%,
    rgba(198,168,119,0.4) 80%, rgba(198,168,119,0.95) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ============================== HERO ============================== */
.c-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b1320;
  padding: 84px 24px 0;
  box-sizing: border-box;
}
.c-hero .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.c-hero-scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,19,32,0.42) 0%, rgba(11,19,32,0.18) 38%, rgba(11,19,32,0.62) 100%);
}
.c-hero-inner {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  max-width: 960px;
  text-align: center;
}
.c-hero-eyebrow {
  margin: 0 0 28px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C4A671;
  animation: heroRise 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.c-hero-h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f1 55%, rgba(247,243,236,0.72) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-wrap: balance;
  animation: heroRise 1s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.c-hero-lead {
  margin: 0 0 44px;
  max-width: 540px;
  font-size: 16px; line-height: 1.62;
  color: rgba(235,231,216,0.7);
  text-wrap: pretty;
  animation: heroRise 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.c-hero-ctas {
  min-height: 54px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: heroRise 0.9s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
.c-hero-explore {
  margin-top: 36px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(247,243,236,0.66);
  text-decoration: none;
  transition: color 0.3s;
  animation: heroRise 0.9s cubic-bezier(0.22,1,0.36,1) 0.7s both;
}
.c-hero-explore:hover { color: var(--gold-400, #C6A877); }

/* ---- the two CTA flavours: plain glass, and gold-tinted ---- */
.c-cta-email,
.c-cta-wa {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  border: none; border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.c-cta-email {
  padding: 15px 42px;
  color: rgba(247,243,236,0.92);
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
}
.c-cta-email:hover {
  color: rgba(247,243,236,0.92);
  background-color: rgba(198,168,119,0.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 24px rgba(198,168,119,0.2);
}
.c-cta-wa {
  padding: 15px 32px;
  color: rgba(247,243,236,0.95);
  background: rgba(198,168,119,0.2);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.16);
}
.c-cta-wa:hover {
  color: rgba(247,243,236,0.95);
  background-color: rgba(198,168,119,0.3);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.16), 0 0 24px rgba(198,168,119,0.28);
}
.c-cta-email:active,
.c-cta-wa:active { transform: translateY(1px); }
.c-cta-wa--block { justify-content: center; gap: 12px; }

/* ============================ SHARED SECTION ============================ */
.c-section {
  position: relative;
  padding: 150px 6vw 120px;
  background: #05080F;
  border-top: 1px solid rgba(235,231,216,0.08);
  overflow: hidden;
}
.c-inner { position: relative; max-width: 1240px; margin: 0 auto; }
.c-inner--rel { z-index: 2; }
.c-ghost {
  position: absolute; top: 30px; left: -1vw;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(140px, 20vw, 300px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(235,231,216,0.05);
  user-select: none; pointer-events: none;
  white-space: nowrap;
}
.c-head { margin-bottom: 56px; }
.c-h2 {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.14;
  color: #EBE7D8;
  max-width: 620px;
  text-wrap: balance;
}
.c-h2--sm { font-size: clamp(30px, 3vw, 42px); line-height: 1.15; margin-bottom: 24px; }

/* ============================== REACH US ============================== */
.c-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.c-col { display: flex; flex-direction: column; gap: 36px; }
.c-lead {
  margin: 0;
  max-width: 420px;
  font-size: 16px; line-height: 1.62;
  color: rgba(235,231,216,0.6);
  text-wrap: pretty;
}

/* ---- the four contact rows ---- */
.c-rows { border-top: 1px solid rgba(235,231,216,0.1); }
.c-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(235,231,216,0.07);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.c-row:hover { transform: translateX(6px); }
.c-row-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(198,168,119,0.35);
  border-radius: 8px;
  color: #C6A877;
}
.c-row-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.c-row-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(235,231,216,0.4);
}
.c-row-value {
  font-size: 15px; line-height: 1.55;
  color: rgba(235,231,216,0.78);
  overflow-wrap: anywhere;
}
.c-row:hover .c-row-value { color: #EBE7D8; }

/* ---- working hours ---- */
.c-hours {
  background: #0E1929;
  border: 1px solid rgba(235,231,216,0.1);
  border-radius: 8px;
  padding: 28px 30px;
}
.c-hours-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  color: #C6A877;
}
.c-hours-title {
  margin: 0;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C6A877;
}
.c-hours-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(235,231,216,0.08);
}
.c-hours-days { font-size: 14px; color: rgba(235,231,216,0.66); }
.c-hours-time { font-size: 14px; font-weight: 600; }
.c-hours-time--open   { color: #EBE7D8; }
.c-hours-time--closed { color: rgb(98,109,118); }

/* ============================== FORM ============================== */
.c-form {
  background: #0E1929;
  border: 1px solid rgba(235,231,216,0.1);
  border-top: 2px solid #C6A877;
  border-radius: 8px;
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 22px;
  box-sizing: border-box;
}
.c-form-title {
  margin: 0 0 4px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 27px; line-height: 1.2;
  color: #EBE7D8;
}
.c-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.c-field { display: flex; flex-direction: column; gap: 8px; }
.c-field-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(235,231,216,0.5);
}
.c-input {
  background: rgba(5,8,15,0.55);
  border: 1px solid rgba(235,231,216,0.14);
  border-radius: 8px;
  padding: 14px 16px;
  color: #EBE7D8;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.c-input:focus {
  border-color: rgba(198,168,119,0.7);
  box-shadow: 0 0 0 3px rgba(198,168,119,0.12);
}
.c-input::placeholder { color: rgba(235,231,216,0.32); }
.c-textarea { line-height: 1.6; resize: vertical; min-height: 130px; }

/* The comp strips the native select chrome; give it an arrow back so it
   still reads as a dropdown. */
.c-select {
  appearance: none; -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("../img/select-chevron.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px 14px;
}
.c-select option { background: #0E1929; color: #EBE7D8; }

.c-form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-top: 6px;
}
.c-form-note {
  margin: 0;
  max-width: 280px;
  font-size: 13px; line-height: 1.5;
  color: rgb(98,109,118);
}
.c-submit {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ivory-200, #EBE7D8);
  background: rgba(255,255,255,0.05);
  border: none; border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.c-submit:hover {
  background-color: rgba(198,168,119,0.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 20px rgba(198,168,119,0.22);
}
.c-submit:active { transform: translateY(1px); }

/* ============================== MAP ============================== */
.c-map {
  margin-top: 64px;
  background: #0E1929;
  border: 1px solid rgba(235,231,216,0.1);
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}
.c-map-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 14px 20px 20px;
}
.c-map-addr { display: flex; align-items: center; gap: 12px; color: #C6A877; }
.c-map-addr p { margin: 0; font-size: 14px; color: rgba(235,231,216,0.72); }
.c-map-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: #C6A877;
  text-decoration: none;
  transition: color 0.3s;
}
.c-map-link:hover { color: #d4b98d; }
.c-map-frame {
  display: block;
  width: 100%; height: 440px;
  border: none;
  border-radius: 6px;
  /* Blend Google's light map into the navy palette. */
  filter: invert(0.92) hue-rotate(184deg) saturate(0.5) brightness(0.94) contrast(0.94);
}

/* ============================== FAQ ============================== */
.c-faq {
  padding: 130px 6vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-faq-scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,8,15,0.86) 0%, rgba(5,8,15,0.7) 45%, rgba(5,8,15,0.9) 100%);
}
.c-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.c-faq-note {
  margin: 0;
  max-width: 380px;
  font-size: 15px; line-height: 1.6;
  color: rgba(235,231,216,0.5);
  text-wrap: pretty;
}
.c-faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(235,231,216,0.12);
}
.c-faq-item { border-bottom: 1px solid rgba(235,231,216,0.12); }
.c-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 21px; line-height: 1.3;
  color: #EBE7D8;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.c-faq-q::-webkit-details-marker { display: none; }
.c-faq-q:hover { color: #C6A877; }
.c-faq-chev { flex-shrink: 0; transition: transform 0.3s; }
.c-faq-item[open] > .c-faq-q { color: #C6A877; }
.c-faq-item[open] .c-faq-chev { transform: rotate(45deg); }
.c-faq-a {
  margin: 0;
  padding: 0 40px 26px 4px;
  max-width: 560px;
  font-size: 15px; line-height: 1.65;
  color: rgba(235,231,216,0.6);
  text-wrap: pretty;
}

/* ============================== MOBILE ============================== */
@media (max-width: 980px) {
  .c-hero { height: 100svh; min-height: 620px; padding: 96px 24px 0; }
  .c-hero-ctas { flex-direction: column; align-items: stretch; width: min(340px, 100%); }
  .c-hero-ctas > .glass-cta { justify-content: center; text-align: center; }

  #reach { padding: 96px 24px !important; }
  #faq   { padding: 96px 24px !important; }

  .c-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .c-form-2col { grid-template-columns: 1fr !important; }
  .c-form { padding: 34px 26px !important; }
  .c-form-foot { justify-content: flex-start; }
  .c-form-note { max-width: 100%; }

  .c-map { margin-top: 48px !important; }
  .c-map-frame { height: 320px !important; }

  .c-faq-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .c-faq-q { font-size: 19px !important; }

  .c-ghost { font-size: 84px !important; }
}
