/* SYMMETRON 25 — contact page: hero, enquiry form, details column, map band. */

@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

.c-hero {
  padding: clamp(120px, 20vh, 180px) var(--gutter) clamp(30px, 5vh, 54px);
  position: relative;
  overflow: hidden;
}
.c-hero .wm {
  position: absolute;
  right: -70px;
  top: 20px;
  width: min(38vw, 360px);
  opacity: .05;
  pointer-events: none;
  animation: wmIn 1.4s var(--ease) .2s both;
}
.ch-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroRise .9s var(--ease) .1s forwards;
}
.ch-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); }
.ch-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 7vw, 96px);
  line-height: .98;
  letter-spacing: -.02em;
  opacity: 0;
  animation: heroRise 1s var(--ease) .24s forwards;
}
.ch-title em { font-style: italic; }
.ch-sub {
  max-width: 48ch;
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 28px;
  opacity: 0;
  animation: heroRise 1s var(--ease) .4s forwards;
}

.c-body {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(56px, 9vh, 104px) var(--gutter);
  align-items: start;
}

.form-head {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}
.form-head::before { content: ""; width: 26px; height: 1px; background: var(--brass); }

.field { margin-bottom: 26px; position: relative; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair);
  padding: 10px 0;
  font-family: var(--grotesk);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--brass); }
.field input::placeholder,
.field textarea::placeholder { color: #B8AE9C; }
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6A2E' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select { border-color: #A3402B; }
.field .field-error {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: #A3402B;
}

/* Honeypot: off-screen, never focusable, invisible to real visitors. */
.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--brass);
  cursor: pointer;
  padding: 15px 26px;
  border-radius: 2px;
  transition: background .35s, color .35s, gap .35s var(--ease);
}
.submit:hover { background: var(--grad); color: #FAF8F3; border-color: transparent; gap: 18px; }
.submit[disabled] { opacity: .55; cursor: progress; }

.sent {
  animation: pop .5s var(--ease) both;
  border: 1px solid var(--hair);
  padding: 40px 34px;
  background: var(--paper-2);
}
.sent .tick {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #FAF8F3;
  font-size: 20px;
  margin-bottom: 22px;
}
.sent h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.sent p { color: var(--mid); font-size: 15px; line-height: 1.65; max-width: 42ch; }

.form-error {
  border: 1px solid #E0C3BA;
  background: #F7EEEA;
  padding: 18px 22px;
  margin-bottom: 30px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #7A3323;
}

.details {
  border-left: 1px solid var(--hair);
  padding-left: clamp(24px, 3vw, 44px);
}
.d-block { padding: 26px 0; border-bottom: 1px solid var(--hair); }
.d-block:first-child { padding-top: 0; }
.d-block dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.d-block dd {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.01em;
  line-height: 1.3;
}
.d-block dd a { transition: color .3s; }
.d-block dd .small {
  display: block;
  font-family: var(--grotesk);
  font-size: 14.5px;
  color: var(--mid);
  margin-top: 6px;
  letter-spacing: 0;
}
.socials {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 26px;
}
.socials a { transition: color .3s; }

.map {
  margin: 0 var(--gutter) clamp(56px, 9vh, 104px);
  aspect-ratio: 16/6;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
  border: 1px solid var(--hair);
}
.map picture { display: block; width: 100%; height: 100%; }
.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.16) saturate(.9) contrast(1.02) brightness(1.02);
}
.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: .05;
  mix-blend-mode: multiply;
}
.map .pin {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.map .pin .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 6px rgba(138, 106, 46, .22);
}
.map .pin .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 5px 10px;
  border: 1px solid var(--hair);
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .c-body { grid-template-columns: 1fr; gap: 48px; }
  .details { border-left: none; padding-left: 0; border-top: 1px solid var(--hair); padding-top: 8px; }
  .map { aspect-ratio: 4/3; }
}

@media (max-width: 440px) {
  .field-row { grid-template-columns: 1fr; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .ch-eyebrow, .ch-title, .ch-sub { opacity: 1 !important; transform: none !important; }
  .c-hero .wm { opacity: .05 !important; }
}
