/* =========================================================
   Utilise AI — rebuild of the nvrmndstudio.com visual system
   Original markup/CSS not reused. Values reconstructed from spec.
   Fonts: Inter (=SF Pro Display), Pixelify Sans (=OffBit solid),
          Handjet (=OffBit Dot).
   ========================================================= */

:root {
  --off-white: #f4f5f3;
  --black: #222222;
  --primary-brand-color: #4f7fff;   /* electric blue */
  --secondary-brand-color: #befd66;  /* lime */
  --white: #ffffff;
  --dim-text: #8c8c8c;
  --border: #bbbdc1;
  --mid-grey: #727272;
  --light-grey: #dddddd;
  --dot-green: #7ec51b;

  --text-color: var(--primary-brand-color);

  --primary: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  --offbit-1: "Pixelify Sans", "Inter", Arial, sans-serif;   /* solid pixel */
  --offbit-2: "Pixelify Sans", "Inter", Arial, sans-serif;   /* alt pixel */
  --offbit-3: "Handjet", "Pixelify Sans", Arial, sans-serif; /* dot matrix */

  --cubic-default: cubic-bezier(0.075, 0.82, 0.165, 1);
  --pad-global: 1rem;
}

/* ---------- reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: auto; scrollbar-width: none; -webkit-text-size-adjust: 100%; }
::-webkit-scrollbar { display: none; }

body {
  background-color: var(--off-white);
  color: var(--black);
  font-family: var(--primary);
  font-size: 18px;
  line-height: 20px;
  overflow-x: hidden;
}

::selection { background: var(--secondary-brand-color); }
::-moz-selection { background: var(--secondary-brand-color); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
em { font-style: italic; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ---------- layout primitives ---------- */
.rl-padding-global { padding-left: var(--pad-global); padding-right: var(--pad-global); }
.rl-padding-section-large { padding-top: 8rem; padding-bottom: 8rem; }
.rl-container-large { width: 100%; max-width: none; margin: 0 auto; position: relative; }
.container { position: relative; z-index: 50; background-color: var(--off-white); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.rl-heading-style-h2 { font-size: 3rem; font-weight: 500; line-height: 1.1;
  letter-spacing: -1px; text-transform: uppercase; }
.rl-heading-style-h3 { font-family: var(--primary); font-size: 2.5rem; font-weight: 400;
  line-height: 1.1; letter-spacing: 0; text-transform: capitalize; }
.rl-heading-style-h5 { font-size: 1.5rem; font-weight: 500; line-height: 1.1;
  letter-spacing: -0.5px; color: var(--black); }
.rl-heading-style-h6 { font-size: 1.2rem; font-weight: 500; line-height: 1; }

.rl-text-style-large   { font-size: 1.375rem; font-weight: 400; line-height: 1.4; letter-spacing: -0.2px; }
.rl-text-style-regular { font-size: 1.125rem; font-weight: 400; line-height: 1.4; color: var(--black); }
.rl-text-style-medium  { font-size: 1.25rem;  font-weight: 400; line-height: 1.4; letter-spacing: -0.1px; color: var(--black); }
.rl-text-style-small   { font-size: 1rem;     font-weight: 400; line-height: 1.35; letter-spacing: 0.2px; color: var(--black); }
.rl-text-style-tiny    { font-size: 0.875rem; font-weight: 400; line-height: 1.5; }
.rl-text-style-link    { font-size: 1rem; font-weight: 400; letter-spacing: 0.2px;
  text-transform: uppercase; color: var(--black); display: inline-block; }

/* type modifiers */
.light      { font-weight: 300; }
.medium     { font-weight: 500; }
.semi-bold  { font-weight: 600; }
.dim        { opacity: 0.8; }
.blue       { color: var(--primary-brand-color); }
.green      { color: var(--dot-green); }
.low-opacity{ opacity: 0.8; }
.no-wrap    { white-space: nowrap; }
.no-capitalize { text-transform: none; }
.uppercase  { text-transform: uppercase; }
.ld-tight   { letter-spacing: -0.2px; }
.ld-loose   { letter-spacing: 0.4px; }
.rl-text-style-large.light { letter-spacing: -0.1px; }
.rl-text-style-tiny.dim { color: var(--dim-text); opacity: 1; }

/* pixel accents */
.pixel { font-family: var(--offbit-1); font-weight: 700; }
.rl-heading-style-h2.pixel { color: var(--primary-brand-color); letter-spacing: 1px; }
.text-span-4 { font-family: var(--offbit-1); font-weight: 700; color: var(--primary-brand-color);
  letter-spacing: 0.6px; line-height: 1; }

/* brand logo lockup (network "A" mark + Poppins wordmark) */
:root { --brand-ink: #3a3a3a; }
.brand-lockup { display: inline-flex; align-items: center; gap: 0.5em; color: var(--brand-ink); line-height: 1; }
.brand-mark { display: inline-flex; width: 1.85em; height: 1.85em; flex: none; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-word { font-family: "Poppins", var(--primary); font-weight: 500; font-size: 1.5rem;
  letter-spacing: -0.5px; color: currentColor; }
.brand-word-ai { color: currentColor; }
.brand-lockup--load { flex-direction: column; gap: 0.6em; }
.brand-lockup--load .brand-mark { width: 3.2em; height: 3.2em; }
.brand-lockup--load .brand-word { font-size: 2rem; }
/* light variant for dark/blue backgrounds */
.brand-lockup.is-light { color: var(--off-white); }

/* section tag (blue pixel pill) */
.section-tag {
  display: inline-block; width: fit-content;
  background-color: var(--primary-brand-color); color: var(--off-white);
  font-family: var(--offbit-2); font-size: 1rem; line-height: 1;
  letter-spacing: 0.8px; text-transform: uppercase; white-space: nowrap;
  padding: 8px 10px 5px; margin-bottom: 1.2rem;
}

/* small dot-matrix labels */
.pixel-label { display: inline-block; width: fit-content;
  font-family: var(--offbit-3); font-size: 1rem; letter-spacing: 1.2px; text-transform: uppercase;
  background-color: var(--primary-brand-color); color: var(--off-white); padding: 3px 6px 0; }
.pixel-label.small { font-size: 0.85rem; }

/* =========================================================
   BACKGROUND DOTTED GRID
   ========================================================= */
.bg-grid-lines {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-left: var(--pad-global); padding-right: var(--pad-global);
  border-bottom: 1px solid var(--border);
}
.hero-line-block { border-left: 1px dotted var(--border); }
.bg-grid-lines.menu { border-bottom-color: var(--border); z-index: 0; }
.bg-grid-lines.menu .hero-line-block { border-left-color: var(--border); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  transition: transform 0.4s var(--cubic-default); will-change: transform; }
.navbar.is-hidden { transform: translateY(-115%); }
.navbar-container { display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; padding-bottom: 1.1rem; }
.nav-logo { display: inline-flex; }
.menu-btn-box { display: flex; align-items: center; gap: 1.2rem; }
.nav-status { display: flex; align-items: center; gap: 8px; }
.nav-available-dot { width: 7px; height: 7px; aspect-ratio: 1; border-radius: 50%;
  background-color: var(--dot-green); flex: none; }
.slots-open { font-family: var(--offbit-3); letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; }

.menu-btn {
  display: flex; align-items: center; gap: 8px;
  background-color: var(--primary-brand-color); color: var(--off-white);
  border-radius: 2px; padding: 14px 20px 14px 16px;
  font-family: var(--offbit-1); font-size: 1rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.menu-icon { display: inline-flex; }
.menu-btn-text { font-family: var(--primary); font-weight: 300; letter-spacing: 0.4px; line-height: 1; overflow: hidden; }

/* =========================================================
   FULL SCREEN MENU
   ========================================================= */
.full-screen-menu {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; height: 0;
  background-color: var(--off-white); color: var(--black);
  overflow: hidden; z-index: 600;
}
.full-screen-menu .pixel.green { color: var(--primary-brand-color); }
.menu-inner { height: 100vh; display: flex; align-items: center; }
.menu-container { display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding-top: 8rem; padding-bottom: 4rem; height: 100%; }
.menu-close { position: absolute; top: 2rem; right: var(--pad-global);
  font-family: var(--offbit-1); font-size: 1rem; letter-spacing: 2px; color: var(--off-white);
  background: var(--black); padding: 12px 18px; border-radius: 2px; }
.menu-upper { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.nav-left { display: flex; flex-direction: column; }
.nav-link { position: relative; display: flex; align-items: baseline; gap: 1rem;
  padding: 0.4rem 0.6rem; }
.menu-number { font-family: var(--offbit-1); font-size: 1rem; opacity: 0.7; }
.menu-heading { font-size: 3.2rem; font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: var(--black); }
.nav-link.is--active .menu-heading { color: var(--primary-brand-color); }
.nav-corners { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s var(--cubic-default); pointer-events: none; }
.nav-link:hover .nav-corners { opacity: 1; }
.nav-corner { position: absolute; width: 10px; height: 10px; border: 2px solid var(--primary-brand-color); }
.nav-corner.is--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.nav-corner.is--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.nav-corner.is--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.nav-corner.is--br { bottom: 0; right: 0; border-left: none; border-top: none; }

.nav-right { display: flex; flex-direction: column; gap: 2.5rem; padding-top: 0.5rem; }
.menu-block h3 { margin-bottom: 0.8rem; }
.menu-links-list { display: flex; flex-direction: column; gap: 0.4rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero-section { position: relative; display: flex; flex-direction: column; justify-content: center;
  height: 100vh; min-height: 720px; padding-top: 4px; padding-bottom: 4px; }
.hero-container { display: flex; flex-direction: column; align-items: center; justify-content: center; }

.hero-heading { font-family: var(--primary); font-size: 7.5rem; font-weight: 600; line-height: 0.9;
  white-space: nowrap; padding-right: 10px; text-transform: uppercase; }
.hero-heading._2 { padding-right: 0; }

.hero-upper-heading { display: flex; align-items: center; justify-content: center; gap: 1rem; width: 100%; }
.hero-body { max-width: 300px; font-family: var(--primary); font-weight: 300; font-size: 1.1rem;
  line-height: 1.35; color: var(--black); }

.hero-lower-heading { display: inline-flex; flex-wrap: wrap; align-items: flex-start; justify-content: center;
  margin-left: 4rem; }
.hero-border-heading { position: relative; padding: 0 8px; }
.hero-border-outline-box { position: absolute; inset: 0; pointer-events: none; }
.hero-border-outline { position: absolute; inset: 0; border: 1px solid var(--primary-brand-color); }
.rules-border-tl, .rules-border-tr, .rules-border-bl, .rules-border-br {
  position: absolute; width: 6px; height: 6px; background: var(--primary-brand-color); z-index: 2; }
.rules-border-tl { top: -3px; left: -3px; } .rules-border-tr { top: -3px; right: -3px; }
.rules-border-bl { bottom: -3px; left: -3px; } .rules-border-br { bottom: -3px; right: -3px; }

.hero-subheading { font-family: var(--primary); font-size: 7.5rem; font-weight: 300; line-height: 0.9;
  text-transform: uppercase; color: var(--black); margin-top: 6px; margin-left: -2rem; }

.hero-meta { display: flex; align-items: center; justify-content: space-between; width: 100%;
  margin-top: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.hero-meta-left { display: flex; gap: 0.5rem; }
.scroll-down { display: inline-flex; align-items: center; gap: 6px; }
.scroll-arrow { font-size: 1rem; }

.hero-cta-wrap { margin-top: 2.5rem; }

/* =========================================================
   BUTTON (pill CTA)
   ========================================================= */
.hero-btn { position: relative; z-index: 20; display: inline-flex; align-items: center; gap: 4px;
  width: fit-content; height: 2.6rem; text-decoration: none; }
.hero-btn.middle { margin: 0; background: transparent; }
.button-bg { position: absolute; inset: 0; background-color: var(--primary-brand-color);
  border-radius: 4px; z-index: -1; transition: transform 0.5s var(--cubic-default); }
.hero-btn:hover .button-bg { transform: scale(0.95); }
.text-block { display: flex; align-items: center; justify-content: center; height: 100%;
  border: 1px solid var(--text-color); background-color: var(--primary-brand-color); color: var(--white);
  border-radius: 4px; padding: 0 16px 0 20px; font-weight: 300; }
.btn-text { font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1; overflow: hidden; }
.icon-block { display: flex; align-items: center; justify-content: center; height: 100%;
  border: 1px solid var(--primary-brand-color); color: var(--primary-brand-color);
  border-radius: 4px; padding: 0 12px; }
.arrow-up-right-icon { display: inline-flex; align-items: center; justify-content: center;
  width: 1.2rem; font-size: 1rem; line-height: 1; }
.arrow-up-right-icon.small { width: auto; font-size: 0.9rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-layout { display: flex; align-items: center; gap: 4rem; width: 100%; }
.about-content { display: flex; flex-direction: column; flex: 1 1 auto; max-width: 1000px; min-width: 0; margin-left: 0; margin-right: 0; }
/* about photo on the right, balances the text column */
.about-visual { flex: 0 0 38%; max-width: 460px; }
.about-photo { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border); background-color: #c8c8c8;
  background-image: repeating-linear-gradient(45deg, rgba(79,127,255,0.10) 0 12px, transparent 12px 24px); }
.about-photo-img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
  object-fit: cover; display: block; }
.about-upper { display: flex; align-items: center; }
.about-heading { max-width: 20ch; }
.about-heading em { font-style: italic; }
.about-divider-wrapper { display: flex; align-items: center; gap: 2rem; margin: 1rem 0; }
.divider { background-color: var(--black); display: block; }
.divider.horizontal.about { width: 100%; height: 1px; margin: 3rem 0 3rem 0; flex: 1; }
.about-more { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.rl-text-style-link.big { font-size: 1.4rem; }
.about-lower { display: flex; }
.about-content-body { display: inline-flex; gap: 14px; width: 100%; max-width: 760px; margin-left: 0; align-items: flex-start; }
.small-icon { width: 2rem; height: 2rem; font-size: 2rem; line-height: 1; color: var(--primary-brand-color); flex: none; }
.about-body { color: var(--black); }
.about-kicker { font-style: italic; font-weight: 700; letter-spacing: -0.4px; }

/* =========================================================
   WORK — pinned scroll
   ========================================================= */
.projects-scroll { position: relative; z-index: 4; }
.projects-scroll-section { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.projects-scroll-content { position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.projects-scroll-content-list { position: relative; min-height: 340px; }
.project-item { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 1.2rem;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--cubic-default); }
.project-item.is--active { opacity: 1; visibility: visible; position: relative; }
.project-copy { max-width: 40ch; }
.projects-scroll-brand { display: flex; align-items: center; gap: 12px; margin-top: 0.5rem; }
.project-scroll-brand-content h6 { line-height: 1.1; }
.view-all-projects { display: inline-flex; align-items: center; gap: 8px; width: fit-content; }

.projects-scroll-visual { margin-top: 50vh; display: flex; flex-direction: column; gap: 30vh; padding-bottom: 30vh; }
.project-scroll-link { display: block; }
.visual-wrap { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; }
.projects-scroll-img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
  object-fit: cover; border-radius: 0; display: block; }
.visual-wrap .placeholder-img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
.item-name { position: absolute; left: 12px; bottom: 12px; font-family: var(--offbit-3);
  text-transform: uppercase; letter-spacing: 1px; color: var(--off-white); font-size: 0.9rem;
  background: rgba(79,127,255,0.85); padding: 4px 8px; }

/* placeholders */
.placeholder-img { position: relative; width: 100%; aspect-ratio: 4/3;
  background-color: #c8c8c8;
  background-image: repeating-linear-gradient(45deg, rgba(79,127,255,0.10) 0 12px, transparent 12px 24px);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.placeholder-img.square { aspect-ratio: 1; }
.placeholder-img span { font-family: var(--offbit-2); font-size: 0.9rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--primary-brand-color); background: var(--off-white); padding: 4px 8px; }
.placeholder-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none;
  background-color: #c8c8c8;
  background-image: repeating-linear-gradient(45deg, rgba(79,127,255,0.18) 0 5px, transparent 5px 10px);
  border: 1px solid var(--border); }
.placeholder-illus { font-size: 4rem; line-height: 1; color: var(--primary-brand-color); opacity: 0.85; }

/* =========================================================
   PROCESS ("How it works")
   ========================================================= */
.services-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px; align-items: start; }
.service-wrapper { display: flex; flex-direction: column; gap: 2.5rem; align-items: flex-start;
  padding: 4px 4px 0 4px; }
.service-wrapper-inner { display: flex; flex-direction: column; }
.process-title { margin-bottom: 1rem; }
.process-lead { margin-top: 0.5rem; }
.process-learn { display: inline-flex; align-items: center; gap: 8px; }
.service-content { display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 4px 1rem 4px 1.5rem; gap: 1rem; }
.process-head { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.process-word-wrap { position: relative; display: inline-flex; align-items: baseline; gap: 8px; }
.process-number { position: absolute; top: -16px; right: -18px; font-family: var(--offbit-1);
  font-size: 1rem; font-weight: 400; letter-spacing: 1px; line-height: 1; opacity: 0.8; color: var(--primary-brand-color); }
.process-number._2 { right: auto; left: -18px; }
.process-visual { margin: 2rem 0; display: flex; align-items: center; justify-content: center; }
.rl-text-style-medium.process { font-weight: 300; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-section .pixel-label.feedback { margin-bottom: 2rem; }
.testimonial-slider { position: relative; }
.testimonial-track { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.is--active { display: block; }
.testimonial-content { display: grid; grid-template-columns: 1fr 1.7fr; gap: 4vw; align-items: center; }
.testimonial-client-image { position: relative; display: block; }
/* square photo tile: diagonal-stripe backer shows only while the image loads */
.testimonial-photo { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden;
  border: 1px solid var(--border); border-radius: 0; background-color: #c8c8c8;
  background-image: repeating-linear-gradient(45deg, rgba(79,127,255,0.10) 0 12px, transparent 12px 24px); }
.testimonial-photo-img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
  object-fit: cover; display: block; }
.testimonial-img-content { margin-top: 0.8rem; }
.testimonial-text { margin: 1.5rem 0; }
.testimonial-client { display: flex; align-items: center; gap: 12px; }
.testimonial-arrow { position: absolute; top: -3.5rem; width: 3rem; height: 3rem; border: 1px solid var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: background-color 0.2s, color 0.2s; }
.testimonial-arrow:hover { background: var(--primary-brand-color); color: var(--off-white); border-color: var(--primary-brand-color); }
.testimonial-arrow.left { right: 4rem; } .testimonial-arrow.right { right: 0; }

/* =========================================================
   SERVICES (three cards)
   ========================================================= */
.services-header { display: flex; flex-direction: column; align-items: center; text-align: center;
  margin: 0 auto 4rem auto; }
.rl-heading-style-h2.vision { max-width: 500px; text-align: center; }
.service-card { width: 100%; border-top: 1px solid var(--black); }
.service-card:last-of-type { border-bottom: 1px solid var(--black); }
.service-card-wrapper { display: flex; align-items: center; gap: 16px; width: 100%; padding: 1.4rem 4px; }
.service-num { font-family: var(--offbit-1); }
.rl-heading-style-h2.services { white-space: nowrap; }
.service-divider { flex: 1; height: 1px; background-color: var(--black); margin: 0 4px; }
.service-time-box { display: flex; align-items: center; gap: 6px; }
.service-clock { font-size: 1.4rem; line-height: 1; }
.service-card-content { display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  width: 100%; padding: 2rem 0 2rem 2.2rem; }
.service-lead { flex: 1.4; max-width: 48ch; }
.service-list { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.service-visual { flex: 1; max-width: 220px; }
.service-visual.placeholder-img { aspect-ratio: 16/10; }
.services-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* =========================================================
   CLARITY / FREE DIAGNOSTIC (dark band)
   ========================================================= */
.clarity-section { position: relative; z-index: 5; background-color: var(--black); color: var(--off-white); }
.clarity-component { display: flex; flex-direction: column; align-items: center; text-align: center; }
.clarity-content { max-width: 46rem; display: flex; flex-direction: column; align-items: center; }
.clarity-section .section-tag { background-color: var(--primary-brand-color); color: var(--off-white); }
.rl-heading-style-h2.clarity { max-width: 35rem; margin: 0 auto; font-weight: 500; color: var(--off-white); }
.clarity-accent { font-family: var(--offbit-1); color: var(--secondary-brand-color); letter-spacing: 1px; }
.clarity-spacer { height: 2rem; }
.clarity-body { color: var(--off-white); }
.clarity-body em { color: var(--secondary-brand-color); font-style: italic; }
.clarity-contact { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.light-link { color: var(--off-white); }
.clarity-cta-box { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; margin-top: 3.5rem; width: 100%; }

/* consultation form (Netlify) */
.consult-form { width: 100%; max-width: 640px; text-align: left; display: flex; flex-direction: column; gap: 1.4rem; }
.consult-hp { position: absolute; left: -9999px; }
.form-row { display: flex; gap: 1.2rem; }
.form-field { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-family: var(--offbit-2); font-size: 0.8rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--off-white); opacity: 0.8; }
.form-field input {
  width: 100%; height: 3rem; padding: 0 0.9rem;
  background-color: transparent; color: var(--off-white);
  border: 1px solid rgba(244,245,243,0.35); border-radius: 3px;
  font-family: var(--primary); font-size: 1rem; font-weight: 300;
  transition: border-color 0.2s;
}
.form-field input::placeholder { color: rgba(244,245,243,0.4); }
.form-field input:focus { outline: none; border-color: var(--primary-brand-color); }
.form-field input:user-invalid { border-color: #e06666; }
.consult-actions { margin-top: 0.6rem; }
.consult-submit { height: 2.8rem; }
.consult-status { min-height: 1.2rem; font-size: 0.95rem; font-weight: 400; color: var(--secondary-brand-color); }
.consult-status.is-error { color: #ff9d9d; }
.consult-form.is-sent .form-row, .consult-form.is-sent .consult-actions { display: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer_component { background-color: var(--off-white); padding-top: 4rem; padding-bottom: 2.5rem; }
.footer { display: flex; flex-direction: column; gap: 3rem; }
.footer_upper { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col.right { align-items: flex-start; }
.footer_links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.footer_lower { display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--border); padding-top: 1.5rem; gap: 1rem; }
.footer-copy { letter-spacing: 0.2px; }

/* =========================================================
   PAGE LOAD TRANSITION
   ========================================================= */
.transition { position: fixed; inset: 0; z-index: 1000; display: grid;
  grid-template-columns: repeat(14, 1fr); grid-auto-rows: 1fr; height: 100vh; }
.transition-block { background-color: var(--off-white); }
.page-load-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1001; pointer-events: none; }

/* =========================================================
   CUSTOM CURSOR LABEL
   ========================================================= */
.cursor { position: fixed; top: 0; left: 0; z-index: 900; pointer-events: none; opacity: 0;
  transform: translate(-50%, -140%); transition: opacity 0.2s; }
.cursor-text { background: var(--primary-brand-color); color: var(--off-white); font-family: var(--offbit-1);
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 8px; white-space: nowrap; border-radius: 2px; }
body:has([data-cursor]:hover) .cursor { opacity: 1; }

/* letter-roll hover mechanism */
[data-hover-anim] [data-hover-text] { position: relative; display: inline-block; overflow: hidden; }
[data-hover-text] .char { display: inline-block; will-change: transform; }

/* reveal masks (JS/SplitText fallback) */
[data-reveal] { visibility: hidden; }
[data-reveal].is-ready { visibility: visible; }
[data-animate="fade-in"] { opacity: 0; }
[data-animate="fade-in"].is-ready { opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .hero-heading { font-size: 5.5rem; }
  .hero-subheading { font-size: 5.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
  .service-wrapper { grid-column: span 2; }
  .rl-heading-style-h2 { font-size: 2.6rem; }
  .menu-heading { font-size: 2.6rem; }
}

@media (max-width: 767px) {
  .rl-padding-section-large { padding-top: 5rem; padding-bottom: 5rem; }
  .hero-heading { font-size: 4rem; }
  .hero-subheading { font-size: 4rem; margin-left: 0; }
  .hero-lower-heading { margin-left: 0; }
  .projects-scroll-section { grid-template-columns: 1fr; }
  .projects-scroll-content { position: relative; height: auto; }
  .projects-scroll-visual { margin-top: 2rem; gap: 2rem; padding-bottom: 0; }
  .project-item { position: relative; opacity: 1; visibility: visible; }
  .testimonial-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card-content { flex-direction: column; align-items: flex-start; }
  .menu-upper { grid-template-columns: 1fr; }
  .about-layout { flex-direction: column; align-items: stretch; gap: 2.5rem; }
  .about-visual { flex: none; max-width: 380px; width: 100%; }
}

@media (max-width: 479px) {
  .rl-padding-global { padding-left: 0.8rem; padding-right: 0.8rem; }
  .bg-grid-lines { grid-template-columns: repeat(4, 1fr); padding-left: 0.8rem; padding-right: 0.8rem; }
  .transition { grid-template-columns: repeat(4, 1fr); }
  .navbar-container { padding-top: 0.8rem; padding-bottom: 0.8rem; }
  .slots-open { display: none; }
  .wordmark { font-size: 1.2rem; }
  .hero-section { min-height: 600px; }
  .hero-upper-heading { flex-direction: column; gap: 1.5rem; }
  .hero-heading { font-size: 14vw; white-space: normal; text-align: center; padding-right: 0; }
  .hero-heading._2 { font-size: 2.95rem; }
  .hero-subheading { font-size: 2.3rem; text-align: center; }
  .hero-body { max-width: none; text-align: center; }
  .hero-meta { flex-direction: column; align-items: center; gap: 0.8rem; }
  .about-content-body { margin-left: 0; flex-direction: column; text-align: left; }
  .about-content { margin-top: 4rem; }
  .rl-heading-style-h3 { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-wrapper { grid-column: auto; text-align: center; align-items: center; width: 100%; }
  .service-content { padding: 2rem 0; }
  .service-card-wrapper { flex-wrap: wrap; }
  .rl-heading-style-h2.services { white-space: normal; }
  .service-visual { max-width: 100%; }
  .menu-heading { font-size: 2.2rem; }
  .footer_upper { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer_lower { flex-direction: column; align-items: flex-start; }
  .testimonial-arrow { top: auto; bottom: -4rem; }
  .testimonial-arrow.left { right: auto; left: 0; }
}
