* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button,
input,
textarea,
select {
  font-family: inherit;
}
button {
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
}

/* SECTIONS PARENT CLASS */
.section {
  position: relative;
  width: 100%;
}
.section--pad {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section--pad {
    padding: 50px 0;
  }
}

@media (max-width: 414px) {
  .section--pad {
    padding: 40px 0;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
  width: 100%;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
}
.btn--gold {
  background: #C6A25A;
  color: #0B2341;
}
.btn--gold:hover {
  background: #d4b06e;
  box-shadow: 0 10px 24px rgba(198, 162, 90, .35);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: #C6A25A;
  border-color: #C6A25A;
}
.btn--outline-gold:hover {
  background: #C6A25A;
  color: #0B2341;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  width: 100%;
}
.btn--outline-white:hover {
  background: #fff;
  color: #0B2341;
  border-color: #fff;
}

/* HERO */
.contact-hero {
  background:
    radial-gradient(ellipse at 6% 30%, rgba(198, 162, 90, .10), transparent 55%),
    radial-gradient(ellipse at 94% 20%, rgba(198, 162, 90, .10), transparent 55%),
    #FAF9F6;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 50px;
}
.eyebrow-plain {
  font-size: 13px;
  font-weight: 700;
  letter-spacing:.10em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom: 16px;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.25;
  color: #0B2341;
  margin-bottom: 20px;
}
.contact-hero h1 .accent {
  color: #C6A25A;
}
.contact-hero p {
  color: #6B7280;
  font-size:17px;
  max-width:750px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 414px) {
  .contact-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* FORM + CONTACT INFO */
.form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.form-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding:21px 44px;
}
.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size:32px;
  color: #0B2341;
  margin-bottom: 8px;
}
.form-card>p {
  color: #6B7280;
  font-size:17px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap:5px;
  padding-top:15px;
}
.form-field label {
  font-size:17px;
  font-weight: 700;
  color: #0B2341;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #E6E8EB;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: #2B2F33;
  background: #FAF9F6;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #C6A25A;
  box-shadow: 0 0 0 3px rgba(198, 162, 90, .15);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-field.full {
  grid-column: 1 / -1;
}




.form-consent {
  text-align: center;
  font-size:10pt;
  color: #6B7280;
  margin-top: 14px;
}
.form-consent strong {
  color: #0B2341;
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: auto;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 30px 24px;
  }
}

/* CONTACT INFO CARD */
.info-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size:32px;
  color: #0B2341;
  margin-bottom: 22px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width:50px;
  height:50px;
  border-radius: 50%;
  background: #F5F0E8;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width:28px;
  height:28px;
}
.info-item strong {
  display: block;
  font-size:17px;
  color: #0B2341;
  margin-bottom: 3px;
}
.info-item span {
  font-size:17px;
  color: #6B7280;
}
.demo-subcard {
  background: #0B2341;
  border-radius: 14px;
  padding: 26px 28px;
  margin-top: auto;
}
.demo-subcard-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.demo-subcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(198, 162, 90, .15);
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-subcard-icon svg {
  width: 20px;
  height: 20px;
}
.demo-subcard h3 {
  font-family: 'Playfair Display', serif;
  font-size:32px;
  color: #fff;
  margin-bottom: 6px;
}
.demo-subcard p {
  font-size:17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

@media (max-width: 414px) {
  .info-card {
    padding: 30px;
  }
}

/* WHAT TO EXPECT */
.expect-banner {
  background: #0B2341;
  border-radius: 20px;
  padding:35px 35px;
  display: grid;
  grid-template-columns: 1fr repeat(4, 0.38fr);
  gap:70px;
  align-items: flex-start;
}
.expect-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 35px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.expect-left h2 .accent {
  color: #C6A25A;
}
.expect-rule {
  width:44px;
  height:2px;
  background: #C6A25A;
  margin-bottom: 18px;
}
.expect-left p {
  color: rgba(255, 255, 255, .65);
  font-size:17px;
  line-height: 1.7;
  max-width: 380px;
}
.expect-item {
  text-align: center;  
  width:100%;
}
.expect-icon {
  width:70px;
  height:70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}
.expect-icon svg {
  width:50px;
  height:50px;
}
.expect-item h4 {
  color: #fff;
  font-size:17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.expect-item p {
  color: rgba(255, 255, 255, .6);
  font-size:17px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .expect-banner {
    grid-template-columns: 1fr 1fr;
  }
  .expect-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .expect-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 414px) {
  .expect-banner {
    padding: 30px;
  }
}

/* WHAT HAPPENS NEXT */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  color: #0B2341;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 2px;
  background: #C6A25A;
}
.section-head p {
  color: #6B7280;
  font-size:17px;
}
.next-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius:16px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.next-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}
.next-num {
  width:50px;
  height:50px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  color: #0B2341;
  font-weight: 700;
  font-size:24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.next-icon {
  color: #C6A25A;
  margin-bottom:10px;
}
.next-icon svg {
  width:45px;
  height:45px;
}
.next-text h4 {
  font-size:17px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 8px;
}
.next-text p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}
.next-arrow {
  display:flex;
  align-items: center;
  color: #C6A25A;
  padding-top:58px;
  flex-shrink: 0;
}
.next-arrow svg {
  width:32px;
  height:32px;
}

@media (max-width: 1000px) {
  .next-card {
    flex-direction: column;
  }
  .next-arrow {
    display: none;
  }
  .next-step {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .section-head {
    margin: 0 auto 30px;
  }
  .next-card {
    padding: 30px;
  }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 12px;
  padding:18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:16px;
  cursor: pointer;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item:hover {
  border-color: #C6A25A;
  box-shadow: 0 12px 24px -14px rgba(11, 35, 65, .18);
}
.faq-item h4 {
  font-size:17px;
  font-weight: 700;
  color: #0B2341;
}
.faq-chevron {
  color: #C6A25A;
  flex-shrink: 0;
}
.faq-chevron svg {
  width: 16px;
  height: 16px;
}
.faq-item:hover .faq-chevron {
  transform: translateY(3px);
}
details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "+";
  font-weight: 600;
  width:26px;
  height:26px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  color: #C6A25A;
  display: flex;
  font-size:18pt;
  padding-bottom:4pt;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
details[open] summary::after {
  content: "−";
}
.faq-grid details p {
    font-size:17px;
    color: #6b7281;
    line-height: 1.55;
    background: #fff;
    border: 1px solid #E6E8EB;
    border-radius: 12px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: box-shadow .25s ease, border-color .25s ease;
    margin-top: 7px;
}

@media (max-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding:36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.fcta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width:280px;
}
.fcta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.fcta-icon svg {
  width:32px;
  height:32px;
}
.fcta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:32px;
  color: #fff;
  margin-bottom: 6px;
}
.fcta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:17px;
  max-width:450px;
}
.fcta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fcta-footer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  justify-content: center;
}
.fcta-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.fcta-footer-item svg {
  width: 14px;
  height: 14px;
  color: #C6A25A;
}
.fcta-sep {
  color: rgba(255, 255, 255, .3);
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
  }
}










/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width:280px;
}
.cta-icon-circle {
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.cta-icon-circle svg {
  width:34px;
  height:34px;
}
.cta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:30px;
  color: #ffffff;
  margin-bottom:6px;
  line-height: 1.3;
}
.cta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:18px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footer-row {
  display: flex;
  align-items: center;
  gap:32px;
  flex-wrap: wrap;
  margin-top:10px;
  padding-top:24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
}
.cta-footer-item {
  display: flex;
  align-items: center;
  gap:10px;
  color: #fff;
  font-size:17px;
  font-weight: 600;
}
.cta-footer-item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-item .dot svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
    gap: 0;
  }
}
























