/* NARVA — design tokens */
:root {
  --blue: #1E50E0;           /* primary action blue */
  --blue-600: #1A44C4;
  --blue-700: #163AA8;
  --navy: #0B1220;           /* dark surfaces, buttons */
  --navy-2: #111827;
  --ink: #0F172A;            /* body text */
  --ink-2: #1F2937;
  --muted: #6B7280;          /* secondary text */
  --muted-2: #9CA3AF;
  --line: #E5E7EB;           /* borders */
  --line-2: #EEF1F5;
  --card: #F3F5F8;           /* placeholder tone */
  --card-2: #F6F8FB;
  --bg: #FFFFFF;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-700); }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: 44px; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 18px; font-weight: 700; }
p  { margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ——— header ——— */
.nv-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nv-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nv-brand {
  font-weight: 800; color: var(--blue); font-size: 18px;
  letter-spacing: -0.02em;
}
.nv-brand .dot { color: var(--blue); }
.nv-nav { display: flex; gap: 28px; align-items: center; }
.nv-nav a {
  color: var(--ink); font-weight: 500; font-size: 14px;
  padding: 6px 2px; position: relative;
}
.nv-nav a.active { color: var(--blue); }
.nv-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--blue); border-radius: 1px;
}
.nv-nav a:hover { color: var(--blue); }

/* Hamburger (mobile only) */
.nv-burger {
  display: none;
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  padding: 0;
}
.nv-burger span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform 0.18s;
}
.nv-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nv-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nv-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nv-mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 8px 24px 16px;
}
.nv-mobile-nav a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--line);
  color: var(--ink); font-weight: 500; font-size: 15px;
}
.nv-mobile-nav a:last-child { border-bottom: none; }
.nv-mobile-nav a.active { color: var(--blue); }

/* ——— buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent; transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-dark {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-dark:hover { background: #000; border-color: #000; color: #fff; }
.btn-outline {
  background: #fff; color: var(--ink); border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-blue {
  background: var(--blue); color: #fff; border-color: var(--blue);
  height: 44px; font-size: 15px;
}
.btn-blue:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.btn-ghost-blue {
  background: transparent; color: var(--blue); border-color: transparent;
}

/* ——— pills / badges ——— */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 22px; padding: 0 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  background: var(--blue); color: #fff;
}
.pill-muted {
  background: #F3F4F6; color: var(--ink-2);
}
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600; background: #F3F4F6; color: var(--ink-2);
}

/* ——— sections ——— */
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }
.eyebrow {
  text-align: center; color: var(--muted); font-size: 14px; margin-top: 8px;
}

/* ——— placeholder image ——— */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      #E8ECF3 0px, #E8ECF3 12px,
      #DFE4EC 12px, #DFE4EC 24px);
  color: #4B5563;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; overflow: hidden;
  font: 500 13px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.02em;
}
.placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}
.placeholder > span { position: relative; }

/* ——— project card ——— */
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pcard-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pcard-media .placeholder { position: absolute; inset: 0; border-radius: 0; }
.pcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard-media .featured {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.pcard-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.pcard-title { font-size: 17px; font-weight: 700; color: var(--ink); }
.pcard-area { font-size: 13px; color: var(--muted); }
.pcard-desc { font-size: 13px; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-meta {
  display: flex; align-items: flex-end; justify-content: space-between; margin-top: 4px;
}
.pcard-meta .date { font-size: 12px; color: var(--muted); }
.pcard-meta .price-label { font-size: 11px; color: var(--muted); text-align: right; }
.pcard-meta .price { font-size: 16px; font-weight: 700; color: var(--ink); }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pcard-cta {
  margin: 4px 18px 18px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; border-radius: 8px;
  font-size: 13px; font-weight: 600;
}
.pcard-cta:hover { background: #000; color: #fff; }

/* ——— form ——— */
.form-card {
  background: var(--navy); color: #fff; border-radius: 12px;
  padding: 24px;
}
.form-card h3 { color: #fff; font-size: 18px; }
.form-card .form-sub { color: #9CA3AF; font-size: 13px; margin-top: 4px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px;
}
.field label {
  display: block; font-size: 12px; font-weight: 600; color: #D1D5DB;
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; height: 40px; padding: 0 12px;
  background: #1F2937; border: 1px solid #374151; color: #fff;
  border-radius: 8px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.15s;
}
.field input::placeholder { color: #6B7280; }
.field input:focus, .field select:focus { border-color: var(--blue); }
.field.full { grid-column: span 2; }
.field-phone { display: grid; grid-template-columns: 96px 1fr; gap: 8px; }
.field-error {
  font-size: 11px; color: #F87171; margin-top: 4px;
}

/* home-variant form sits on dark card floating over white */
.form-card.light-input input, .form-card.light-input select {
  background: #1F2937;
}

/* ——— footer ——— */
.nv-footer {
  background: #0B1220; color: #D1D5DB;
  padding: 56px 0 28px; margin-top: 40px;
}
.nv-footer .f-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.nv-footer .brand { color: #fff; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.nv-footer p { color: #9CA3AF; font-size: 13px; margin-top: 10px; max-width: 360px; line-height: 1.65; }
.nv-footer h4 { color: #fff; font-size: 13px; margin-bottom: 14px; font-weight: 600; letter-spacing: 0.02em; }
.nv-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.nv-footer ul a { color: #9CA3AF; font-size: 13px; }
.nv-footer ul a:hover { color: #fff; }
.nv-footer .f-bottom {
  border-top: 1px solid #1F2937; margin-top: 40px; padding-top: 20px;
  font-size: 12px; color: #6B7280;
}
.nv-footer .contact-line { display: flex; align-items: center; gap: 8px; color: #9CA3AF; font-size: 13px; }

/* ——— hero ——— */
.hero { text-align: center; padding: 72px 0 40px; }
.hero h1 { max-width: 780px; margin: 0 auto; }
.hero .sub { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero .ctas { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }

/* ——— filter bar ——— */
.filter-bar {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px;
  margin-top: 24px; margin-bottom: 28px;
}
.filter-bar select {
  height: 40px; padding: 0 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14px; color: var(--ink); font-family: inherit;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 34px;
}

/* ——— breadcrumbs ——— */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--blue); font-weight: 500; }
.crumbs .sep { color: var(--muted-2); }
.crumbs .current { color: var(--ink); font-weight: 500; }

/* ——— detail page ——— */
.detail {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px;
  align-items: start;
}
.detail h1 { font-size: 38px; display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.detail .meta {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 13px;
}
.detail .meta .item { display: inline-flex; align-items: center; gap: 6px; }
.detail .unit-chips { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.detail .start-card {
  background: var(--card-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; margin-top: 22px;
}
.detail .start-card .lbl { font-size: 12px; color: var(--muted); }
.detail .start-card .val { font-size: 26px; color: var(--blue); font-weight: 700; margin-top: 2px; }
.gallery-main { margin-top: 16px; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; position: relative; background: var(--card-2); }
.gallery-main .placeholder { position: absolute; inset: 0; border-radius: 0; font-size: 18px; }
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-main .play {
  position: absolute; right: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.9); display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.thumbs { display: flex; gap: 10px; margin-top: 10px; }
.thumb {
  width: 80px; height: 80px; border-radius: 8px; border: 1px solid var(--line);
  overflow: hidden; position: relative; cursor: pointer; background: var(--card);
}
.thumb.active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(30,80,224,0.2); }
.thumb .placeholder { position: absolute; inset: 0; border-radius: 0; font-size: 9px; }
.thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-box {
  margin-top: 28px; background: var(--card-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
}
.about-box h3 { margin-bottom: 8px; }
.about-box p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.pricing { margin-top: 28px; }
.pricing-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.ptable {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  font-size: 13px; table-layout: fixed;
}
.ptable th {
  text-align: left; font-weight: 600; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); padding: 10px 12px; background: #F9FAFB; border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.ptable td {
  padding: 11px 12px; border-bottom: 1px solid var(--line-2); color: var(--ink);
  font-size: 13px; line-height: 1.4; vertical-align: middle;
}
.ptable tr:last-child td { border-bottom: none; }
.ptable tr:nth-child(even) td { background: #FCFCFD; }
.ptable td.price { color: var(--blue); font-weight: 700; white-space: nowrap; }
.ptable td.unit { font-weight: 600; color: var(--ink); }
.ptable td.psf { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; font-size: 12.5px; }
.ptable td.bed { font-variant-numeric: tabular-nums; color: var(--ink-2); }
.ptable td.size { font-variant-numeric: tabular-nums; color: var(--ink-2); white-space: nowrap; }
/* Column widths for tidy, compact tables */
.ptable col.c-unit  { width: 36%; }
.ptable col.c-bed   { width: 10%; }
.ptable col.c-size  { width: 16%; }
.ptable col.c-price { width: 19%; }
.ptable col.c-psf   { width: 19%; }
.note { font-size: 12px; color: var(--muted); margin-top: 10px; }
@media (max-width: 640px) {
  .ptable { font-size: 12px; table-layout: auto; }
  .ptable th, .ptable td { padding: 9px 8px; }
  .ptable col.c-bed, .ptable col.c-size { width: auto; }
  .ptable td.psf { font-size: 11.5px; }
}

/* ——— UAE editorial image (About page) ——— */
.uae-editorial {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #0B1220;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22), 0 4px 14px rgba(15, 23, 42, 0.08);
}
.uae-editorial img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.uae-editorial-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 24px 20px;
  display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,0.55) 60%, rgba(11,18,32,0.85) 100%);
  color: #fff;
}
.uae-editorial-eyebrow {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #9EC2FF; font-weight: 700;
}
.uae-editorial-line {
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  color: #fff;
}
@media (max-width: 960px) {
  .uae-editorial { aspect-ratio: 16 / 10; }
}

/* sticky inquire */
.inquire {
  position: sticky; top: 88px;
  background: var(--navy); color: #fff;
  border-radius: 12px; padding: 20px;
}
.inquire h3 { color: #fff; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.inquire .inq-sub { color: #9CA3AF; font-size: 12px; margin-top: 6px; margin-bottom: 14px; }
.inquire .field { margin-bottom: 10px; }
.inquire .field label { font-size: 11px; }
.inquire .field input, .inquire .field select { height: 38px; font-size: 13px; }
.inquire .privacy { color: #9CA3AF; font-size: 11px; margin-top: 8px; text-align: center; }

/* ——— about page ——— */
.about-hero { padding: 72px 24px 24px; text-align: left; }
.about-hero .eyebrow-tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 14px;
}
.about-hero h1 { font-size: 48px; max-width: 820px; }
.about-hero .lede { margin-top: 18px; color: var(--muted); font-size: 17px; max-width: 720px; line-height: 1.6; }

/* Far-left variant: anchor to viewport edge, smaller heading */
.about-hero-left { padding: 56px 0 20px; }
.about-hero-left .about-hero-inner {
  padding-left: 48px; padding-right: 24px; max-width: 780px;
}
.about-hero-left h1 {
  font-size: 34px; line-height: 1.18; max-width: 620px; letter-spacing: -0.015em;
}
.about-hero-left .lede { font-size: 15px; max-width: 560px; margin-top: 16px; }
@media (max-width: 640px) {
  .about-hero-left .about-hero-inner { padding-left: 24px; }
  .about-hero-left h1 { font-size: 28px; }
}

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  margin-top: 36px; background: #fff;
}
.stat-row-2 { grid-template-columns: repeat(2, 1fr); }
.stat {
  padding: 24px 22px; border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .v { font-size: 30px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.stat .l { font-size: 12px; color: var(--muted); margin-top: 4px; }

.two-col {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center;
}
.two-col .placeholder { aspect-ratio: 4/5; border-radius: 12px; }
.two-col h2 { margin-bottom: 14px; }
.two-col p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 28px;
}
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.value-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.value-card .ico {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(30,80,224,0.08);
  display: grid; place-items: center; color: var(--blue); margin-bottom: 14px;
}
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.developer-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 24px;
}
.dev-chip {
  height: 68px; border: 1px solid var(--line); border-radius: 10px;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: #fff; letter-spacing: 0.02em;
  transition: color 0.15s, border-color 0.15s;
}
.dev-chip:hover { color: var(--ink); border-color: #D1D5DB; }

/* ——— contact page ——— */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-info h2 { margin-bottom: 8px; }
.contact-info .lede { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.info-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.info-item {
  display: flex; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.info-item .ico {
  width: 40px; height: 40px; border-radius: 8px; background: rgba(30,80,224,0.08);
  color: var(--blue); display: grid; place-items: center; flex-shrink: 0;
}
.info-item .k { font-size: 13px; font-weight: 600; color: var(--ink); }
.info-item .v { font-size: 13px; color: var(--muted); margin-top: 2px; }

.hours-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: #fff;
}
.hours-card h4 { font-size: 14px; margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; color: var(--muted); }
.hours-row strong { color: var(--ink); font-weight: 500; }

/* ——— tiny utilities ——— */
.sep-line { height: 1px; background: var(--line); margin: 28px 0; }
.center { text-align: center; }
.gap-16 { gap: 16px; }

/* project-grid */
.project-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* home-featured single card narrower */
.featured-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1120px; margin: 0 auto; }
.featured-wrap .pcard { max-width: 360px; }

@media (max-width: 960px) {
  .detail { grid-template-columns: 1fr; }
  .project-grid, .featured-wrap { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nv-footer .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .developer-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  h1 { font-size: 32px; }
  .container { padding: 0 18px; }
  .project-grid, .featured-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .filter-bar { grid-template-columns: 1fr; gap: 10px; }

  /* Header → burger */
  .nv-nav { display: none; }
  .nv-burger { display: flex; }
  .nv-mobile-nav { display: block; }

  /* Hero */
  .hero { padding: 40px 0 24px; }
  .hero h1 { font-size: 32px !important; line-height: 1.15; }
  .hero .sub { font-size: 14px; }
  .hero .ctas { flex-direction: column; gap: 10px; }
  .hero .ctas .btn { width: 100%; justify-content: center; }

  /* Form card padding tightens */
  .form-card { padding: 24px 18px; }
  .form-card h3 { font-size: 20px; }
  .field-phone { grid-template-columns: 100px 1fr; }
  .field-phone select { max-width: 100px; font-size: 12px; }

  /* Project detail */
  .detail { gap: 24px; }
  .detail-hero h1 { font-size: 28px; }
  .detail-meta { flex-wrap: wrap; gap: 10px 14px; }
  .gallery-main { aspect-ratio: 4/3; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .pricing-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pricing table { font-size: 13px; }
  .pricing th, .pricing td { padding: 10px 8px; }
  .inquire { position: static !important; }

  /* About */
  .about-hero h1 { font-size: 30px !important; }
  .about-hero .lede { font-size: 15px !important; }
  .about-hero-left .about-hero-inner { padding-left: 18px !important; padding-right: 18px !important; }
  .principle-grid, .value-grid { grid-template-columns: 1fr !important; }
  .stat-row { grid-template-columns: 1fr !important; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); padding: 18px 0 !important; }
  .stat:last-child { border-bottom: none; }
  .developer-row { grid-template-columns: repeat(2, 1fr) !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .info-item { padding: 14px !important; }
  .hours-row { flex-wrap: wrap; gap: 4px; }

  /* Footer */
  .nv-footer .f-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .f-bottom { font-size: 11px; text-align: center; }
}

/* ——— USPs ——— */
.usps { margin-top: 36px; }
.usps h2 { margin-bottom: 18px; }
.usp-list { display: grid; gap: 14px; }
.usp-item {
  display: grid; grid-template-columns: 8px 1fr; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.usp-bullet {
  width: 6px; height: 6px; border-radius: 999px; background: var(--blue); margin-top: 8px;
  box-shadow: 0 0 0 3px rgba(30,80,224,0.10);
}
.usp-t { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.usp-d { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 4px; }

/* ——— Honesty / timing note ——— */
.honesty-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  background: #F8FAFF;
}
.honesty-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.honesty-note p { font-size: 14px; color: var(--ink); line-height: 1.65; }

/* ——— Pricing-empty placeholder (shown when pricing array empty) ——— */
.pricing-empty {
  margin-top: 32px; padding: 22px 24px;
  border: 1px dashed var(--line); border-radius: 12px; background: #FAFBFC;
}
.pricing-empty h2 { margin-bottom: 8px; }
.pricing-empty p { font-size: 14px; color: var(--muted); line-height: 1.65; }
