/* ── FONTS & ROOT ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');
:root {
  --gold      : #b8860b;
  --gold-mid  : #d4a017;
  --gold-lt   : #f0c040;
  --gold-pale : #fdf8ed;
  --gold-bg   : #fffdf5;
  --dark      : #1a1309;
  --dark2     : #2e2210;
  --grey      : #6b6055;
  --light-grey: #f5f2ec;
  --border    : #ede8d8;
  --white     : #ffffff;
  --ff-serif  : 'Cormorant Garamond', Georgia, serif;
  --ff-sans   : 'DM Sans', sans-serif;
  --shadow-sm : 0 2px 12px rgba(184,134,11,.08);
  --shadow-md : 0 8px 32px rgba(184,134,11,.12);
  --shadow-lg : 0 16px 48px rgba(184,134,11,.18);
  --radius    : 16px;
  --radius-sm : 10px;
  --transition: .3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--ff-sans); background: var(--white); color: var(--dark); overflow-x: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 6px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── REVEAL ANIMATIONS ── */
.reveal-up    { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── HERO ── */
.contact-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}
.ch-bg-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='.4' opacity='.12'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M40 22L44 32L40 40L36 32Z'/%3E%3Cpath d='M58 40L48 44L40 40L48 36Z'/%3E%3Cpath d='M40 58L36 48L40 40L44 48Z'/%3E%3Cpath d='M22 40L32 36L40 40L32 44Z'/%3E%3C/g%3E%3C/svg%3E");
}
.ch-gold-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.18) 0%, transparent 70%);
  pointer-events: none;
}
.ch-orb-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.ch-orb-2 { width: 350px; height: 350px; bottom: -100px; left: -80px; }
.ch-inner { position: relative; z-index: 1; text-align: center; }
.ch-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(184,134,11,.15);
  border: 1px solid rgba(240,192,64,.25);
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeDown .7s ease both;
}
.ch-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  animation: fadeDown .7s .1s ease both;
}
.ch-title em { font-style: italic; color: var(--gold-lt); }
.ch-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeDown .7s .2s ease both;
}
.ch-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  animation: fadeDown .7s .3s ease both;
}
.ch-breadcrumb a { color: var(--gold-lt); text-decoration: none; transition: color var(--transition); }
.ch-breadcrumb a:hover { color: #fff; }
.ch-bc-sep { color: rgba(255,255,255,.25); }
.ch-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
}
.ch-wave svg { width: 100%; height: 100%; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}

/* ── INFO CARDS ── */
.info-cards-section {
  padding: 0 0 0;
  margin-top: -2px;
  background: var(--white);
  padding-bottom: 0;
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0 60px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-mid); }
.ic-icon-wrap {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--transition);
}
.info-card:hover .ic-icon-wrap { background: var(--gold); color: #fff; border-color: var(--gold); }
.ic-body { display: flex; flex-direction: column; gap: 4px; }
.ic-body h3 { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.ic-body a { color: var(--grey); text-decoration: none; font-size: .85rem; transition: color var(--transition); }
.ic-body a:hover { color: var(--gold); }
.ic-body span { color: var(--grey); font-size: .85rem; }
.ic-note { font-size: .72rem !important; color: var(--gold) !important; font-style: italic; }

/* ── MAIN CONTACT SECTION ── */
.contact-main-section {
  padding: 20px 0 100px;
  background: var(--light-grey);
}
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: flex-start;
}

/* ── FORM WRAP ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-header { margin-bottom: 32px; }
.form-divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin: 12px 0 16px;
}
.form-intro { font-size: .88rem; color: var(--grey); line-height: 1.65; }

/* Steps indicator */
.form-steps {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.fs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.fs-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-grey);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey);
  transition: all .4s ease;
}
.fs-label { font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); transition: color .4s; white-space: nowrap; }
.fs-step.active .fs-num { background: var(--gold); border-color: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(184,134,11,.3); }
.fs-step.active .fs-label { color: var(--gold); }
.fs-step.completed .fs-num { background: var(--dark); border-color: var(--dark); color: #fff; }
.fs-step.completed .fs-num::after { content: '✓'; }
.fs-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; margin-bottom: 18px; transition: background .4s; }
.fs-step.completed ~ .fs-line { background: var(--gold); }

/* Form steps transition */
.form-step { transition: opacity .3s ease; }
.form-step.hidden { display: none; }
.form-step.step-enter { animation: stepIn .35s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

/* Field groups */
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.fg-row .fg { margin-bottom: 20px; }
.fg {
  margin-bottom: 20px;
  position: relative;
}
.fg label {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.req { color: var(--gold); }
.fi-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.fi-icon {
  position: absolute;
  left: 14px;
  color: #c5bdb0;
  pointer-events: none;
  z-index: 1;
  transition: color var(--transition);
}
.fi-wrap.fi-focused .fi-icon { color: var(--gold); }
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: var(--gold-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px 12px 42px;
  color: var(--dark);
  font-family: var(--ff-sans);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
}
.fg textarea { padding: 14px; min-height: 140px; resize: vertical; }
.fg select { cursor: pointer; padding-right: 40px; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(184,134,11,.08);
}
.fg input.fi-error, .fg select.fi-error, .fg textarea.fi-error {
  border-color: #e53e3e;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(229,62,62,.08);
}
.fg input::placeholder, .fg textarea::placeholder { color: #c5bdb0; }
.select-wrap { position: relative; }
.select-chevron {
  position: absolute;
  right: 14px;
  color: #c5bdb0;
  pointer-events: none;
  transition: transform var(--transition), color var(--transition);
}
.fi-wrap.fi-focused .select-chevron { color: var(--gold); transform: rotate(180deg); }
.fe { font-size: .75rem; color: #e53e3e; margin-top: 5px; min-height: 16px; }
.char-count { font-size: .72rem; color: var(--grey); text-align: right; margin-top: 4px; }

/* Checkbox grid */
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: .83rem;
  color: var(--grey);
  transition: all var(--transition);
  background: var(--gold-bg);
  user-select: none;
}
.check-item:hover { border-color: var(--gold-mid); color: var(--dark); }
.check-item input[type="checkbox"] { display: none; }
.checkmark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  background: var(--white);
}
.check-item input:checked ~ .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}
.check-item input:checked ~ .checkmark::after {
  content: '';
  display: block;
  width: 4px; height: 8px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.check-item:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); color: var(--dark); }

/* Step nav */
.form-step-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-next, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 28px;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(184,134,11,.28);
}
.btn-next:hover, .btn-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,134,11,.38); }
.btn-next:disabled, .btn-submit:disabled { opacity: .65; cursor: not-allowed; }
.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--grey);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-prev:hover { border-color: var(--gold); color: var(--gold); }
.hidden { display: none !important; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success */
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success.success-visible { display: block !important; animation: fadeUp .6s ease; }
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-bg));
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.form-success h3 { font-family: var(--ff-serif); font-size: 2rem; color: var(--dark); margin-bottom: 12px; }
.form-success p { color: var(--grey); font-size: .95rem; line-height: 1.7; max-width: 380px; margin: 0 auto 28px; }
.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,.3); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── INFO SIDEBAR ── */
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }

/* Map card */
.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-label {
  padding: 14px 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
  background: var(--gold-pale);
}
.map-embed iframe { display: block; }
.map-detail {
  padding: 16px 20px;
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.map-detail strong { color: var(--dark); font-weight: 600; }
.map-detail em { font-style: italic; color: var(--gold); font-size: .78rem; }

/* Accordion */
.locations-accordion {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.la-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  background: var(--gold-pale);
  border-bottom: 1px solid var(--border);
}
.la-item { border-bottom: 1px solid var(--border); }
.la-item:last-child { border-bottom: none; }
.la-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.la-toggle:hover { background: var(--gold-pale); }
.la-item.la-open .la-toggle { background: var(--gold-pale); }
.la-toggle-left { display: flex; align-items: center; gap: 12px; }
.la-num {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
}
.la-name { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); }
.la-sub  { display: block; font-size: .72rem; color: var(--grey); margin-top: 1px; }
.la-chevron { color: var(--grey); transition: transform .3s ease, color .3s; flex-shrink: 0; }
.la-item.la-open .la-chevron { color: var(--gold); }
.la-body {
  padding: 0 20px;
  border-top: 1px solid var(--border);
  background: var(--gold-bg);
}
.la-body p { font-size: .82rem; color: var(--grey); line-height: 1.65; padding: 14px 0 10px; }
.la-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding-bottom: 14px;
  transition: color var(--transition);
}
.la-map-link:hover { color: var(--dark); }

/* Social card */
.social-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sc-title { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.sc-links { display: flex; gap: 12px; flex-wrap: wrap; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.sc-wa  { background: #e8f8f2; color: #25d366; border-color: #b2eace; }
.sc-fb  { background: #eef2fb; color: #1877f2; border-color: #bdd0f5; }
.sc-ig  { background: #fdf0f7; color: #e1306c; border-color: #f5c0d8; }
.sc-wa:hover  { background: #25d366; color: #fff; }
.sc-fb:hover  { background: #1877f2; color: #fff; }
.sc-ig:hover  { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); color: #fff; border-color: transparent; }

/* ── FAQ ── */
.faq-section {
  padding: 90px 0 100px;
  background: var(--white);
}
.faq-header { margin-bottom: 48px; }
.fq-divider {
  height: 2px; width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin-top: 14px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.faq-item:hover { border-color: var(--gold-mid); }
.faq-item.faq-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
}
.faq-item.faq-open .faq-q { color: var(--gold); background: var(--gold-pale); }
.faq-icon { flex-shrink: 0; color: var(--gold); transition: transform .35s ease; }
.faq-a { background: var(--gold-bg); border-top: 1px solid var(--border); display: none; }
.faq-a p { padding: 18px 22px; font-size: .88rem; color: var(--grey); line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-wrap { display: grid; grid-template-columns: 1fr 1fr; }
  .map-card { grid-column: span 2; }
}
@media (max-width: 900px) {
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .contact-form-wrap { padding: 28px 20px; }
  .fg-row { grid-template-columns: 1fr; gap: 0; }
  .fg-row .fg { margin-bottom: 20px; }
  .contact-info-wrap { display: flex; flex-direction: column; }
  .map-card { grid-column: auto; }
  .form-steps { gap: 4px; }
  .fs-label { display: none; }
  .fs-line { margin: 0 4px 10px; }
  .sc-links { flex-direction: column; }
  .sc-link { justify-content: center; }
  .faq-q { font-size: .95rem; }
}
@media (max-width: 560px) {
  .info-cards-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
}