/* ==========================================================================
   ONTHEGARB — STYLES
   Colours live in the :root block. Change one, it changes everywhere.
   ========================================================================== */

:root{
  --ink:      #0B0F0D;
  --ink-soft: #161D19;
  --ink-line: #26302B;
  --lime:     #CBF24C;
  --lime-dk:  #B4DC33;
  --white:    #FFFFFF;
  --gray-50:  #F5F7F5;
  --gray-100: #EDF0EE;
  --gray-200: #E4E8E5;
  --muted:    #6B736F;
  --green:    #12B76A;
  --red:      #D14343;

  --font-display:"Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:   "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 16px;
  --radius-lg: 22px;
  --pad: clamp(20px, 5vw, 36px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0; background:var(--ink); color:var(--white);
  font-family:var(--font-body); font-size:16.5px; line-height:1.55;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
  min-height:100vh; display:flex; flex-direction:column;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; color:inherit; }
h1,h2,h3{ font-family:var(--font-display); font-weight:800; letter-spacing:-.03em;
  line-height:1.08; margin:0; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
::selection{ background:var(--lime); color:var(--ink); }
:focus-visible{ outline:3px solid var(--lime); outline-offset:3px; border-radius:8px; }

.wrap{ width:100%; max-width:760px; margin:0 auto; padding-inline:var(--pad); }

/* --- header --------------------------------------------------------- */
.top{ padding:20px 0; }
.top__in{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.logo{ display:flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:800; font-size:20px; letter-spacing:-.035em; }
.logo__mark{ width:32px; height:32px; border-radius:10px; background:var(--lime); color:var(--ink);
  display:grid; place-items:center; flex-shrink:0; }
.logo__mark svg{ width:18px; height:18px; }
.top__call{ display:inline-flex; align-items:center; gap:8px;
  font-size:15px; font-weight:650; color:var(--lime); white-space:nowrap; }
.top__call svg{ width:16px; height:16px; }

/* --- main ----------------------------------------------------------- */
main{ flex:1; display:flex; flex-direction:column; justify-content:center;
  padding-block:clamp(28px,6vw,56px); }

.hero{ text-align:center; }
.hero h1{ font-size:clamp(38px,8vw,64px); margin-bottom:14px; }
.hero h1 em{ font-style:normal; color:var(--lime); }
.hero__sub{ font-size:clamp(16.5px,2.4vw,19px); color:rgba(255,255,255,.66);
  max-width:44ch; margin:0 auto 30px; }

.cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:var(--lime); color:var(--ink); border:0; cursor:pointer;
  font-family:var(--font-display); font-weight:800; letter-spacing:-.02em;
  font-size:clamp(18px,2.6vw,21px); padding:20px 38px; border-radius:999px;
  transition:transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.cta:hover{ background:var(--lime-dk); transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(203,242,76,.3); }
.cta:active{ transform:translateY(0); }
.cta svg{ width:20px; height:20px; transition:transform .25s var(--ease); }
.cta[aria-expanded="true"] svg{ transform:rotate(180deg); }

/* --- the two options ------------------------------------------------ */
.options{ display:none; }
.options.is-open{
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:26px;
  animation:rise .3s var(--ease) both;
}
@keyframes rise{ from{ opacity:0; transform:translateY(-10px); } to{ opacity:1; transform:none; } }
.opt{
  display:flex; flex-direction:column; text-align:left; background:var(--ink-soft);
  border:1px solid var(--ink-line); border-radius:var(--radius-lg);
  padding:24px 22px; transition:border-color .2s var(--ease), transform .2s var(--ease),
  background .2s var(--ease);
}
.opt__note, .opt__go, .opt__call{ align-self:flex-start; }
.opt__go, .opt__call{ margin-top:auto; }
.opt:hover{ border-color:var(--lime); transform:translateY(-3px); background:#1A231E; }
.opt h2{ font-size:19px; margin-bottom:7px; }
.opt p{ font-size:14.5px; color:rgba(255,255,255,.6); line-height:1.5; }
.opt__note{ display:inline-block; margin:14px 0 18px; font-size:13px; font-weight:650;
  color:var(--lime); background:rgba(203,242,76,.1); border:1px solid rgba(203,242,76,.22);
  padding:5px 11px; border-radius:999px; }
.opt__go{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 18px; border-radius:999px; border:1.5px solid rgba(255,255,255,.22);
  font-size:16px; font-weight:700; color:var(--white); align-self:stretch;
  transition:border-color .2s var(--ease), background .2s var(--ease); }
.opt:hover .opt__go{ border-color:var(--lime); background:rgba(203,242,76,.08); }
.opt__go svg{ width:17px; height:17px; color:var(--lime); }
.opt__call{
  display:flex; align-items:center; justify-content:center; gap:9px;
  background:var(--lime); color:var(--ink); border-radius:999px; padding:13px 18px;
  font-weight:750; font-size:16px; align-self:stretch;
  transition:background .2s var(--ease); }
.opt__call:hover{ background:var(--lime-dk); }
.opt__call svg{ width:17px; height:17px; }
.opt__or{ display:block; text-align:center; margin-top:11px; font-size:13.5px;
  color:rgba(255,255,255,.55); text-decoration:underline; text-underline-offset:3px; }
.opt__or:hover{ color:var(--white); }

.fine{ margin-top:28px; text-align:center; font-size:13.5px;
  color:rgba(255,255,255,.42); max-width:52ch; margin-inline:auto; line-height:1.6; }

/* --- request page --------------------------------------------------- */
.back{ display:inline-flex; align-items:center; gap:7px; font-size:14.5px; font-weight:600;
  color:rgba(255,255,255,.55); margin-bottom:22px; }
.back:hover{ color:var(--white); }
.back svg{ width:16px; height:16px; }

.head{ margin-bottom:24px; }
.head h1{ font-size:clamp(30px,5.6vw,42px); margin-bottom:10px; }
.head p{ color:rgba(255,255,255,.62); font-size:16px; }
.tag{ display:inline-flex; align-items:center; gap:8px; background:rgba(203,242,76,.1);
  border:1px solid rgba(203,242,76,.25); color:var(--lime); font-size:13.5px; font-weight:650;
  padding:6px 13px; border-radius:999px; margin-bottom:16px; }
.tag svg{ width:14px; height:14px; }

.card{ background:var(--white); color:var(--ink); border-radius:var(--radius-lg);
  padding:clamp(22px,4vw,30px); }

.field{ margin-bottom:18px; }
.field:last-of-type{ margin-bottom:0; }
.field label{ display:block; font-size:14.5px; font-weight:650; margin-bottom:7px; }
.field .opt-note{ font-weight:450; color:var(--muted); font-size:13px; margin-left:4px; }
.field input[type=text], .field input[type=tel], .field input[type=email],
.field input[type=date], .field textarea{
  width:100%; padding:14px 16px; border:1.5px solid var(--gray-200); border-radius:12px;
  background:var(--white); font-size:16px;      /* 16px = no zoom on iPhone */
  transition:border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea{ min-height:92px; resize:vertical; line-height:1.5; }
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--ink);
  box-shadow:0 0 0 4px rgba(203,242,76,.4); }
.field.bad input, .field.bad textarea{ border-color:var(--red); }
.err{ display:none; font-size:13px; color:var(--red); margin-top:6px; font-weight:550; }
.field.bad .err{ display:block; }

.when{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.when button{
  padding:14px 12px; border:1.5px solid var(--gray-200); border-radius:12px; background:var(--white);
  font-size:15px; font-weight:600; cursor:pointer; text-align:center;
  transition:border-color .15s var(--ease), background .15s var(--ease); }
.when button:hover{ border-color:var(--muted); }
.when button.on{ border-color:var(--ink); background:var(--ink); color:var(--lime); }

.drop{ border:1.5px dashed var(--gray-200); border-radius:12px; padding:20px; text-align:center;
  background:var(--gray-50); cursor:pointer; transition:border-color .15s var(--ease); }
.drop:hover{ border-color:var(--ink); }
.drop svg{ width:22px; height:22px; color:var(--muted); margin:0 auto 8px; }
.drop b{ display:block; font-size:14.5px; }
.drop span{ font-size:13px; color:var(--muted); }
.thumbs{ display:flex; flex-wrap:wrap; gap:9px; margin-top:12px; }
.thumb{ position:relative; width:66px; height:66px; border-radius:10px; overflow:hidden;
  border:1px solid var(--gray-200); }
.thumb img{ width:100%; height:100%; object-fit:cover; }
.thumb button{ position:absolute; top:3px; right:3px; width:19px; height:19px; border-radius:50%;
  background:rgba(11,15,13,.82); color:#fff; border:0; cursor:pointer; font-size:12px;
  display:grid; place-items:center; padding:0; line-height:1; }

.send{ width:100%; margin-top:24px; background:var(--ink); color:var(--white); border:0;
  border-radius:999px; padding:18px; font-family:var(--font-display); font-weight:750;
  font-size:17px; cursor:pointer; transition:background .2s var(--ease); }
.send:hover{ background:var(--ink-soft); }
.send:disabled{ opacity:.6; cursor:default; }

.orcall{ margin-top:16px; text-align:center; font-size:14.5px; color:var(--muted); }
.orcall a{ font-weight:700; color:var(--ink); }

/* success */
.done{ text-align:center; padding:14px 0; }
.done__i{ width:64px; height:64px; border-radius:50%; background:var(--lime); color:var(--ink);
  display:grid; place-items:center; margin:0 auto 20px; animation:pop .45s var(--ease); }
@keyframes pop{ 0%{transform:scale(.4);opacity:0} 60%{transform:scale(1.07)} 100%{transform:scale(1);opacity:1} }
.done__i svg{ width:30px; height:30px; }
.done h2{ font-size:26px; margin-bottom:10px; }
.done p{ color:var(--muted); max-width:36ch; margin:0 auto; }
.demo{ margin-top:20px; padding:12px 15px; border-radius:12px; background:#FFF8E6;
  border:1px solid #F5D98B; color:#7A5B00; font-size:13px; line-height:1.5; text-align:left; }

/* --- footer --------------------------------------------------------- */
.foot{ padding:26px 0 30px; border-top:1px solid var(--ink-line); margin-top:auto; }
.foot__in{ display:flex; flex-wrap:wrap; gap:10px 18px; align-items:center;
  justify-content:space-between; font-size:13.5px; color:rgba(255,255,255,.45); }
.foot a:hover{ color:var(--lime); }
.foot nav{ display:flex; flex-wrap:wrap; gap:8px 16px; }

/* --- legal pages ---------------------------------------------------- */
.legal{ background:var(--white); color:var(--ink); border-radius:var(--radius-lg);
  padding:clamp(24px,4vw,36px); }
.legal h1{ font-size:clamp(27px,5vw,36px); margin-bottom:6px; }
.legal .upd{ color:var(--muted); font-size:14px; margin-bottom:26px; }
.legal h2{ font-size:18px; margin:26px 0 8px; }
.legal p, .legal li{ color:var(--muted); font-size:15.5px; line-height:1.68; }
.legal ul{ list-style:disc; padding-left:20px; margin:8px 0; }
.legal a{ color:var(--ink); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.legal .warn{ background:#FFF8E6; border:1px solid #F5D98B; color:#7A5B00; border-radius:12px;
  padding:14px 17px; font-size:14px; line-height:1.55; margin-bottom:26px; }

/* --- small screens -------------------------------------------------- */
@media (max-width:600px){
  .options.is-open{ grid-template-columns:1fr; }
  .cta{ width:100%; }
  .foot__in{ flex-direction:column; align-items:flex-start; gap:12px; }
}

@media (max-width:380px){
  :root{ --pad:16px; }
  .logo{ font-size:18px; }
  .logo__mark{ width:29px; height:29px; }
  .top__call{ font-size:14px; }
  .opt__call{ font-size:15px; padding:13px 12px; }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
