.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 153, 0, 0.13), transparent 28%),
    linear-gradient(135deg, #111a22 0%, #1f2c36 100%);
  color: #fff;
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 36px;
  padding-bottom: 44px;
}
.contact-crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
}
.contact-crumbs a { color: rgba(255, 255, 255, 0.76); text-decoration: none; }
.contact-crumbs a:hover { color: #fff; }
.contact-kicker {
  display: block;
  color: var(--brand-text);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.contact-hero h1 em { color: #ffae35; font-family: Caveat, cursive; font-weight: 600; }
.contact-hero p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
  padding-top: 52px;
  padding-bottom: 96px;
}
.contact-panel {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.contact-panel__head {
  display: flex;
  gap: 18px;
  padding: 32px 36px 28px;
  border-bottom: 1px solid var(--line);
}
.contact-panel__icon,
.contact-personal__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff3df;
  color: var(--brand-text);
}
.contact-panel__icon svg,
.contact-personal__icon svg { width: 20px; height: 20px; }
.contact-panel__head h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.035em;
}
.contact-panel__head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-errors {
  margin: 28px 36px 0;
  padding: 16px 18px;
  border: 1px solid #efb1aa;
  border-left: 4px solid #c84434;
  border-radius: var(--radius-field);
  background: #fff7f6;
  color: #822d24;
  font-size: 13.5px;
}
.contact-errors ul { margin: 8px 0 0; padding-left: 20px; }
/* A delivery failure is our fault, not the visitor's — warn rather than blame,
   and keep the reassurance about their input on a second line. */
.contact-errors--delivery {
  border-color: #f0cf9a;
  border-left-color: #d98b00;
  background: #fffaf0;
  color: #7a4a06;
}
.contact-errors--delivery p { margin: 6px 0 0; font-weight: 600; }
.contact-form { position: relative; padding: 34px 36px 38px; }
.contact-form__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}
.contact-section { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-section legend {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}
.contact-section legend span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}
.contact-field { display: block; margin-bottom: 18px; }
.contact-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
}
.contact-field input,
.contact-field select,
.contact-field textarea,
.contact-travelers select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-field);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-field textarea { min-height: 176px; resize: vertical; line-height: 1.55; }
/* Keyboard focus keeps the site-wide ring from base.css. Only the pointer/typing
   state gets the softer brand treatment, so nothing suppresses the ring. */
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.contact-travelers select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.14);
}
.contact-field small { display: block; margin-top: 6px; color: var(--muted-2); font-size: 11.5px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-travelers { display: grid; gap: 9px; }
.contact-travelers label { display: block; }
/* Full-width action bar spanning both form columns. */
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 32px 36px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-actions__consent { flex: 1 1 320px; min-width: 0; }
.contact-actions__submit { flex: 0 0 auto; }

.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  cursor: pointer;
}
.contact-privacy input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--brand); }
.contact-privacy a { color: var(--brand-text); font-weight: 700; }
.contact-submit {
  min-height: 56px;
  min-width: 320px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--brand);
  color: var(--on-brand);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease;
}
.contact-submit:hover { background: var(--brand-deep); }
.contact-submit svg { width: 17px; height: 17px; }
.contact-required { margin: 0 0 20px; color: var(--muted-2); font-size: 11.5px; }
/* Optional, pre-answered fields. Closed by default so the 5 fields that
   actually need an answer are not competing with 8 that do not. */
.contact-more {
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-field);
  background: #fff;
}
.contact-more > summary {
  list-style: none;
  padding: 13px 16px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
}
.contact-more > summary::-webkit-details-marker { display: none; }
.contact-more > summary span { color: var(--muted-2); font-weight: 500; }
.contact-more__mark {
  float: right;
  position: relative;
  width: 12px; height: 12px;
  margin-top: 4px;
}
.contact-more__mark::before,
.contact-more__mark::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  background: var(--muted-2);
  transform: translate(-50%, -50%);
}
.contact-more__mark::before { width: 11px; height: 2px; }
.contact-more__mark::after  { width: 2px; height: 11px; transition: opacity .15s ease; }
.contact-more[open] .contact-more__mark::after { opacity: 0; }
.contact-more[open] > summary { border-bottom: 1px solid var(--line); }
.contact-more__body { display: grid; gap: 16px; padding: 18px 16px 20px; }

.contact-error {
  display: block;
  margin-top: 6px;
  color: #b3261e;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}
:is(input, select, textarea)[aria-invalid="true"] {
  border-color: #b3261e;
  background: #fef6f5;
}
.contact-errors a { color: inherit; }
.contact-errors a:hover { text-decoration: none; }
/* Anchored fields must clear the sticky nav when jumped to from the summary. */
.contact-form :target { scroll-margin-top: 100px; }

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-aside {
  display: grid;
  gap: 20px;
  align-content: start;
  position: sticky;
  top: 24px;
}
.contact-advice,
.contact-personal {
  border-radius: var(--radius-card);
  padding: 28px;
}
.contact-advice { border: 1px solid var(--line); background: var(--surface); }
.contact-advice h2,
.contact-personal h2 {
  margin: 7px 0 22px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.contact-advice__item { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-advice__item > span { color: var(--brand-text); font-size: 12px; font-weight: 800; }
.contact-advice__item h3 { margin: 0 0 8px; color: var(--ink); font-size: 14px; line-height: 1.4; }
.contact-advice__item p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.65; }
.contact-personal { background: var(--ink); color: #fff; }
.contact-personal__icon { margin-bottom: 20px; }
.contact-personal .contact-kicker { color: #ffb84d; }
.contact-personal h2 { color: #fff; margin-bottom: 14px; }
.contact-personal > a { color: #fff; font-size: 24px; font-weight: 800; text-decoration: none; letter-spacing: -0.025em; }
.contact-personal p { margin: 7px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 12px; line-height: 1.5; }

.contact-success {
  max-width: 720px;
  min-height: 560px;
  padding-top: 100px;
  padding-bottom: 110px;
  text-align: center;
}
.contact-success__mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fff3df;
  color: var(--brand-text);
}
.contact-success__mark svg { width: 30px; height: 30px; }
.contact-success h1 { margin: 8px 0 18px; color: var(--ink); font-size: clamp(38px, 6vw, 56px); letter-spacing: -0.045em; }
.contact-success > p { max-width: 600px; margin: 0 auto; color: var(--muted); line-height: 1.75; }
.contact-success__actions { max-width: 360px; margin: 30px auto 0; display: grid; gap: 16px; }
.contact-success__home { color: var(--ink); font-size: 13px; font-weight: 700; }

@media (max-width: 1080px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { grid-template-columns: 1.4fr 1fr; }
}
@media (max-width: 760px) {
  .contact-hero__inner { padding-top: 24px; padding-bottom: 42px; }
  .contact-crumbs { margin-bottom: 26px; }
  .contact-layout { padding-top: 28px; padding-bottom: 60px; }
  .contact-panel__head { padding: 24px 20px; }
  .contact-panel__icon { display: none; }
  .contact-form { padding: 26px 20px 30px; }
  .contact-errors { margin: 22px 20px 0; }
  .contact-form__columns { grid-template-columns: 1fr; gap: 34px; }
  .contact-aside { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-advice, .contact-personal { padding: 23px 20px; }
  .contact-actions { margin: 26px 20px 0; gap: 18px; }
  .contact-actions__submit { flex: 1 1 100%; }
  .contact-submit { width: 100%; min-width: 0; }
}
