/* =========================================================
   Exotic Trade Ltd. — Editorial Minimal · Brand Red
   Palette: white/off-white + ink + brand red (#e10600)
   Type:    Fraunces (display) · DM Sans (body) · JetBrains Mono (labels)
   ========================================================= */

:root {
  --ink:      #0F0F10;
  --ink-2:    #23272E;
  --paper:    #FFFFFF;
  --paper-2:  #F8F8F8;
  --cream:    #F1EDE5;
  --brand:    #E10600;
  --brand-dark:#B71C1C;
  --muted:    #6B6B70;
  --line:     rgba(15,15,16,0.12);
  --line-2:   rgba(15,15,16,0.06);

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'DM Sans', ui-sans-serif, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { width: min(1240px, 92%); margin-inline: auto; }
.mono {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ---------- Type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.8rem, 7vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand);
}
.display__pull {
  display: inline-block;
  transform: translateX(2vw);
}

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h2 em { font-style: italic; font-weight: 300; color: var(--brand); }
.h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.lede {
  font-family: var(--f-body);
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.6;
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink); display: inline-block;
  animation: pulse 2.4s var(--ease) infinite;
}
.dot--brand { background: var(--brand); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0.5; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--ink    { background: var(--ink); color: var(--paper); }
.btn--ink:hover    { background: var(--brand); color: var(--paper); }
.btn--brand  { background: var(--brand); color: var(--paper); }
.btn--brand:hover  { background: var(--ink); color: var(--paper); }
.btn--paper  { background: var(--paper); color: var(--ink); }
.btn--paper:hover  { background: var(--brand); color: var(--paper); }
.btn--outline{ border: 1px solid rgba(255,255,255,0.35); color: var(--paper); }
.btn--outline:hover{ background: var(--paper); color: var(--ink); }
.btn--block  { width: 100%; padding: 16px; }

/* ---------- Top strip ---------- */
.strip {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.strip__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.strip__clock { color: var(--brand); font-variant-numeric: tabular-nums; }

/* ---------- Header ---------- */
.head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-2);
}
.head__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 0;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; }
.brand__img { height: 40px; width: auto; }

.nav {
  display: flex; justify-content: center; gap: 28px;
}
.nav a {
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.nav a span {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--muted);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--brand);
  transition: right 0.4s var(--ease);
}
.nav a:hover { color: var(--brand); }
.nav a:hover::after { right: 0; }

.head__cta {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.head__cta:hover { background: var(--brand); color: var(--paper); border-color: var(--brand); }

.nav-toggle { display: none; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 1px; background: var(--ink); margin: 6px 0;
  transition: transform 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -8%; top: 12%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,0,0.14), transparent 60%);
  filter: blur(30px); pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}
.hero__left h1 { margin: 0 0 30px; }
.hero__cta {
  margin-top: 40px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.phone { display: inline-flex; flex-direction: column; line-height: 1.1; }
.phone .mono { color: var(--muted); font-size: 0.68rem; }
.phone strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.phone:hover strong { color: var(--brand); border-color: var(--brand); }

/* Quote card */
.quote-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 40px 60px -30px rgba(15,15,16,0.20);
  border: 1px solid var(--line-2);
  position: relative;
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(225,6,0,0.35), transparent 55%);
  z-index: -1;
  filter: blur(2px);
}
.quote-card__head {
  display: flex; justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.quote-card__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
}
.qform { display: flex; flex-direction: column; gap: 14px; }
.qform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qform label {
  display: flex; flex-direction: column; gap: 6px;
}
.qform label .mono { color: var(--muted); }
.qform input, .qform select {
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.25s;
}
.qform input:focus, .qform select:focus {
  outline: 0;
  border-bottom-color: var(--brand);
}
.qform input::placeholder { color: var(--muted); }
.qform__file {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.qform__file:hover { border-color: var(--brand); background: rgba(225,6,0,0.04); }
.qform__file em { font-style: normal; color: var(--muted); font-size: 0.9rem; }
.qform__file input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.form-ok {
  color: #2e6b3a;
  background: rgba(46,107,58,0.08);
  padding: 8px 12px;
  border-radius: 6px;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: clamp(28px, 4vw, 44px) 0;
  background: var(--paper-2);
}
.marquee__track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee__track--slow { animation-duration: 60s; }
.marquee span {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.marquee i {
  color: var(--brand);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
.marquee--quiet {
  border-top: 1px solid var(--line-2);
  border-bottom: 0;
  padding: 20px 0 40px;
  background: var(--paper);
}
.marquee--quiet span {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--muted);
  letter-spacing: -0.01em;
}
.marquee--quiet i { color: var(--brand); font-size: 0.9rem; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Section base ---------- */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section__head { margin-bottom: 60px; display: flex; flex-direction: column; gap: 14px; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.about__label { padding-top: 12px; border-top: 1px solid var(--line); }
.about__body h2 { margin-bottom: 30px; }
.about__body .lede { margin-bottom: 32px; max-width: 62ch; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: 0.98rem;
  letter-spacing: normal;
  text-transform: none;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
}
.ticks li:last-child { border-bottom: 1px solid var(--line-2); }
.ticks li span { color: var(--brand); }

/* ---------- Services ---------- */
.services { background: var(--paper-2); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.svc {
  display: flex; flex-direction: column;
  gap: 20px;
}
.svc__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  display: block;
}
.svc__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.95);
}
.svc__media::after {
  content: "→";
  position: absolute;
  right: 18px; bottom: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 1.4rem;
  opacity: 0; transform: translate(6px, 6px);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), background 0.3s, color 0.3s;
}
.svc__media:hover img { transform: scale(1.05); filter: saturate(1.05); }
.svc__media:hover::after {
  opacity: 1; transform: translate(0, 0);
  background: var(--brand); color: var(--paper);
}
.svc__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 4px;
}
.svc__body .mono { color: var(--brand); }
.svc h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.svc p { color: var(--ink-2); font-size: 0.98rem; max-width: 40ch; }

/* ---------- Pull / callout ---------- */
.pull {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 8vw, 130px) 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pull::before {
  content: "";
  position: absolute;
  left: -100px; bottom: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,0,0.35), transparent 65%);
  filter: blur(20px);
}
.pull > * { position: relative; }
.pull .mono { color: var(--paper); opacity: 0.7; }
.pull__quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 40px;
  color: var(--paper);
  max-width: 22ch;
}
.pull__quote em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
  border-bottom: 1px solid var(--brand);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.pull__quote a:hover em { color: var(--paper); border-color: var(--paper); }
.pull__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- WHS ---------- */
.whs__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.whs__intro .mono { display: block; margin-bottom: 16px; }
.whs__intro h2 { margin-bottom: 22px; }
.whs__grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.whs__card {
  background: var(--paper);
  padding: 34px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.3s;
}
.whs__card .mono { color: var(--brand); }
.whs__card h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.whs__card p { color: var(--ink-2); font-size: 0.95rem; }
.whs__card:hover { background: var(--paper-2); }

/* ---------- Partners ---------- */
.partners { background: var(--paper); padding-top: clamp(70px, 8vw, 120px); }
.partners__head { text-align: center; margin-bottom: 40px; }
.partners__head .mono { display: block; color: var(--brand); margin-bottom: 10px; }

/* ---------- Apply ---------- */
.apply { background: var(--paper-2); }
.apply__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.apply__grid > div > .mono { display: block; margin-bottom: 14px; }
.apply__grid h2 { margin-bottom: 20px; }
.apply__grid .lede { margin-bottom: 30px; }
.apply__cards { display: grid; gap: 16px; }
.mini {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}
.mini:hover { transform: translateY(-4px); border-color: var(--brand); }
.mini .mono { color: var(--brand); }
.mini h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.mini p { color: var(--ink-2); font-size: 0.95rem; }
.mini a { margin-top: 4px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; display: inline-block; align-self: flex-start; }
.mini a:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.contact__info .mono { display: block; margin-bottom: 14px; }
.contact__info h2 { margin-bottom: 40px; }
.specs { display: grid; gap: 0; }
.specs > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.specs > div:last-child { border-bottom: 1px solid var(--line); }
.specs dt {
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.specs dd {
  font-family: var(--f-body);
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
}
.specs dd a { border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: color 0.25s, border-color 0.25s; }
.specs dd a:hover { color: var(--brand); border-color: var(--brand); }

.cform {
  background: var(--paper-2);
  border-radius: 22px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--line-2);
}
.cform__head {
  display: flex; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.cform label { display: flex; flex-direction: column; gap: 6px; }
.cform label .mono { color: var(--muted); }
.cform input, .cform textarea {
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-body);
  font-size: 0.98rem;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.25s;
}
.cform input:focus, .cform textarea:focus {
  outline: 0; border-bottom-color: var(--brand);
}
.cform input::placeholder, .cform textarea::placeholder { color: var(--muted); }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 8vw, 110px) 0 0;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}
.foot__logo {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 14px;
}
.foot .mono { color: rgba(255,255,255,0.55); }
.foot h5 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 18px;
}
.foot ul { list-style: none; display: grid; gap: 10px; }
.foot ul a {
  color: var(--paper);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.foot ul a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--brand);
  transition: right 0.35s var(--ease);
}
.foot ul a:hover { color: var(--brand); }
.foot ul a:hover::after { right: 0; }
.foot p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 14px; }

.news { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); position: relative; }
.news input {
  flex: 1; background: transparent; border: 0; padding: 12px 0;
  font-family: var(--f-body); color: var(--paper); font-size: 0.98rem;
}
.news input::placeholder { color: rgba(255,255,255,0.4); }
.news input:focus { outline: 0; }
.news button {
  color: var(--brand); font-size: 1.4rem; padding: 8px 4px;
  transition: transform 0.25s;
}
.news button:hover { transform: translateX(4px); color: var(--paper); }
.news .form-ok { position: absolute; top: 100%; left: 0; margin-top: 8px; background: transparent; color: var(--brand); padding: 0; }

.foot__bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
}
.foot__bottom > * { color: rgba(255,255,255,0.55) !important; }

/* ---------- Inner-page hero + body ---------- */
.page-hero {
  padding: clamp(70px, 9vw, 130px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--line-2);
}
.page-hero .mono { display: block; margin-bottom: 18px; color: var(--brand); }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  max-width: 16ch;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--brand); }
.page-hero .lede { margin-top: 22px; max-width: 60ch; font-size: 1.15rem; }

.page-body { padding: clamp(60px, 8vw, 120px) 0; }
.page-body__grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.page-body__label { padding-top: 8px; border-top: 1px solid var(--line); }
.page-body h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 34px 0 14px;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--ink-2); margin-bottom: 14px; max-width: 62ch; font-size: 1.02rem; }
.page-body ul, .page-body ol { margin: 0 0 20px 20px; color: var(--ink-2); }
.page-body li { padding: 4px 0; }

/* Doc pages (privacy / terms) */
.doc { padding: clamp(60px, 8vw, 100px) 0; }
.doc h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin: 34px 0 12px;
}
.doc p { color: var(--ink-2); margin-bottom: 12px; max-width: 68ch; }
.doc ul { margin: 0 0 16px 22px; color: var(--ink-2); }

/* Auth card (Employee dashboard) */
.auth {
  min-height: 60vh;
  display: grid; place-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(225,6,0,0.08), transparent 60%),
    var(--paper);
}
.auth__card {
  width: min(440px, 100%);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 40px 60px -30px rgba(15,15,16,0.15);
}
.auth__card h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.auth__card p.sub { color: var(--muted); margin-bottom: 24px; font-size: 0.95rem; }
.auth__card .qform { gap: 14px; }
.auth__card .altline { margin-top: 20px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.auth__card .altline a { color: var(--brand); border-bottom: 1px solid var(--brand); }

/* Contact split (fuller page) */
.contact-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }

/* Cursor dot */
/* ---------- Cursor dot ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand);
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease2), width 0.25s, height 0.25s, opacity 0.25s;
  mix-blend-mode: multiply;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { opacity: 0.85; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .head__row { grid-template-columns: auto auto; }
  .nav { grid-column: 1 / -1; order: 3; justify-content: flex-start; gap: 20px; overflow-x: auto; }
  .head__cta { order: 2; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero__grid,
  .about__grid,
  .whs__grid,
  .apply__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .whs__grid-cards { grid-template-columns: 1fr; }
  .display__pull { transform: none; }
  .brand__img { height: 34px; }
}

@media (max-width: 640px) {
  .strip__row { justify-content: center; text-align: center; font-size: 0.65rem; }
  .strip__hours { display: none; }
  .head__row { padding: 12px 0; }
  .nav { display: none; }
  .head__cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 60px 0 0;
    background: var(--paper); padding: 30px;
    align-items: flex-start; gap: 20px;
    z-index: 49;
  }
  .nav.open a { font-size: 1.4rem; font-family: var(--f-display); }

  .svc-grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .qform__row { grid-template-columns: 1fr; }
  .quote-card, .cform { padding: 24px; border-radius: 16px; }
  .qform__file { padding: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .cursor-dot { display: none; }
}
