/* ============================================================
   inqelo marketing site — contact page
   @docs [[docs/Systems/Marketing Website/Patterns/inqelo Marketing Site Design Standard]]
   Page-specific rules only; tokens, buttons, header/nav and footer
   live in the shared static/site.css (loaded first by the base
   template). Hand-authored responsive rebuild of the Claude Design
   export ("Contact"). Mobile-first; the ≥1024px breakpoint
   reproduces the export's desktop values. Icons use the same
   self-hosted filled Material Symbols Rounded pack as the rest of
   the site (codepoint subset: check / verified_user / mail / paid /
   extension / support_agent / handshake / videocam). No runtime Google Fonts.
   ============================================================ */

/* ---- Shared bits -------------------------------------------- */
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("assets/material-symbols-rounded-subset.woff2?v=2") format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
.accent-light { color: var(--green-300); }

/* The enquiry form's submit is a <button>; reset the UA border AND focus
   outline so it renders identically to the site's <a>-based .btn on the other
   pages (with appearance:none the default focus outline hugs the rounded edge
   and reads as a dark border). Keyboard users still get an on-brand ring. */
button.btn { border: none; outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; }
button.btn:focus-visible { outline: 3px solid rgba(232, 130, 28, .5); outline-offset: 2px; }

[data-reveal] { transition: opacity .62s var(--ease-out), transform .62s var(--ease-out); }
[data-reveal].is-hidden { opacity: 0; transform: translateY(20px); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-hidden { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---- Hero (dark green) -------------------------------------- */
.hero { background: linear-gradient(180deg, #123f20, #0e3317); position: relative; overflow: hidden; }
.hero .kicker { color: var(--green-300); }
.hero__tri-a { right: 40px; top: 20px; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 20px solid var(--green-400); z-index: 0; }
.hero__tri-b { right: 24px; bottom: 46px; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 19px solid var(--amber-500); transform: rotate(20deg); z-index: 0; }
.hero__dots { right: 16px; top: 8px; width: 66px; height: 84px; background-image: radial-gradient(rgba(255,255,255,.4) 1.6px, transparent 1.7px); background-size: 16px 16px; opacity: .3; z-index: 0; }
.hero__blob { left: -70px; bottom: -70px; width: 210px; height: 210px; border-radius: 50%; background: rgba(255,255,255,.05); z-index: 0; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 36px;
  padding-bottom: 32px;
  align-items: center;
}
.hero__copy { order: 1; position: relative; z-index: 1; }
.hero__title { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin: 12px 0 0; }
.hero__lede { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.82); margin: 16px 0 0; max-width: 460px; }
.hero__trust { display: flex; align-items: flex-start; gap: 9px; margin: 22px 0 0; font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.45; }
.hero__trust .material-symbols-rounded { font-size: 17px; color: var(--green-300); margin-top: 1px; }
.hero__art { order: 2; position: relative; z-index: 1; }
.hero__art img { display: block; width: 100%; max-width: 540px; height: auto; margin: 14px auto 0; position: relative; z-index: 1; filter: drop-shadow(0 20px 22px rgba(21,36,43,.2)); }
.hero__art-circle { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 96%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.06); z-index: 0; }

/* ---- Enquiry form + route cards ---------------------------- */
.enquiry { background: #fbf9f7; border-top: 1px solid #ece8df; position: relative; overflow: hidden; }
.enquiry__circle { right: -90px; top: 60px; width: 240px; height: 240px; border-radius: 50%; background: #eef2e6; opacity: .55; z-index: 0; }
.enquiry__dots { left: 20px; bottom: 120px; width: 74px; height: 92px; background-image: radial-gradient(var(--gray-300) 1.6px, transparent 1.7px); background-size: 16px 16px; opacity: .45; z-index: 0; }
.enquiry .container { position: relative; z-index: 1; padding-top: 44px; padding-bottom: 44px; }

.enquiry__head { max-width: 560px; }
.enquiry__title { font-size: 27px; font-weight: 700; letter-spacing: -0.022em; line-height: 1.1; color: var(--ink-900); margin: 0; }
.enquiry__lede { font-size: 15.5px; line-height: 1.55; color: var(--gray-600); margin: 12px 0 0; }

.enquiry__grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 24px; align-items: stretch; }

.enquiry__form { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); padding: 22px; display: flex; flex-direction: column; gap: 20px; }
.field-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.field__label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-900); margin-bottom: 8px; }
.field__req { color: var(--amber-500); }
.inq-field {
  width: 100%; box-sizing: border-box; font-family: inherit; font-size: 15px;
  color: var(--ink-900); background: #fff; border: 1px solid var(--gray-300);
  border-radius: var(--radius-md); padding: 12px 14px; outline: none;
  transition: var(--transition-control);
}
.inq-field::placeholder { color: var(--gray-400); }
.inq-field:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(66, 172, 76, .18); }
select.inq-field {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237b847e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 13px center;
}
textarea.inq-field { resize: vertical; min-height: 116px; line-height: 1.55; }
/* Honeypot field: kept out of sight (not display:none, which some bots detect). */
.field--trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enquiry__submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.enquiry__note { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--gray-500); }
.enquiry__note .material-symbols-rounded { font-size: 16px; color: var(--green-500); }
.enquiry__privacy { font-size: 12.5px; color: var(--gray-500); margin: 0; }
.enquiry__privacy a { color: var(--green-700); text-decoration: underline; }

.enquiry__cards { display: flex; flex-direction: column; gap: 16px; }
.card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 22px; display: flex; gap: 16px; align-items: center; }
.card__ico { width: 66px; height: 66px; border-radius: 50%; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex: none; }
.card__ico .material-symbols-rounded { font-size: 34px; }
.card__title { font-size: 17px; font-weight: 700; color: var(--ink-900); line-height: 1.2; }
.card__body { font-size: 14px; color: var(--gray-600); line-height: 1.5; margin: 6px 0 0; }

.prefer { margin-top: 40px; }
.prefer__title { text-align: center; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink-900); margin: 0 0 20px; }
.prefer__grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 840px; margin: 0 auto; }
.email-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 20px 22px; display: flex; gap: 16px; align-items: center; text-decoration: none; transition: var(--transition-control); }
.email-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-200); }
.email-card__ico { width: 56px; height: 56px; border-radius: 50%; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex: none; }
.email-card__ico .material-symbols-rounded { font-size: 26px; }
.email-card__title { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.email-card__addr { font-size: 15px; font-weight: 600; color: var(--green-700); margin-top: 4px; }
/* Demo-booking card: the action among the passive phone cards (SPEC-093). */
.email-card--book { border: 0; cursor: pointer; font-family: inherit; text-align: left; background: var(--hero-green); box-shadow: var(--shadow-md); }
.email-card--book:hover { box-shadow: var(--shadow-lg); }
.email-card--book .email-card__ico { background: rgba(255, 255, 255, .12); color: var(--green-200); }
.email-card--book .email-card__title { color: #fff; }
/* Lightened amber (the email family's dark-mode amber): --amber-500 on the
   forest ground measures 4.47:1 and misses WCAG AA for 15px text. */
.email-card--book .email-card__addr { color: #f0a75e; }

/* ---- Closing CTA ------------------------------------------- */
.cta { background: var(--green-800); position: relative; overflow: hidden; }
.cta__dots { right: 40px; top: 30px; width: 84px; height: 48px; background-image: radial-gradient(rgba(255,255,255,.6) 1.4px, transparent 1.5px); background-size: 15px 15px; opacity: .18; z-index: 0; }
.cta__tri-a { left: 44%; top: 34px; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 18px solid var(--green-400); opacity: .5; z-index: 0; }
.cta__tri-b { left: 20px; bottom: 40px; border-left: 13px solid transparent; border-right: 13px solid transparent; border-bottom: 22px solid var(--amber-500); opacity: .85; z-index: 0; }
.cta__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 8px; padding-top: 44px; padding-bottom: 44px; align-items: center; }
.cta__copy { position: relative; z-index: 1; order: 1; }
.cta__title { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; color: #fff; margin: 0; }
.cta__lede { font-size: 15.5px; color: rgba(255,255,255,.84); margin: 12px 0 0; max-width: 520px; }
.cta__trust { display: inline-flex; align-items: flex-start; gap: 9px; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.45; }
.cta__trust .material-symbols-rounded { font-size: 17px; color: var(--green-300); margin-top: 1px; }
.cta__art { order: 2; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.cta__art img { display: block; width: 100%; max-width: 260px; height: auto; margin: 8px auto 0; position: relative; z-index: 1; filter: drop-shadow(0 16px 22px rgba(0,0,0,.28)); }
.cta__art-circle { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 108%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.06); z-index: 0; }

/* ---- Desktop (reproduces the export's ≥1024px layout) ------- */
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1.12fr; gap: 20px; min-height: 452px; padding-top: 48px; padding-bottom: 44px; align-items: center; }
  .hero__title { font-size: 48px; letter-spacing: -0.03em; line-height: 1.04; margin: 16px 0 0; }
  .hero__lede { font-size: 16.5px; max-width: 440px; margin: 20px 0 0; }
  .hero__actions { margin-top: 28px; }
  .hero__trust { margin-top: 22px; }
  .hero__art { justify-self: end; align-self: center; }
  .hero__art img { width: 700px; max-width: none; margin: 0; transform: translateY(72px); margin-right: -40px; }
  .hero__dots { right: 320px; top: 60px; width: 84px; height: 104px; opacity: .35; }
  .hero__tri-a { right: 150px; top: 40px; }

  .enquiry .container { padding-top: 60px; padding-bottom: 40px; }
  .enquiry__title { font-size: 32px; }
  .enquiry__grid { grid-template-columns: 1.32fr .88fr; gap: 28px; margin-top: 28px; }
  .enquiry__form { padding: 32px; }
  .field-grid { grid-template-columns: 1fr 1fr; gap: 20px 22px; }
  .enquiry__cards { gap: 16px; }
  .card { flex: 1; padding: 26px; }
  .card__ico { width: 76px; height: 76px; }
  .card__ico .material-symbols-rounded { font-size: 38px; }
  .prefer { margin-top: 48px; }
  .prefer__title { font-size: 26px; }
  .prefer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .prefer__grid--three { grid-template-columns: 1fr 1fr 1fr; max-width: 1020px; }
  .email-card { padding: 24px 26px; }
  .email-card__ico { width: 60px; height: 60px; }
  .email-card__ico .material-symbols-rounded { font-size: 28px; }

  .cta__grid { grid-template-columns: 1.15fr .85fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; max-width: 1120px; margin: 0 auto; }
  .cta__title { font-size: 40px; line-height: 1.06; }
  .cta__lede { font-size: 16px; }
  .cta__art img { max-width: 333px; }
}
