/* =====================================================
   JayK Infra N Design — Style v2
   Palette: Deep Warm Black · Limestone White · Copper
   Editorial · Architectural · Conversion-first
   ===================================================== */

/* ---- TOKENS ---- */
:root {
  --bg:          #0A0907;
  --bg-2:        #111009;
  --bg-3:        #181510;
  --surface:     #1D1A14;
  --border:      rgba(237,232,220,0.1);
  --border-med:  rgba(237,232,220,0.18);

  /* Limestone off-white — NOT bright white */
  --text:        #EDE8DC;
  --text-dim:    rgba(237,232,220,0.52);
  --text-faint:  rgba(237,232,220,0.22);

  /* Copper — warm, architectural, NOT gold */
  --accent:      #B07455;
  --accent-lt:   #C8896A;
  --accent-dim:  rgba(176,116,85,0.18);
  --accent-glow: rgba(176,116,85,0.08);

  /* Pure white for light-on-dark moments */
  --white:       #FFFFFF;

  --f-serif:     'DM Serif Display', 'Georgia', serif;
  --f-sans:      'DM Sans', 'Helvetica Neue', sans-serif;

  --max-w:       1280px;
  --nav-h:       72px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2:      cubic-bezier(0.87, 0, 0.13, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
abbr { text-decoration: none; color: var(--accent); }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul   { list-style: none; }
strong { font-weight: 500; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ---- NOISE TEXTURE ---- */
.noise {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease), transform 0.2s;
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent-lt);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary span, .btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px;
  border: 1px solid var(--border-med);
  color: var(--text-dim);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: var(--text);
  color: var(--bg);
}
.btn-light::after { background: #fff; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- SECTION PRIMITIVES ---- */
.section-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ============================================================
   FLOATING WHATSAPP (Removed old)
   ============================================================ */

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.5s, backdrop-filter 0.5s, border-bottom 0.5s;
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(10,9,7,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  gap: 48px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  /* Invert the black logo to white on dark background */
  filter: invert(1) brightness(0.88);
  transition: filter 0.4s;
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-img {
  /* Tint to copper on hover */
  filter: invert(1) sepia(1) saturate(1.5) hue-rotate(330deg) brightness(0.85);
}
.nav-logo-text {
  display: flex; align-items: baseline; gap: 0;
}
.logo-main {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-left: 2px;
}

.nav-links {
  display: flex; gap: 36px; margin-left: auto;
}
.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

.hamburger {
  display: none;
  flex-direction: column; gap: 7px;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 26px; height: 1px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.3s;
}
.hamburger.open span:first-child  { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:last-child   { transform: translateY(-8px) rotate(-45deg); }

/* ---- DRAWER (mobile) ---- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 1001;
  width: min(320px, 85vw);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  padding: 32px 28px 48px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  font-size: 20px;
  color: var(--text-dim);
  padding: 4px;
  transition: color 0.3s;
  background: none; border: none;
  cursor: pointer;
}
.drawer-close:hover { color: var(--text); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.drawer-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: invert(1) brightness(0.85);
}
.drawer ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.drawer-link {
  display: block; padding: 14px 0;
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.drawer-link:hover { color: var(--text); }
.drawer-cta { width: 100%; text-align: center; margin-bottom: 20px; }
.drawer-wa {
  display: block; text-align: center;
  font-size: 13px; color: #4CAF50;
  margin-top: 12px;
  font-weight: 500;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: imgZoom 14s ease-out forwards;
}
@keyframes imgZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,9,7,0.85) 0%, rgba(10,9,7,0.4) 60%, rgba(10,9,7,0.25) 100%),
    linear-gradient(to top, rgba(10,9,7,0.9) 0%, rgba(10,9,7,0) 50%);
}

/* Architectural SVG lines */
.hero-lines {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  width: 100%; height: 100%;
}
.hl {
  stroke-dasharray: 1440;
  stroke-dashoffset: 1440;
  animation: drawH 2.5s var(--ease) 0.8s forwards;
}
.vl {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawV 2s var(--ease) 1s forwards;
}
.curve-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawC 3s var(--ease) 0.5s forwards;
}
@keyframes drawH { to { stroke-dashoffset: 0; } }
@keyframes drawV { to { stroke-dashoffset: 0; } }
@keyframes drawC { to { stroke-dashoffset: 0; } }

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.93;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  display: flex; flex-direction: column;
}
.hero-title .italic { font-style: italic; }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; right: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-rail {
  width: 1px; height: 56px;
  background: var(--border-med);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: 0; right: 0;
  height: 24px;
  background: var(--accent);
  animation: scrollRail 2.2s ease-in-out infinite;
}
@keyframes scrollRail {
  0%   { top: -24px; }
  50%  { top: 32px; }
  100% { top: 56px; opacity: 0; }
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-faint);
  writing-mode: vertical-rl;
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  background: var(--bg-2);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement-curves {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  color: var(--text);
}
.statement-inner {
  max-width: 860px; margin: 0 auto;
  position: relative;
}
.statement-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
}
.statement-quote {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 36px;
}
.statement-quote em { font-style: italic; color: var(--accent); }
.statement-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 640px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--bg);
  padding: 100px 40px;
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-header { margin-bottom: 64px; }

/* Sector Cards */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 80px;
}

.sector-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.4s;
}
.sector-card:hover { border-color: var(--accent); }
.sector-card.sc-wide { grid-column: span 2; }

.sc-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.sc-wide .sc-media { aspect-ratio: 21/9; }
.sc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}
.sector-card:hover .sc-media img { transform: scale(1.04); }

/* ── Renovation full-width card ── */
.sector-card.sc-reno {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}
.sc-media-reno {
  aspect-ratio: unset !important;
  flex: 0 0 52%;
  min-height: 340px;
}
.sc-reno .sc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 40px 36px;
}
.reno-points {
  list-style: none;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.reno-points li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}
.reno-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--accent);
}


.sc-body {
  padding: 28px 28px 32px;
  flex: 1;
}
.sc-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.sc-body h3 {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.sc-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

/* Services List */
.services-list-wrap { padding-top: 60px; border-top: 1px solid var(--border); }
.services-list-wrap .section-tag { margin-bottom: 32px; }
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.sl-item {
  display: flex; gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background 0.3s, border-color 0.3s;
}
.sl-item:hover { background: var(--surface); border-color: var(--accent); }
.sl-num {
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.sl-item strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}
.sl-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   OUR WORK
   ============================================================ */
.our-work {
  background: var(--bg-2);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.our-work-inner { max-width: var(--max-w); margin: 0 auto; }
.ow-header { max-width: 640px; margin-bottom: 56px; }
.ow-sub {
  font-size: 16px; font-weight: 300;
  color: var(--text-dim); line-height: 1.85;
}

.ow-lines {
  margin-bottom: 64px;
  color: var(--text);
  opacity: 0.6;
}
.ow-lines svg { display: block; width: 100%; }

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pillar {
  background: var(--bg-2);
  padding: 48px 36px;
  transition: background 0.35s;
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover { background: var(--surface); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.pillar h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pillar p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-band-media {
  position: absolute; inset: 0; z-index: 0;
}
.cta-band-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.cta-band-scrim {
  position: absolute; inset: 0;
  background: rgba(10,9,7,0.78);
}
.cta-curves {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.cta-band-content {
  position: relative; z-index: 2;
  padding: 80px 40px;
  max-width: 720px;
}
.cta-band-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.cta-band-title {
  font-family: var(--f-serif);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 40px;
}
.cta-band-title em { font-style: italic; color: var(--accent); }

/* Ghost logo watermark in CTA band */
.cta-logo-ghost {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.cta-logo-ghost img {
  width: clamp(200px, 28vw, 380px);
  height: auto;
  /* Invert to white, then apply very low opacity for ghosting */
  filter: invert(1) brightness(1.5);
  opacity: 0.06;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-header { margin-bottom: 72px; }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.process-track {
  position: absolute; top: 32px; left: 0; right: 0;
  pointer-events: none;
  color: var(--accent);
  opacity: 0.25;
}
.process-track svg { width: 100%; }

.process-step {
  padding: 0 36px 0 0;
  position: relative;
}
.process-step:last-child { padding-right: 0; }
.ps-num {
  font-family: var(--f-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity 0.4s;
  display: block;
}
.process-step:hover .ps-num { opacity: 0.8; }
.process-step h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg-2);
  padding: 100px 40px 0;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 4.5fr 6fr;
  gap: 72px;
  padding-bottom: 80px;
}
.contact-intro {
  font-size: 15px; font-weight: 300;
  color: var(--text-dim); line-height: 1.8;
  margin-bottom: 36px;
}
.contact-tiles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.contact-tile:hover { border-color: var(--accent); background: var(--accent-dim); }
.contact-tile-wa { color: #4CAF50; border-color: rgba(76,175,80,0.25); }
.contact-tile-wa svg { color: #4CAF50; }
.contact-tile-wa:hover { border-color: #4CAF50; background: rgba(76,175,80,0.08); }
.contact-tile-plain { cursor: default; }
.contact-tile-plain:hover { border-color: var(--border); background: var(--surface); }
.contact-tile svg { flex-shrink: 0; color: var(--accent); }
.contact-tile-wa svg { color: #4CAF50; }
.contact-tile strong {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 2px;
}
.contact-tile span { font-size: 13px; font-weight: 400; color: var(--text); }
.contact-tile-wa span { color: #4CAF50; }

.contact-social { display: flex; gap: 10px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em;
  transition: border-color 0.3s, color 0.3s;
}
.social-pill:hover { border-color: var(--accent); color: var(--accent); }

/* FORM */
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.fg input, .fg select, .fg textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none; appearance: none;
  border-radius: 0;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B07455' stroke-width='1.3' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-faint); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--accent);
  background: rgba(176,116,85,0.04);
}
.fg input:user-valid, .fg select:user-valid, .fg textarea:user-valid {
  border-color: rgba(176,116,85,0.45);
}
.fg input:user-invalid, .fg textarea:user-invalid {
  border-color: rgba(200,70,70,0.45);
}
.fg textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; font-size: 14px; letter-spacing: 0.08em; padding: 18px; }
.form-note {
  font-size: 11px; color: var(--text-faint);
  text-align: center; letter-spacing: 0.05em;
}

/* Map */
.map-wrap {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid var(--border);
}
.map-wrap iframe {
  display: block; width: 100%; height: 280px; border: 0;
  filter: invert(88%) hue-rotate(180deg) brightness(0.88) contrast(1.05) saturate(0.8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 40px 0;
  position: relative;
}
.footer-line {
  position: absolute; top: 0; left: 0; right: 0;
  color: var(--text);
  pointer-events: none;
}
.footer-line svg { display: block; width: 100%; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; padding-bottom: 56px;
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 56px; height: 56px;
  object-fit: contain;
  /* Invert black logo to white, then subtle tint */
  filter: invert(1) brightness(0.82);
  flex-shrink: 0;
  transition: filter 0.4s;
}
.footer-logo-img:hover {
  filter: invert(1) sepia(1) saturate(1.5) hue-rotate(330deg) brightness(0.85);
}
.footer-logo-text {
  display: flex; flex-direction: column; gap: 4px;
}
.footer-logo {
  font-family: var(--f-serif);
  font-size: 22px; font-weight: 400;
  color: var(--text); margin-bottom: 8px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic; font-size: 15px;
  color: var(--text-dim); margin-bottom: 8px;
}
.footer-location {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-faint);
}
.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-col strong {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.fn-col a {
  font-size: 13px; font-weight: 300;
  color: var(--text-dim); line-height: 1.5;
  transition: color 0.3s;
}
.fn-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO KICKER (keyword-rich subtitle)
   ============================================================ */
.hero-kicker {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 10px;
  opacity: 0.88;
}

/* ============================================================
   ABOUT THE STUDIO
   ============================================================ */
.about-studio {
  background: var(--bg-2);
  padding: 110px 40px;
  border-top: 1px solid var(--border);
}
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.about-left .section-tag { margin-bottom: 20px; }
.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.95;
  margin-bottom: 20px;
}
.about-body strong { color: var(--text); font-weight: 500; }

/* Typographic Stats Row */
.about-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.astat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.astat-val {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.astat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.astat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-med);
}

/* Right side Image Frame */
.about-visual-frame {
  position: relative;
  margin-bottom: 40px;
}
.about-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 2;
}
.about-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.about-visual-frame:hover .about-image-wrapper img {
  transform: scale(1.04);
}
.about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,7,0) 50%, rgba(10,9,7,0.45));
  pointer-events: none;
}
.about-frame-border {
  position: absolute;
  border: 1px solid var(--accent);
  width: 100%; height: 100%;
  top: 14px; left: -14px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 0.4s var(--ease);
}
.about-visual-frame:hover .about-frame-border {
  transform: translate(4px, -4px);
}
.about-frame-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-top: 14px;
  text-transform: uppercase;
  text-align: right;
}

.about-expertise {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 32px 28px;
  margin-top: 20px;
}
.about-expertise h3 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.expertise-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.4;
}
.expertise-list li:last-child { border-bottom: none; }
.expertise-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ============================================================
   CITIES WE SERVE
   ============================================================ */
.cities-section {
  background: var(--bg);
  padding: 110px 40px;
  border-top: 1px solid var(--border);
}
.cities-inner { max-width: var(--max-w); margin: 0 auto; }
.cities-header { max-width: 680px; margin-bottom: 56px; }
.cities-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin-top: 20px;
}

/* Asymmetric layout */
.cities-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  align-items: stretch;
}

/* Left FeaturedHQ Card */
.city-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.cf-media {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}
.cf-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.city-featured:hover .cf-media img {
  transform: scale(1.03);
}
.cf-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,26,20,0.92), rgba(29,26,20,0));
  pointer-events: none;
}
.cf-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.cf-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cf-body h3 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}
.cf-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cf-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-locations span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text);
  background: rgba(237,232,220,0.05);
  padding: 5px 12px;
  border: 1px solid var(--border);
}

/* Right Grid Layout */
.cities-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.4s var(--ease);
  min-height: 250px;
}
.city-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.city-card:hover { border-color: var(--accent); }
.city-card:hover::before { transform: scaleX(1); }

.city-card .city-num {
  font-family: var(--f-serif);
  font-size: 32px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.city-card h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.city-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.city-card p strong { color: var(--text); font-weight: 400; }
.city-region {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ============================================================
   FOOTER ADDRESS + COPY
   ============================================================ */
.footer-address {
  font-size: 12px;
  font-style: normal;
  color: var(--text-faint);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.footer-address a { color: var(--text-dim); transition: color 0.3s; }
.footer-address a:hover { color: var(--accent); }
.footer-address strong { color: var(--text-dim); }
.footer-copy {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: var(--max-w); margin: 0 auto; }
.faq-header { margin-bottom: 56px; }

.faq-list {
  max-width: 860px;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-top: 1px solid var(--border);
  transition: background 0.3s;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item[open] { background: var(--surface); }

.faq-q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--accent); }

.faq-a {
  padding: 0 0 24px;
  animation: faqOpen 0.4s var(--ease) forwards;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-a p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 680px;
}
.faq-a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-a a:hover { color: var(--accent-lt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .sector-card.sc-wide { grid-column: span 2; }
  .sector-card.sc-reno { flex-direction: column; grid-column: 1 / -1; }
  .sc-media-reno { flex: none; min-height: unset; aspect-ratio: 16/9 !important; }
  .sc-reno .sc-body { padding: 28px; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-track { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .cities-layout { grid-template-columns: 1fr; }
  .cities-grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 20px; gap: 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-bottom: 80px; }
  .hero-content { padding: 0 20px; }
  .hero-scroll { right: 20px; }

  .statement  { padding: 80px 20px; }
  .services   { padding: 80px 20px; }
  .our-work   { padding: 80px 20px; }
  .about-studio { padding: 80px 20px; }
  .cities-section { padding: 80px 20px; }
  .process    { padding: 80px 20px; }
  .contact    { padding: 80px 20px 0; }
  .faq-section { padding: 80px 20px; }
  .footer     { padding: 60px 20px 0; }

  .sector-grid { grid-template-columns: 1fr; }
  .sector-card.sc-wide { grid-column: span 1; }
  .sector-card.sc-reno { grid-column: span 1; }
  .reno-points { grid-template-columns: 1fr; }
  .cities-grid-layout { grid-template-columns: 1fr; }
  .about-stats-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .astat-sep { display: none; }
  .services-list { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band { min-height: 420px; }
  .cta-logo-ghost { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 15vw, 80px); }
  .contact-social { flex-direction: column; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hl, .vl, .curve-line, .hero-img, .scroll-thumb { animation: none; }
  .reveal { transition: none; }
  .faq-a { animation: none; }
}

/* =====================================================
   CRO (CONVERSION RATE OPTIMIZATION) UPGRADES
   ===================================================== */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: #20BA5A;
  color: #FFFFFF;
}
.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glassmorphic Popup Modal for PDF Download */
.cro-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(10, 9, 7, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.cro-modal.open {
  display: flex;
  opacity: 1;
}
.modal-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 36px 30px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cro-modal.open .modal-card {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none; border: none;
  font-size: 24px; color: #7E8694;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}
.modal-close:hover {
  color: #111318;
}
.modal-title {
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111318;
  letter-spacing: -0.01em;
}
.modal-desc {
  font-size: 13.5px;
  color: #4A505C;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Fix autofill for light forms (like modal) */
.cro-modal input:-webkit-autofill,
.cro-modal input:-webkit-autofill:hover, 
.cro-modal input:-webkit-autofill:focus, 
.cro-modal input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #111318 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Fit-Out Cost Estimator Section */
.estimator .sec-label { color: #4285F4; }
.estimator .sec-title { color: #111318; }
.estimator .sec-desc { color: #4A505C; }

.estimator-container {
  background: #F8F9FA;
  border: 1px solid #E2E5EC;
  border-radius: 12px;
  padding: 40px;
  margin-top: 30px;
  margin-bottom: 50px;
}
.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .estimator-grid { grid-template-columns: 1fr; }
  .estimator-container { padding: 24px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 12px; border-radius: 50%; }
}
.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.estimator-output {
  background: #FFFFFF;
  border: 1px solid #E2E5EC;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.calc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7E8694;
  margin-bottom: 10px;
  font-weight: 700;
}
.calc-range {
  font-size: 28px;
  font-weight: 800;
  color: #4285F4;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.calc-desc {
  font-size: 12.5px;
  color: #4A505C;
  line-height: 1.5;
  margin-bottom: 20px;
}
.calc-cta {
  width: 100%;
}
.slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111318;
}
.slider-value {
  font-size: 14px;
  font-weight: 700;
  color: #4285F4;
}
.range-slider {
  width: 100%;
  height: 6px;
  background: #E2E5EC;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #4285F4;
  cursor: pointer;
  transition: transform 0.1s;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(66, 133, 244, 0.3);
}
.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.grade-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.grade-card {
  border: 1px solid #E2E5EC;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.grade-card:hover {
  border-color: #4285F4;
}
.grade-card.active {
  border-color: #4285F4;
  background: rgba(66, 133, 244, 0.04);
  box-shadow: 0 0 0 1px #4285F4;
}
.grade-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111318;
}
.grade-desc {
  font-size: 10px;
  color: #7E8694;
  line-height: 1.3;
}



