*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #f8f5ef;
  --white: #ffffff;
  --ink: #111810;
  --ink2: rgba(17, 24, 16, 0.55);
  --ink3: rgba(17, 24, 16, 0.32);
  --forest: #0e2b12;
  --forest2: #0f1ddb;
  --gold2: #d4a745;
  --goldfade: rgba(184, 137, 42, 0.11);
  --goldborder: rgba(184, 137, 42, 0.22);
  --cream: #cc9c17;
  --red: #c0392b;
  --green-ok: #1a7a2e;
  --r: 12px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-alt);
  color: var(--ink);
  overflow-x: hidden;
}

/* SECTION */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 7%;
  background:
    radial-gradient(circle at top left,
      rgba(38, 56, 217, 0.08),
      transparent 35%),
    var(--bg);
}

/* GLOW */

.contact-glow {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(38, 56, 217, 0.08);
  filter: blur(80px);
  z-index: 0;
}

/* BREADCRUMB */

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

.breadcrumb i {
  font-style: normal;
  opacity: .6;
}

/* CONTENT */

.ch-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 60px;
}

/* EYEBROW */

.ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 26px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

/* HEADING */

.ch-inner h1 {
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 800;
}

.ch-inner h1 em {
  color: var(--primary);
  font-style: normal;
}

/* TEXT */

.ch-inner p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 34px;
}

/* RESPONSE BADGE */

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(38, 56, 217, 0.18);
}

/* CHANNEL ROW */

.channel-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CHANNEL CARD */

.channel-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-decoration: none;
  transition: .35s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.channel-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(38, 56, 217, 0.05),
      transparent);
  opacity: 0;
  transition: .35s ease;
}

.channel-pill:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 56, 217, 0.2);
  box-shadow: 0 20px 50px rgba(38, 56, 217, 0.08);
}

.channel-pill:hover::before {
  opacity: 1;
}

/* ICON */

.cp-icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  font-size: 28px;
}

/* LABEL */

.cp-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* VALUE */

.cp-val {
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .channel-row {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .contact-hero {
    padding: 100px 6%;
  }

  .ch-inner h1 {
    font-size: 46px;
    line-height: 1.12;
  }

  .ch-inner p {
    font-size: 16px;
  }

  .channel-row {
    grid-template-columns: 1fr;
  }

  .channel-pill {
    padding: 22px;
  }

}

/* ── MAIN CONTACT BODY ── */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  padding: 72px 56px;
  align-items: start;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 48px rgba(17, 24, 16, .09);
  border: 1px solid rgba(17, 24, 16, .05);
  position: sticky;
  top: 88px;
}

.form-card-header {
  margin-bottom: 36px
}

.form-card-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 6px;
  line-height: 1.15
}

.form-card-header p {
  font-size: .84rem;
  color: var(--ink2);
  line-height: 1.6
}

/* Intent selector */
.intent-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.intent-opt {
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid rgba(17, 24, 16, .08);
  background: var(--bg);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink2);
}

.intent-opt:hover {
  border-color: var(--sec-color);
  color: var(--ink)
}

.intent-opt.selected {
  border-color: var(--sec-color);
  background: var(--goldfade);
  color: var(--ink)
}

.intent-opt .io-icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 4px
}

/* Form fields */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.fg {
  margin-bottom: 14px;
  position: relative
}

.fg label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin-bottom: 7px
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid rgba(17, 24, 16, .1);
  border-radius: 9px;
  padding: 12px 16px;
  font-family: 'Epilogue', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--sec-color);
  box-shadow: 0 0 0 3px rgba(184, 137, 42, .1);
}

.fg input.error,
.fg select.error {
  border-color: var(--red)
}

.field-err {
  font-size: .72rem;
  color: var(--red);
  margin-top: 5px;
  display: none
}

.fg textarea {
  resize: vertical;
  min-height: 100px
}

/* Priority toggle */
.priority-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px
}

.pr-opt {
  flex: 1;
  padding: 10px 8px;
  border-radius: 8px;
  border: 1.5px solid rgba(17, 24, 16, .1);
  background: var(--bg);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink2);
  text-align: center;
  transition: all .2s;
  font-family: 'Epilogue', sans-serif
}

.pr-opt:hover {
  border-color: var(--sec-color)
}

.pr-opt.sel-low {
  border-color: #4a9e5c;
  background: rgba(74, 158, 92, .08);
  color: #4a9e5c
}

.pr-opt.sel-med {
  border-color: var(--sec-color);
  background: var(--goldfade);
  color: var(--sec-color)
}

.pr-opt.sel-high {
  border-color: var(--red);
  background: rgba(192, 57, 43, .07);
  color: var(--red)
}

/* Submit */
.submit-btn {
  width: 100%;
  background: var(--pri-color);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Epilogue', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: var(--pri-color-dark);
  transform: translateY(-1px)
}

.submit-btn::after {
  content: '→';
  margin-left: 8px
}

.form-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .74rem;
  color: var(--ink3);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(26, 122, 46, .1);
  border: 2px solid rgba(26, 122, 46, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 8px
}

.form-success p {
  font-size: .85rem;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 20px
}

.success-eta {
  background: var(--goldfade);
  border: 1px solid var(--goldborder);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: .8rem;
  color: var(--ink);
  font-weight: 600
}

/* ── SIDEBAR ── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px
}

/* Why contact card */
.why-card {
  background: var(--pri-color);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 42, .12) 0%, transparent 65%)
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 18px
}

.wc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px
}

.wc-list li {
  font-weight: bolder;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .83rem;
  color: var(--bg-alt);
  line-height: 1.55
}

.wc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid rgba(184, 137, 42, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri-color);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 1px
}

.wc-num {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.wc-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1
}

.wc-label {
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5
}

/* Info card */
.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(17, 24, 16, .06);
  box-shadow: 0 4px 24px rgba(17, 24, 16, .06);
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 20px
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px
}

.info-row:last-of-type {
  margin-bottom: 0
}

.ir-icon {
  width: 40px;
  height: 40px;
  background: var(--goldfade);
  border: 1px solid var(--goldborder);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.ir-label {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink3);
  margin-bottom: 2px;
  font-weight: 700
}

.ir-val {
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink)
}

.ir-val a {
  color: var(--ink);
  text-decoration: none
}

.ir-val a:hover {
  color: var(--sec-color)
}

/* Hours card */
.hours-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(17, 24, 16, .06);
}

.hours-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 16px
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 24, 16, .06);
  font-size: .82rem
}

.hours-row:last-of-type {
  border-bottom: none
}

.hours-row .day {
  color: var(--ink2);
  font-weight: 500
}

.hours-row .time {
  font-weight: 700;
  color: var(--ink)
}

.hours-row .closed {
  color: var(--ink3)
}

.open-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 122, 46, .1);
  color: var(--green-ok);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 14px;
  letter-spacing: .05em
}

.open-now::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-ok);
  border-radius: 50%;
  animation: pulse 2s infinite
}

/* Social card */
.social-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(17, 24, 16, .06);
}

.social-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 16px
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.soc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(17, 24, 16, .09);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  transition: all .2s;
}

.soc-link:hover {
  border-color: var(--sec-color);
  color: var(--ink);
  background: var(--goldfade)
}

/* ── FAQ ── */
.faq-section {
  padding: 72px 56px;
  background: var(--cream)
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(17, 24, 16, .06);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  transition: background .2s;
  gap: 12px;
}

.faq-q:hover {
  background: rgba(17, 24, 16, .02)
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--goldfade);
  border: 1px solid var(--goldborder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sec-color);
  font-size: .7rem;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--sec-color);
  color: var(--forest);
  border-color: var(--sec-color)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .84rem;
  color: var(--ink2);
  line-height: 1.75;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--pri-color-deep);
  padding: 88px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 42, .1) 0%, transparent 65%)
}

.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px
}

.final-cta p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75
}

.final-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.btn-gold-lg {
  background: var(--white);
  color: var(--pri-color);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all .25s
}

.btn-gold-lg:hover {
  background: var(--pri-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184, 137, 42, .35)
}

.quick-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.ql {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.ql:hover {
  border-color: rgba(255, 255, 255, .4);
  color: #fff
}



/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.on {
  opacity: 1;
  transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .contact-body {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .form-card {
    position: static
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  nav,
  .topbar,
  .contact-hero,
  .contact-body,
  .faq-section,
  .final-cta,
  footer {
    padding-left: 32px;
    padding-right: 32px
  }

  .channel-row {
    flex-wrap: wrap
  }

  .channel-pill {
    min-width: 50%
  }
}

@media(max-width:720px) {
  nav {
    padding: 0 20px
  }

  .nav-links {
    display: none
  }

  .topbar {
    display: none
  }

  .contact-hero,
  .contact-body,
  .faq-section,
  .final-cta,
  footer {
    padding-left: 20px;
    padding-right: 20px
  }

  .channel-pill {
    min-width: 100%
  }

  .form-card {
    padding: 28px 22px
  }

  .f-row,
  .intent-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}
