:root {
  --ink: #0A0A0A;
  --bg: #FAF8F3;
  --bg-warm: #F2EDE3;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4A4A4A;
  --text-mute: #7A7A7A;
  --line: #E5E0D5;
  --hot: #E63E11;
  --hot-deep: #B82D08;
  --gold: #C9A227;
  --green: #1F6F47;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 4px 16px rgba(10,10,10,0.06);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

em.script { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--hot); font-weight: 400; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hot);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--hot); }

/* (Header / NAV / disclosure styles live in common.css) */

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,62,17,0.06) 0%, transparent 60%);
  border-radius: 50%;
}
.page-hero-inner { position: relative; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { max-width: 800px; margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--hot); }
.page-hero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-soft);
  max-width: 600px;
  line-height: 1.6;
}

/* ===== CONTACT GRID ===== */
.contact-section { padding: 40px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* LEFT: INFO */
.contact-info {}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.info-card:hover {
  border-color: var(--hot);
  box-shadow: var(--shadow-md);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-text { flex: 1; }
.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  word-break: break-word;
}
.info-value a {
  color: var(--ink);
  text-decoration: none;
}
.info-value a:hover { color: var(--hot); }
.info-sub {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}

.response-callout {
  background: var(--bg-warm);
  border-left: 3px solid var(--hot);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
.response-callout strong { color: var(--ink); font-weight: 600; }

.enquiry-types h3 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 700;
  margin-bottom: 14px;
}
.enquiry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enquiry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.enquiry-dot {
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 50%;
  flex-shrink: 0;
}

/* RIGHT: FORM */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
.form-head { margin-bottom: 32px; }
.form-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.form-head h2 em { color: var(--hot); font-style: italic; }
.form-head p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.form-subject-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.form-subject {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.subject-pill {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-full);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s var(--ease);
}
.subject-pill:hover { border-color: var(--text-mute); color: var(--ink); }
.subject-pill.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--hot); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: all 0.2s var(--ease);
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--text-mute); }
.form-control:focus {
  border-color: var(--ink);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: 'Inter', sans-serif;
}

.form-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.form-checkbox > label {
  flex: 1;
  min-width: 0;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--ink);
  flex-shrink: 0;
}
.form-checkbox label {
  cursor: pointer;
  user-select: none;
}
.form-checkbox a { color: var(--hot); text-decoration: underline; }

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--hot);
  color: white;
  border: none;
  border-radius: var(--r-full);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 24px rgba(230,62,17,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--hot-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230,62,17,0.4);
}
.form-submit:disabled {
  background: var(--text-mute);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-note {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* Honeypot — invisible to humans, harvested by bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Field error states (jquery-validate) */
.form-control.error,
.form-control.error:focus {
  border-color: var(--hot);
  background: rgba(230, 62, 17, 0.04);
  box-shadow: 0 0 0 3px rgba(230, 62, 17, 0.1);
}
.form-checkbox input[type="checkbox"].error {
  outline: 2px solid var(--hot);
  outline-offset: 2px;
}
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--hot);
  line-height: 1.45;
}
.form-checkbox .field-error {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 4px;
  margin-left: 26px;
}
label.error { display: none !important; }

/* Inline submit status banner */
.form-messages {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
}
.form-messages.error,
.form-messages.success {
  display: block;
}
.form-messages.error {
  background: rgba(230, 62, 17, 0.08);
  border: 1px solid rgba(230, 62, 17, 0.25);
  color: var(--hot-deep);
}
.form-messages.success {
  background: rgba(31, 111, 71, 0.08);
  border: 1px solid rgba(31, 111, 71, 0.25);
  color: var(--green);
}

.form-submit.is-loading {
  opacity: 0.75;
  cursor: progress;
}
.form-submit.is-loading .submit-arrow {
  animation: tvk-submit-spin 0.9s linear infinite;
  display: inline-block;
}
@keyframes tvk-submit-spin {
  to { transform: rotate(360deg); }
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.form-success h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.form-success p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== LOCATION STRIP ===== */
.location-strip {
  background: var(--ink);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.location-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,62,17,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.location-strip::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.location-text .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.location-text .eyebrow::before { background: var(--gold); }
.location-text h2 {
  color: white;
  margin-bottom: 20px;
}
.location-text h2 em {
  color: var(--gold);
  font-style: italic;
}
.location-text p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.7;
}

.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 36px;
}
.location-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14.5px;
}
.location-row:last-child { border-bottom: none; }
.location-row-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.location-row-icon svg { width: 14px; height: 14px; }
.location-row-text { flex: 1; }
.location-row-label {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.location-row-val {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}
.faq-section .section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section .eyebrow {
  margin-bottom: 16px;
  justify-content: center;
}
.faq-section h2 { margin-bottom: 12px; }
.faq-section h2 em { color: var(--hot); font-style: italic; }
.faq-section .sub {
  font-size: 16px;
  color: var(--text-soft);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
details.faq-item[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
details.faq-item summary {
  padding: 20px 26px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
  flex-shrink: 0;
}
details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: white;
}
.faq-body {
  padding: 0 26px 22px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

/* (Footer styles live in common.css) */

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-subject { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 56px 0 40px; }
  .contact-section { padding: 32px 0 64px; }
  .location-strip { padding: 64px 0; }
  .faq-section { padding: 64px 0; }
}