:root {
  --ink: #0a1f18;
  --muted: #5d6f68;
  --line: rgba(15, 123, 82, 0.14);
  --paper: #f4faf7;
  --surface: #ffffff;
  --green: #0f7b52;
  --green-dark: #062a1f;
  --green-glow: rgba(15, 123, 82, 0.35);
  --blue: #0e6f9f;
  --sun: #f4b63f;
  --sun-glow: rgba(244, 182, 63, 0.4);
  --aqua: #0e8aa3;
  --clay: #e8913a;
  --soft: #eef7f1;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --shadow: 0 20px 60px rgba(6, 42, 31, 0.14);
  --shadow-card: 0 18px 45px rgba(6, 42, 31, 0.1);
  --max: 1180px;
  --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, sans-serif;
  --font-gujarati: "Noto Sans Gujarati", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="gu"] body {
  font-family: var(--font-gujarati);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(15, 123, 82, 0.08), transparent),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #ffffff;
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 250, 247, 0.92);
  box-shadow: 0 8px 32px rgba(6, 42, 31, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.92;
  cursor: pointer;
  transition: opacity 150ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .lang-toggle {
  background: rgba(15, 123, 82, 0.08);
}

.header-cta {
  display: none;
  min-height: 40px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 10px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-dark);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 182, 63, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 182, 63, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(48px, 48px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(15, 123, 82, 0.5), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(244, 182, 63, 0.12), transparent),
    linear-gradient(180deg, rgba(6, 42, 31, 0.3) 0%, rgba(6, 42, 31, 0.85) 100%),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-accent {
  display: block;
  background: linear-gradient(135deg, var(--sun), #ffe08a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--green-dark);
  background: var(--sun);
  box-shadow: 0 8px 28px var(--sun-glow);
}

.button-primary:hover {
  background: #ffd06f;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-points span {
  border-left: 3px solid var(--sun);
  padding: 4px 16px 4px 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Bento */
.bento-section {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 0 0 24px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card--accent {
  background: linear-gradient(145deg, rgba(15, 123, 82, 0.92), rgba(6, 42, 31, 0.95));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.bento-card--accent p {
  color: rgba(255, 255, 255, 0.85);
}

.bento-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(15, 123, 82, 0.1);
}

.bento-card--accent .bento-icon {
  color: var(--sun);
  background: rgba(255, 255, 255, 0.12);
}

.bento-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.bento-link {
  margin-top: auto;
  color: var(--sun);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Sections */
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-band {
  background: linear-gradient(180deg, var(--soft), rgba(238, 247, 241, 0.4));
}

.section-lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro {
  padding: 48px 0 24px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Glass card utility */
.glass-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Stats */
.stats-section {
  padding: 12px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stat-card {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.stat-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--sun), var(--green));
}

.stat-value {
  display: block;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 0.95;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Subsidy */
.subsidy-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.subsidy-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.subsidy-table-wrap {
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.subsidy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.subsidy-table th,
.subsidy-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.subsidy-table th {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.subsidy-table td:nth-child(2) {
  font-weight: 700;
  color: var(--green);
}

.subsidy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.subsidy-steps {
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.subsidy-steps h3 {
  margin-bottom: 16px;
  color: var(--green-dark);
}

.step-list {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.step-list li {
  margin-bottom: 12px;
  padding-left: 4px;
}

/* Services, values */
.services-section,
.values-section,
.social-proof,
.estimate-section,
.projects-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 32px;
}

.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card,
.value-grid article {
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card {
  min-height: 220px;
}

.service-card:hover,
.value-grid article:hover,
.customer-review-card:hover,
.timeline article:hover,
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(6, 42, 31, 0.14);
}

.service-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--aqua);
  font-weight: 900;
  font-size: 0.9rem;
}

.service-card p,
.value-grid p,
.customer-review-card p,
.timeline p,
.estimate-copy p,
.component-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Components */
.components,
.process,
.contact-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.component-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.component-photo {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.component-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.component-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.component-list span {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 0.88rem;
}

.value-grid article {
  border-top: 4px solid var(--green);
}

.value-grid article:nth-child(2) { border-top-color: var(--sun); }
.value-grid article:nth-child(3) { border-top-color: var(--aqua); }
.value-grid article:nth-child(4) { border-top-color: var(--clay); }

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

.project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.project-thumb {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: linear-gradient(135deg, rgba(15, 123, 82, 0.12), rgba(244, 182, 63, 0.15));
}

.project-card h3 {
  font-size: 1rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.project-card .project-link {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
}

/* Reviews */
.proof-heading {
  max-width: none;
}

.proof-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.customer-review-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-customer h3 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.review-customer span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--sun);
  font-size: 0.95rem;
}

.review-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
}

.review-system {
  width: fit-content;
  border: 1px solid rgba(14, 138, 163, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--green-dark);
  background: #eef8f5;
  font-size: 0.8rem;
  font-weight: 800;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 210px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.timeline span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
  font-size: 0.9rem;
}

/* Estimate */
.estimate-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 520px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.estimate-copy {
  position: sticky;
  top: 100px;
}

.contact-strip {
  margin-top: 20px;
}

.contact-strip a {
  border-bottom: 2px solid var(--sun);
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.estimate-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--shadow);
}

.estimate-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.estimate-form input,
.estimate-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: #ffffff;
}

.estimate-form input:focus,
.estimate-form select:focus {
  outline: 3px solid rgba(244, 182, 63, 0.35);
  border-color: var(--sun);
}

.estimate-results {
  display: grid;
  gap: 10px;
}

.estimate-result {
  border-left: 4px solid var(--aqua);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--muted);
  background: #eff8f9;
  font-weight: 600;
  font-size: 0.92rem;
}

.estimate-breakdown {
  display: grid;
  gap: 8px;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(15, 123, 82, 0.06);
  font-size: 0.9rem;
}

.estimate-row strong {
  color: var(--green-dark);
  white-space: nowrap;
}

.estimate-row--highlight {
  background: rgba(244, 182, 63, 0.18);
  font-weight: 800;
}

.form-button {
  width: 100%;
  border: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.map-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-panel a,
.contact-panel span {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.contact-panel span {
  border-bottom: 0;
  color: var(--muted);
  font-weight: 600;
  cursor: default;
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(16px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.9);
  background: var(--green-dark);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* FAB */
.fab-group {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(6, 42, 31, 0.25);
  cursor: pointer;
  transition: transform 180ms ease;
}

.fab:hover {
  transform: scale(1.08);
}

.fab--call {
  background: var(--green);
}

.fab--whatsapp {
  background: #25d366;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }

  .proof-heading {
    grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.55fr);
    align-items: end;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .service-grid,
  .value-grid,
  .timeline,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subsidy-layout,
  .component-grid,
  .estimate-grid,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .estimate-copy {
    position: static;
  }

  .component-photo img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 32, 28, 0.1);
    border-radius: 14px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions .header-cta {
    display: none;
  }

  .hero-content {
    padding: 120px 0 48px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--wide {
    grid-column: span 1;
  }

  .service-grid,
  .value-grid,
  .timeline,
  .component-list,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .brand span:last-child {
    display: none;
  }

  .fab-group {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .hero-actions .button {
    width: 100%;
  }

  .contact-strip {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-grid {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button:hover,
  .service-card:hover,
  .fab:hover {
    transform: none;
  }
}

@supports not (backdrop-filter: blur(12px)) {
  .glass-card,
  .bento-card,
  .button-secondary {
    background: var(--surface);
  }
}
