/* ===== HAAY INC ONE-PAGER ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset sticky nav */
}
:root {
  --hue: 260;                    /* tweakable — default matches logo blue */
  --dens: 1;                     /* density multiplier */
  --accent: oklch(0.435 0.177 var(--hue));  /* L + C locked to logo blue */
  --accent-soft: oklch(0.92 0.05 var(--hue));
  --accent-ink: oklch(0.32 0.14 var(--hue));

  --bg: oklch(0.985 0.004 90);   /* warm off-white */
  --panel: oklch(0.965 0.005 90);
  --ink: oklch(0.18 0.01 60);
  --ink-2: oklch(0.35 0.008 60);
  --ink-3: oklch(0.55 0.008 60);
  --line: oklch(0.88 0.006 60);
  --line-2: oklch(0.80 0.008 60);

  --serif: "Fraunces", Georgia, serif;
  --display: "Space Grotesk", "Neue Haas Grotesk", Helvetica, Arial, sans-serif;
  --sans: "Inter", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --maxw: 1400px;
  --pad-x: clamp(20px, 4vw, 80px);
  --gap: calc(var(--dens) * 80px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--accent); color: white; }

/* ===== TYPE ===== */
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.lede {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
  text-wrap: pretty;
}
p { color: var(--ink-2); text-wrap: pretty; }

.accent-word { color: var(--accent); }

.mono-meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sl-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  padding: 4px 8px;
  color: var(--ink);
  font-weight: 600;
}
.sl-rule {
  flex: 0 0 60px;
  height: 1px;
  background: var(--line-2);
}
.sl-text { color: var(--ink); font-weight: 500; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg), transparent 8%);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a { position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.lang-switch {
  position: relative;
  display: inline-block;
}
.lang-trigger {
  appearance: none;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 10px 6px 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .15s, background .15s;
}
.lang-trigger:hover { border-color: var(--ink); }
.lang-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lang-caret {
  color: var(--ink-3);
  transition: transform .18s;
  margin-left: 2px;
}
.lang-caret.open { transform: rotate(180deg); }

.lang-flag {
  display: inline-flex;
  width: 18px;
  height: 12px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex: 0 0 auto;
}
.lang-flag svg { display: block; width: 100%; height: 100%; }
.lang-code { display: inline-block; }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.04);
  animation: langMenuIn .14s ease-out;
}
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-menu li { margin: 0; padding: 0; }
.lang-opt {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  transition: background .12s;
}
.lang-opt:hover { background: var(--panel); }
.lang-opt.on { background: var(--panel); font-weight: 500; }
.lang-opt.on::before {
  content: "";
  position: absolute;
}
.lang-opt-label { flex: 1; }
.lang-opt-code {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

@media (max-width: 720px) {
  .lang-trigger .lang-code { display: none; }
  .lang-trigger { padding: 6px 8px 6px 7px; }
  .lang-menu { min-width: 170px; }
}
.nav-cta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  100% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}
.pulse {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; margin-right: 8px;
  animation: pulse 1.8s ease-out infinite;
}

/* ===== HERO ===== */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) var(--pad-x) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.hero-tag { display: inline-flex; align-items: center; }
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 5.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 24px 0 28px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.15vw, 19px);
  max-width: 48ch;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats > div {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 16px;
}
.hero-stats b {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-self: start;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  background: var(--panel);
  overflow: hidden;
}
.hero-photo.tall { aspect-ratio: 3 / 4; min-height: 520px; max-height: 720px; }
.hero-photo.small { aspect-ratio: 16 / 9; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo video { width: 100%; height: 100%; object-fit: contain; display: block; background: #ffffff; }
.photo-caption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,0.92);
  padding: 8px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  border-left: 2px solid var(--accent);
}

/* ===== MARQUEE ===== */
.marquee {
  margin: clamp(64px, 8vw, 120px) calc(var(--pad-x) * -1) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--panel);
}
.marquee-track {
  display: inline-flex; gap: 44px;
  animation: scroll 58s linear infinite;
  padding-left: 44px;
}
.marquee-item {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 20px;
}
.m-dot { color: var(--accent); font-size: 22px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
section.about, section.services, section.why, section.process, section.gallery, section.contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--gap) * 1.1) var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about-copy p { font-size: 16px; max-width: 60ch; }
.about-copy p + p { margin-top: 16px; }
.about-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 44px;
  border: 1px solid var(--line);
}
.about-badges .badge {
  background: var(--bg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.about-badges b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.about-badges span { color: var(--ink-2); font-size: 14px; }
.about-media {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 600px;
  aspect-ratio: 2 / 3;
  margin-left: auto;
  background: #ffffff;
  overflow: hidden;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media video { width: 100%; height: 100%; object-fit: cover; display: block; background: #ffffff; }
html[dir="rtl"] .about-media { margin-left: 0; margin-right: auto; }

/* ===== SERVICES ===== */
.services-h { max-width: 22ch; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 56px;
  border: 1px solid var(--line);
}
.svc-card {
  background: var(--bg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid transparent;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  will-change: transform;
}
.svc-card:hover {
  background: var(--bg);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 72, 176, 0.10), 0 2px 6px rgba(0,0,0,0.04);
}
.svc-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
  position: relative;
}
.svc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.svc-card:hover .svc-photo::after { opacity: 0.12; }
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-body { display: flex; flex-direction: column; gap: 8px; }
.svc-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  transition: color .25s ease;
}
.svc-card:hover .svc-body h3 { color: var(--accent); }
.svc-body p { font-size: 15px; }

/* ===== WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
}
.why-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: padding-left .25s;
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row:hover { padding-left: 12px; background: var(--panel); }
.why-row b {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
}
.why-row span { color: var(--ink-2); font-size: 16px; }

/* ===== PROCESS ===== */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line-2);
  position: relative;
}
.proc-step {
  padding: 32px 24px 32px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background .25s, transform .25s, box-shadow .25s;
  cursor: default;
}
.proc-step:first-child { padding-left: 0; }
.proc-step:first-child:hover { padding-left: 24px; }
.proc-step:last-child { border-right: none; }
.proc-step:hover {
  background: var(--panel);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 72, 176, 0.08);
  z-index: 2;
}
.proc-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 8px;
  transition: transform .3s ease, letter-spacing .3s ease;
  transform-origin: left center;
}
.proc-step:hover .proc-num {
  transform: scale(1.12);
  letter-spacing: -0.02em;
}
.proc-time {
  position: absolute;
  top: 12px; right: 16px;
  padding: 3px 7px;
  background: var(--panel);
  color: var(--ink-2);
  transition: background .25s, color .25s;
}
.proc-step:hover .proc-time {
  background: var(--accent);
  color: #fff;
}
.proc-step:last-child .proc-time { right: 0; }
.proc-step h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color .25s ease;
}
.proc-step:hover h4 { color: var(--accent); }
.proc-step p { font-size: 14px; margin: 0; }

/* ===== GALLERY ===== */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gal-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
}
.gal-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.95);
}
.gal-cell:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gal-meta {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  padding: 4px 8px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.contact-card {
  padding: 28px;
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, background .2s, transform .2s;
  border-radius: var(--radius);
}
.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.contact-card b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.big-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 6px 0;
}
.big-num.small {
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: 0;
  line-height: 1.4;
  font-family: var(--sans);
  font-weight: 400;
}
.c-cta {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}
.contact-card--quiet {
  cursor: default;
}
.contact-card--quiet:hover { transform: none; border-color: var(--line-2); }
.c-cta--muted { color: var(--ink-3); }
.foot-mail { color: inherit; border-bottom: 1px dotted var(--line-2); }
.foot-mail:hover { color: var(--ink); border-bottom-color: var(--ink); }

.contact-right {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
  font-size: 14px;
}
.contact-right address {
  font-style: normal;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 6px;
}
.hours { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.hours-row:last-child { border-bottom: 1px solid var(--line); }
.svc-area div {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ===== FOOTER ===== */
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--pad-x) 40px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.foot-logo { display: inline-flex; }
.foot-logo img { height: 88px; width: auto; display: block; }
.foot-tag {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.foot-disclaimer {
  max-width: 80ch;
  margin: 32px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-3);
}

.foot-bottom {
  display: flex; justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== FOOTER MID (legal links) ===== */
.foot-mid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.foot-col .mono-meta {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-3);
}
.foot-addr {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}
.foot-addr a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.foot-addr a:hover,
.foot-addr a:focus-visible { color: var(--accent); border-color: var(--accent); outline: none; }
.foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.9;
}
.foot-links a {
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.foot-links a:hover,
.foot-links a:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  outline: none;
}

@media (max-width: 720px) {
  .foot-mid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== TWEAKS PANEL ===== */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 300px;
  padding: 18px;
  background: oklch(0.14 0.01 60);
  color: oklch(0.95 0.005 60);
  border: 1px solid oklch(0.30 0.01 60);
  border-radius: 6px;
  z-index: 100;
  font-size: 13px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  font-family: var(--sans);
}
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.tweaks-head b {
  font-family: var(--display); font-weight: 500;
  font-size: 15px; letter-spacing: -0.01em;
}
.tweaks-head .mono-meta { color: oklch(0.7 0.12 140); }
.tw-row {
  padding: 10px 0;
  border-top: 1px solid oklch(0.28 0.01 60);
  display: flex; flex-direction: column; gap: 8px;
}
.tw-row label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.65 0.008 60);
  display: flex; justify-content: space-between; align-items: center;
}
.tw-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.tw-pill {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid oklch(0.30 0.01 60);
  color: oklch(0.85 0.005 60);
  font-size: 12px;
  font-family: var(--sans);
  cursor: pointer;
  border-radius: 3px;
  text-transform: capitalize;
  transition: background .15s, border-color .15s;
}
.tw-pill:hover { border-color: oklch(0.5 0.01 60); }
.tw-pill.on { background: var(--accent); border-color: var(--accent); color: white; }
.tw-row input[type=range] {
  width: 100%;
  accent-color: var(--accent);
}

/* ===== DIRECTION VARIANTS ===== */
/* default = industrial (as-is) */

/* warm */
body[data-direction="warm"] {
  --bg: oklch(0.96 0.015 70);
  --panel: oklch(0.92 0.02 70);
  --ink: oklch(0.22 0.03 50);
  --ink-2: oklch(0.38 0.025 50);
  --ink-3: oklch(0.55 0.02 50);
  --line: oklch(0.85 0.02 70);
  --line-2: oklch(0.75 0.025 70);
  --display: "Fraunces", Georgia, serif;
}
body[data-direction="warm"] .hero-title,
body[data-direction="warm"] .h2,
body[data-direction="warm"] .marquee-item,
body[data-direction="warm"] .svc-body h3,
body[data-direction="warm"] .why-row b,
body[data-direction="warm"] .big-num,
body[data-direction="warm"] .contact-right address,
body[data-direction="warm"] .about-badges b,
body[data-direction="warm"] .proc-step h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

/* editorial — serif + tight grid */
body[data-direction="editorial"] {
  --bg: oklch(0.98 0.003 90);
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --accent: oklch(0.45 0.12 var(--hue));
}
body[data-direction="editorial"] .hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
body[data-direction="editorial"] .h2,
body[data-direction="editorial"] .svc-body h3,
body[data-direction="editorial"] .why-row b,
body[data-direction="editorial"] .big-num,
body[data-direction="editorial"] .about-badges b {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}

/* shop — dark */
body[data-direction="shop"] {
  --bg: oklch(0.16 0.008 60);
  --panel: oklch(0.22 0.01 60);
  --ink: oklch(0.96 0.005 60);
  --ink-2: oklch(0.78 0.008 60);
  --ink-3: oklch(0.60 0.008 60);
  --line: oklch(0.28 0.01 60);
  --line-2: oklch(0.38 0.012 60);
  --accent: oklch(0.75 0.18 var(--hue));
}
body[data-direction="shop"] .btn-primary {
  background: var(--accent); color: oklch(0.15 0.01 60);
}
body[data-direction="shop"] .btn-primary:hover { background: var(--ink); color: var(--bg); }
body[data-direction="shop"] .nav-cta:hover { background: var(--accent); color: oklch(0.15 0.01 60); border-color: var(--accent); }
body[data-direction="shop"] .photo-caption,
body[data-direction="shop"] .gal-meta {
  background: rgba(0,0,0,0.65);
  color: var(--ink);
}
body[data-direction="shop"] .nav { background: color-mix(in oklab, var(--bg), transparent 8%); }
body[data-direction="shop"] .logo-invert { filter: invert(1) hue-rotate(180deg); }
body[data-direction="shop"] .nav-logo img,
body[data-direction="shop"] .foot-logo img { filter: invert(1) hue-rotate(180deg) saturate(0.6) brightness(1.1); }

/* ===== Language-specific fonts ===== */
body[data-lang="ar"] {
  font-family: "Noto Sans Arabic", "Inter", Helvetica, Arial, sans-serif;
}
body[data-lang="ar"] .h2,
body[data-lang="ar"] .hero-title,
body[data-lang="ar"] .legal-wrap h1 {
  font-family: "Noto Sans Arabic", "Space Grotesk", sans-serif;
}
body[data-lang="ar"] .lede {
  font-family: "Noto Sans Arabic", "Fraunces", serif;
}

body[data-lang="hy"] {
  font-family: "Noto Serif Armenian", "Inter", Helvetica, Arial, sans-serif;
}
body[data-lang="hy"] .h2,
body[data-lang="hy"] .hero-title,
body[data-lang="hy"] .legal-wrap h1 {
  font-family: "Noto Serif Armenian", "Space Grotesk", sans-serif;
}
body[data-lang="hy"] .hero-title {
  font-size: clamp(34px, 4.8vw, 72px);
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* ===== RTL support (Arabic) ===== */
body[data-lang="zh"] {
  font-family: "Noto Sans SC", "Inter", Helvetica, Arial, sans-serif;
}
body[data-lang="zh"] .h2,
body[data-lang="zh"] .hero-title,
body[data-lang="zh"] .legal-wrap h1 {
  font-family: "Noto Sans SC", "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
}
body[data-lang="zh"] .lede {
  font-family: "Noto Sans SC", "Fraunces", serif;
}

body[data-lang="fa"] {
  font-family: "Noto Sans Arabic", "Inter", Helvetica, Arial, sans-serif;
}
body[data-lang="fa"] .h2,
body[data-lang="fa"] .hero-title,
body[data-lang="fa"] .legal-wrap h1 {
  font-family: "Noto Sans Arabic", "Space Grotesk", sans-serif;
}
body[data-lang="fa"] .lede {
  font-family: "Noto Sans Arabic", "Fraunces", serif;
}

body[data-lang="tr"] {
  /* Turkish — default Inter/Space Grotesk handles Latin extended */
}

html[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .section-label .sl-rule { transform: scaleX(-1); }
html[dir="rtl"] .m-dot { margin: 0 0 0 6px; }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
html[dir="rtl"] .c-cta,
html[dir="rtl"] .btn-primary svg { transform: scaleX(-1); }
html[dir="rtl"] .proc-step,
html[dir="rtl"] .why-row,
html[dir="rtl"] .svc-body,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .contact-left,
html[dir="rtl"] .contact-right { text-align: right; }
html[dir="rtl"] .hero-left,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-sub { text-align: right; }
html[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
html[dir="rtl"] .hours-row { flex-direction: row-reverse; }
html[dir="rtl"] .foot-mid,
html[dir="rtl"] .about-grid,
html[dir="rtl"] .hero-grid { direction: rtl; }
html[dir="rtl"] .foot-links { padding-right: 0; }
html[dir="rtl"] ul { padding-right: 22px; padding-left: 0; }
html[dir="rtl"] .hero-title br { display: none; }

html[dir="rtl"] .hero-title {
  display: flex;
  flex-direction: column;
}

/* ===== PHOTO TREATMENTS ===== */
body[data-photo="duotone"] .hero-photo img,
body[data-photo="duotone"] .svc-photo img,
body[data-photo="duotone"] .about-media img,
body[data-photo="duotone"] .gal-cell img {
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: multiply;
}
body[data-photo="duotone"] .hero-photo,
body[data-photo="duotone"] .svc-photo,
body[data-photo="duotone"] .about-media,
body[data-photo="duotone"] .gal-cell {
  background: var(--accent);
}
body[data-photo="mono"] .hero-photo img,
body[data-photo="mono"] .svc-photo img,
body[data-photo="mono"] .about-media img,
body[data-photo="mono"] .gal-cell img {
  filter: grayscale(1) contrast(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 16 / 10; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-step { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-left: 0 !important; }
  .why-row { grid-template-columns: 40px 1fr; }
  .why-row span { grid-column: 2 / 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-logo img { height: 60px; }
  .foot-logo img { height: 60px; }
  .hero-right { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div { padding: 16px 0; border-top: 1px solid var(--line); }
  .hero-stats > div:nth-child(1), .hero-stats > div:nth-child(2) { border-top: none; }
  .svc-grid, .gal-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
}

/* ===== BLUEPRINT — Anatomy of a repair ===== */
.blueprint {
  padding: var(--gap) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.bp-head {
  max-width: 780px;
  margin-bottom: 48px;
}
.bp-head .h2 { margin: 8px 0 16px; }
.bp-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line-2);
  background: var(--bg);
}
.bp-stage {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, oklch(0.32 0.12 var(--hue)) 0%, oklch(0.18 0.08 var(--hue)) 70%, oklch(0.12 0.05 var(--hue)) 100%);
  aspect-ratio: 900 / 700;
  overflow: hidden;
  border-right: 1px solid var(--line-2);
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.bp-grid, .bp-mixer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bp-mixer {
  filter: drop-shadow(0 0 8px rgba(180, 210, 255, 0.15));
}
.bp-mixer g {
  stroke: #eaf3ff;
}
.bp-footnote {
  position: absolute;
  left: 24px;
  bottom: 16px;
  color: rgba(234, 243, 255, 0.55);
}
.bp-footnote .mono-meta {
  color: rgba(234, 243, 255, 0.55);
  font-size: 11px;
  letter-spacing: 2px;
}
/* hotspot layer */
.bp-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bp-hot {
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  color: #eaf3ff;
  font-family: var(--mono);
  pointer-events: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.bp-hot-dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(234, 243, 255, 0.9);
  position: relative;
  flex: 0 0 auto;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.bp-hot-dot::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px dashed rgba(234, 243, 255, 0.35);
  opacity: 0;
  transition: opacity .25s ease, transform .4s ease;
  transform: scale(0.7);
}
.bp-hot-code {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border: 1px solid rgba(234, 243, 255, 0.7);
  background: rgba(10, 30, 70, 0.5);
  color: #eaf3ff;
  font-size: 11px;
  letter-spacing: 0;
  transition: background .25s, border-color .25s, color .25s;
}
.bp-hot-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(234, 243, 255, 0.65);
  white-space: nowrap;
  padding: 3px 8px;
  background: rgba(10, 30, 70, 0.55);
  border: 1px solid rgba(234, 243, 255, 0.15);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease, color .25s, background .25s;
}
.bp-hot:hover .bp-hot-label,
.bp-hot:focus-visible .bp-hot-label,
.bp-hot.is-active .bp-hot-label {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
  background: rgba(10, 30, 70, 0.85);
  border-color: rgba(234, 243, 255, 0.5);
}
.bp-hot:hover .bp-hot-dot,
.bp-hot:focus-visible .bp-hot-dot,
.bp-hot.is-active .bp-hot-dot {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.bp-hot:hover .bp-hot-dot::before,
.bp-hot.is-active .bp-hot-dot::before {
  opacity: 1;
  transform: scale(1);
}
.bp-hot:hover .bp-hot-code,
.bp-hot.is-active .bp-hot-code {
  background: #fff;
  color: oklch(0.2 0.1 var(--hue));
  border-color: #fff;
}

/* detail panel */
.bp-detail {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
}
.bp-detail-num {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.bp-detail-code {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.bp-detail-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.bp-detail-fault {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  min-height: 3em;
}
.bp-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.bp-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, padding .25s ease;
}
.bp-chip:hover, .bp-chip.is-active {
  color: var(--accent);
  padding-left: 6px;
}
.bp-chip-code {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  transition: background .2s, border-color .2s, color .2s;
}
.bp-chip:hover .bp-chip-code, .bp-chip.is-active .bp-chip-code {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.bp-cta {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.bp-cta:hover { background: var(--accent); }

@media (max-width: 900px) {
  .bp-wrap { grid-template-columns: 1fr; }
  .bp-stage { border-right: none; border-bottom: 1px solid var(--line-2); }
  .bp-hot-label { display: none; }
  .bp-detail { padding: 28px 20px; }
}

/* ===== CURSOR ===== */
/* Using default system cursors */



/* ===== GRILLS SECTION ===== */
.grills {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid var(--line);
}
.grills-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.grills-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.14em;
}
.grills-h {
  margin-top: 0;
  max-width: 22ch;
}
.grills-copy .lede { margin-bottom: 32px; }
.grills-product {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 32px;
}
.grills-product-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.grills-product-tagline {
  margin: 0 0 20px;
  color: var(--ink-2);
  max-width: 56ch;
}
.grills-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.grills-specs li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.grills-specs li:last-child { border-bottom: none; }
.grills-specs li .mono-meta { flex: 0 0 32px; padding-top: 2px; }
.grills-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 8px;
  margin-bottom: 16px;
  transition: background .15s, color .15s;
}
.grills-cta:hover { background: var(--accent); }
.grills-note {
  font-size: 11px;
  color: var(--ink-3);
  margin: 12px 0 0;
}
.grills-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--panel);
  overflow: hidden;
}
.grills-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RTL */
html[dir="rtl"] .grills-grid { direction: rtl; }
html[dir="rtl"] .grills-specs li { text-align: right; }

/* Responsive */
@media (max-width: 1100px) {
  .grills-grid { grid-template-columns: 1fr; gap: 32px; }
  .grills-media { aspect-ratio: 16 / 10; }
}


/* ===== RESPONSIVE — HERO (final, overrides earlier) ===== */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(20px, 3vw, 36px);
  }
  .hero-title {
    font-size: clamp(36px, 5.6vw, 64px);
  }
  .hero-photo.tall {
    min-height: 360px;
    max-height: 560px;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: clamp(20px, 5vw, 40px) var(--pad-x) 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-left {
    order: 1;
  }
  .hero-right {
    order: 2;
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1.04;
    margin: 14px 0 18px;
  }
  /* Let the title flow naturally instead of forcing 4-line break */
  .hero-title br {
    display: none;
  }
  .hero-title .accent-word {
    /* Inline accent word so it doesn't force a line break */
    display: inline;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .hero-cta-row .btn,
  .hero-cta-row .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-photo.tall {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    max-height: 480px;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0;
    margin-top: 28px;
  }
  .hero-stats > div {
    padding: 14px 6px !important;
    border-top: 1px solid var(--line) !important;
    border-right: 1px solid var(--line);
    text-align: left;
  }
  .hero-stats > div:last-child {
    border-right: none;
  }
  .hero-stats b {
    font-size: 22px;
  }
  /* Marquee tighter */
  .marquee {
    margin-top: 36px;
    padding: 16px 0;
  }
  .marquee-item {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(30px, 8.5vw, 40px);
  }
  .hero-photo.tall {
    min-height: 280px;
    max-height: 380px;
  }
  .hero-stats > div {
    padding: 10px 4px !important;
  }
  .hero-stats b {
    font-size: 18px;
  }
}


/* ===== RESPONSIVE — NAV (final) ===== */
/* Prevent horizontal overflow on the whole site (mobile bug fix) */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Tablet & mobile (≤1100px): collapse the call CTA to icon-only */
@media (max-width: 1100px) {
  .nav-inner {
    gap: 12px;
    padding: 12px var(--pad-x);
  }
  .nav-cta {
    /* Icon-only circular button */
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    flex: 0 0 auto;
  }
  .nav-cta-text {
    /* Hide the "Call now - 647-654-9834" text */
    display: none;
  }
  .nav-cta-icon {
    width: 18px !important;
    height: 18px !important;
  }
  .nav-right {
    margin-left: auto;
    gap: 14px;
    flex: 0 0 auto;
  }
}

/* Mobile (≤720px): tighter logo, hide nav links */
@media (max-width: 720px) {
  .nav-inner {
    gap: 8px;
    padding: 10px var(--pad-x);
  }
  .nav-logo img {
    height: 44px !important;
    width: auto !important;
  }
  .nav-right {
    margin-left: auto;
    gap: 12px;
  }
  .nav-cta {
    width: 36px;
    height: 36px;
  }
  .nav-cta-icon {
    width: 16px !important;
    height: 16px !important;
  }
}
