/* =========================================================
   Arical Solutions — site stylesheet
   Gold on charcoal. Mobile-first. No build step, no CDN.
   Colours are only ever used via the variables below.
   ========================================================= */

:root {
  --ink:        #0E0E0F;
  --ink-2:      #141416;
  --ink-3:      #1B1C1F;
  --panel:      rgba(255, 255, 255, 0.035);
  --panel-hi:   rgba(255, 255, 255, 0.06);
  --line:       rgba(255, 255, 255, 0.10);
  --line-hi:    rgba(201, 162, 39, 0.45);

  --gold:       #C9A227;
  --gold-hi:    #E8CE7A;
  --gold-dim:   rgba(201, 162, 39, 0.14);
  --gold-grad:  linear-gradient(135deg, #8A6D1A 0%, #C9A227 28%, #F0DA96 52%, #C9A227 74%, #8A6D1A 100%);

  --text:       #EDEDEF;
  --muted:      #A3A3AC;
  --muted-2:    #76767F;
  --danger:     #E5533D;

  --r:          14px;
  --r-sm:       9px;
  --maxw:       1160px;
  --pad:        clamp(20px, 5vw, 40px);

  --head: "Barlow Condensed", "Oswald", "Haettenschweiler", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); letter-spacing: 0.04em; }
p  { margin: 0 0 1.1em; color: var(--muted); }
p.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: #C9C9D2; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(56px, 9vw, 108px) 0; position: relative; }
.section--alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Gold text treatment used for the wordmark and figures */
.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Eyebrow label ------------------------------------- */
.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 0.9em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-hi), transparent); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }

/* ---- Buttons ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 26px;
  border-radius: var(--r-sm); border: 1px solid transparent;
  font-family: var(--head); font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn-gold {
  background: var(--gold-grad); color: #17130A;
  box-shadow: 0 6px 26px rgba(201, 162, 39, 0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(201, 162, 39, 0.34); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--panel); }
.btn-ghost:hover { border-color: var(--line-hi); color: var(--gold-hi); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Header -------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14, 14, 15, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__wm { width: auto; height: 26px; flex: none; }
@media (max-width: 400px) { .brand__wm { height: 22px; } }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 0.87rem; letter-spacing: 0.05em; color: var(--muted);
  transition: color .16s ease, background .16s ease;
}
.nav a:hover { color: var(--text); background: var(--panel); }
.nav a.is-active { color: var(--gold-hi); }
.hdr .btn { display: none; }

.burger {
  margin-left: auto; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--text); cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8, 8, 9, 0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; flex-direction: column; padding: 18px var(--pad) 40px;
  overflow-y: auto;
}
.drawer.is-open { display: flex; }
.drawer__top { display: flex; align-items: center; min-height: 54px; margin-bottom: 18px; }
.drawer__close {
  margin-left: auto; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--text); cursor: pointer;
}
.drawer__close svg { width: 22px; height: 22px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a {
  font-family: var(--head); font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--text);
}
.drawer nav a.sub { font-family: var(--body); font-size: 0.98rem; text-transform: none; letter-spacing: 0; color: var(--muted); padding: 11px 0 11px 16px; }
.drawer nav a.is-active { color: var(--gold-hi); }
.drawer .btn { margin-top: 26px; }

@media (min-width: 940px) {
  .nav { display: flex; }
  .burger { display: none; }
  .hdr .btn { display: inline-flex; }
}

/* Dropdown for services in the desktop nav */
.nav__item { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 480px; padding: 12px;
  background: #121214; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.62);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .17s ease, transform .17s ease, visibility .17s;
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__panel a { display: block; padding: 9px 12px; font-size: 0.88rem; }

/* ---- Hero ---------------------------------------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(201, 162, 39, 0.16) 0%, transparent 58%),
    radial-gradient(90% 70% at 10% 100%, rgba(201, 162, 39, 0.07) 0%, transparent 62%),
    var(--ink);
}
.hero__hex {
  position: absolute; z-index: 0; right: -14%; top: 50%; transform: translateY(-50%);
  width: min(760px, 78vw); opacity: 0.13; pointer-events: none;
}
/* NOTE: set padding-top/bottom only — a `padding` shorthand here would wipe
   out the horizontal gutter .wrap provides, and the text would run flush to
   the screen edge on a phone. Same applies to .phero__in and .cta__in. */
.hero__in { position: relative; z-index: 1; padding-top: clamp(72px, 14vw, 150px); padding-bottom: clamp(64px, 11vw, 120px); }
.hero__in > * { max-width: 760px; }
.hero h1 { margin-bottom: 0.32em; }
.hero h1 span { display: block; }
.hero .lead { max-width: 56ch; }
.hero .btn-row { margin-top: 34px; }

/* Page (non-home) hero */
.phero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.phero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(100% 100% at 82% 0%, rgba(201, 162, 39, 0.13) 0%, transparent 60%), var(--ink);
}
.phero__in { position: relative; z-index: 1; padding-top: clamp(52px, 9vw, 96px); padding-bottom: clamp(40px, 7vw, 72px); }
.phero__in > * { max-width: 780px; }
.crumb { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 18px; letter-spacing: 0.04em; }
.crumb a:hover { color: var(--gold-hi); }
.crumb span { margin: 0 8px; opacity: 0.5; }

/* ---- Trust strip --------------------------------------- */
.strip { border-bottom: 1px solid var(--line); background: var(--ink-2); }
.strip__in { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.strip__i { background: var(--ink-2); padding: 22px 18px; text-align: center; }
.strip__n { font-family: var(--head); font-size: clamp(1.6rem, 4vw, 2.3rem); letter-spacing: 0.02em; }
.strip__l { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
@media (min-width: 780px) { .strip__in { grid-template-columns: repeat(4, 1fr); } }

/* ---- Grid + cards -------------------------------------- */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
/* stretch (not center) so the photo column can be sticky on long pages —
   centring left the image floating in the middle of a tall text column */
@media (min-width: 900px) { .grid--split { grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; } }

.card {
  position: relative; display: flex; flex-direction: column;
  padding: 28px 26px 26px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .2s ease;
}
a.card:hover { border-color: var(--line-hi); transform: translateY(-3px); background: var(--panel-hi); }
a.card:hover::before { opacity: 0.85; }
.card__ico {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-dim); border: 1px solid rgba(201, 162, 39, 0.28); color: var(--gold-hi);
  margin-bottom: 20px; flex: none;
}
.card__ico svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 0.45em; }
.card p { margin-bottom: 0; font-size: 0.95rem; }
/* margin-top:auto pins this to the bottom so the link lines up across a row
   of cards whose blurbs are different lengths */
.card__more {
  margin-top: auto; padding-top: 20px; font-family: var(--head); font-size: 0.92rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
}
.card__more svg { width: 15px; height: 15px; transition: transform .2s ease; }
a.card:hover .card__more svg { transform: translateX(4px); }

/* ---- Service photo panel ------------------------------- */
/* The gradient is the FALLBACK. Drop a correctly-named photo into
   assets/img/services/ and it paints over the gradient automatically. */
.shot {
  position: relative; border-radius: var(--r); border: 1px solid var(--line);
  min-height: clamp(230px, 42vw, 400px);
  background-color: var(--ink-3);
  background-position: center; background-size: cover; background-repeat: no-repeat;
  background-image: linear-gradient(140deg, rgba(201,162,39,0.13) 0%, rgba(255,255,255,0.02) 42%, rgba(0,0,0,0.34) 100%);
  overflow: hidden; display: grid; place-items: center;
}
.shot--photo { background-blend-mode: normal; }
.shot__hex { width: 42%; max-width: 190px; opacity: 0.3; }
.shot--photo .shot__hex { display: none; }
@media (min-width: 900px) { .shot { position: sticky; top: 96px; } }

/* ---- Bullet lists -------------------------------------- */
.ticks { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; color: var(--muted); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--gold-grad);
}
.ticks--2 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .ticks--2 { grid-template-columns: repeat(2, 1fr); column-gap: 26px; } }

/* ---- Prose block --------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7em; color: var(--text); }

/* ---- Callout ------------------------------------------- */
.note {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  background: var(--panel); border-radius: var(--r-sm);
  padding: 20px 22px; margin: 0 0 1.6em;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: var(--text); }

/* ---- CTA band ------------------------------------------ */
.cta { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 50% 0%, rgba(201, 162, 39, 0.15) 0%, transparent 62%), var(--ink-2);
}
.cta__in { position: relative; z-index: 1; padding-top: clamp(52px, 8vw, 92px); padding-bottom: clamp(52px, 8vw, 92px); text-align: center; }
.cta__in h2 { margin-bottom: 0.35em; }
.cta__in p { max-width: 54ch; margin-left: auto; margin-right: auto; }
.cta .btn-row { justify-content: center; margin-top: 28px; }

/* ---- Contact ------------------------------------------- */
.cinfo { display: grid; gap: 14px; margin: 0 0 30px; }
.cinfo a, .cinfo div {
  display: flex; align-items: center; gap: 15px;
  padding: 17px 19px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel); transition: border-color .18s ease, background .18s ease;
}
.cinfo a:hover { border-color: var(--line-hi); background: var(--panel-hi); }
.cinfo__ico { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--gold-dim); color: var(--gold-hi); }
.cinfo__ico svg { width: 20px; height: 20px; }
.cinfo__l { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.cinfo__v { font-size: 1.05rem; color: var(--text); }

.form { display: grid; gap: 16px; }

/* Honeypot. Hidden from people without display:none — some bots skip anything
   that is display:none, and this one is meant to be found and filled in. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto; width: 1px; height: 1px;
  overflow: hidden;
}
.fld { display: grid; gap: 7px; }
.fld label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.fld input, .fld select, .fld textarea {
  width: 100%; min-height: 48px; padding: 12px 15px;
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--body); font-size: 1rem;
}
.fld textarea { min-height: 130px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}
.fld select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A3A3AC' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }

/* ---- Credentials --------------------------------------- */
.creds { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .creds { grid-template-columns: repeat(2, 1fr); } }
.cred {
  padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel);
}
.cred__t { font-family: var(--head); font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-hi); margin-bottom: 5px; }
.cred__v { font-size: 0.95rem; color: var(--muted); }

/* ---- Footer -------------------------------------------- */
.ftr { border-top: 1px solid var(--line); background: #0A0A0B; padding: clamp(44px, 7vw, 72px) 0 30px; }
.ftr__grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; } }
.ftr h4 { font-size: 0.8rem; letter-spacing: 0.2em; color: var(--muted-2); margin-bottom: 16px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr ul a { font-size: 0.92rem; color: var(--muted); }
.ftr ul a:hover { color: var(--gold-hi); }
.ftr p { font-size: 0.92rem; }
.ftr__bot {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: 0.82rem; color: var(--muted-2);
}

/* ---- Floating WhatsApp --------------------------------- */
.wafab {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #1FAF54; color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform .18s ease;
}
.wafab:hover { transform: scale(1.07); }
.wafab svg { width: 29px; height: 29px; }

/* ---- Reveal on scroll ---------------------------------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, a.card { transition: none; }
}
