:root {
  --bg: #020202;
  --bg2: #0a0a0a;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff3d00;
  --accent2: #ff8f1f;
  --shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 720px at 82% 8%, rgba(255, 122, 26, 0.2), transparent 62%),
    radial-gradient(900px 640px at 18% 0%, rgba(255, 61, 0, 0.2), transparent 64%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
  overflow-x: hidden;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--line);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(2, 2, 2, 0.64);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  background: rgba(2, 2, 2, 0.84);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-logo {
  height: clamp(34px, 3.2vw, 46px);
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(255, 61, 0, 0.15);
}

.brand-name {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  padding: 0.4rem 0.45rem;
  border-radius: 10px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.nav-cta {
  margin-left: 0.3rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 61, 0, 0.96), rgba(255, 143, 31, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(255, 61, 0, 0.14);
  font-weight: 650;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.hero {
  padding: 4.4rem 0 1.6rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -140px -40px auto -40px;
  height: 280px;
  background: radial-gradient(600px 240px at 20% 40%, rgba(255, 61, 0, 0.22), transparent 70%),
    radial-gradient(520px 260px at 80% 45%, rgba(255, 122, 26, 0.22), transparent 70%);
  pointer-events: none;
  filter: blur(1px);
  opacity: 0.95;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 120ms ease, background 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 61, 0, 0.96), rgba(255, 143, 31, 0.94));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 70px rgba(255, 61, 0, 0.14);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-block {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.metric dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.metric dd {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-media {
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-photo {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
}

.hero-card-media svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-card-body {
  padding: 1.05rem 1.05rem 1.2rem;
}

.hero-card-title {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.hero-card-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.section {
  padding: 3.2rem 0;
}

.section-head {
  display: grid;
  gap: 0.6rem;
  max-width: 70ch;
  margin-bottom: 1.6rem;
}

.logos {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.logos-label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  font-size: 0.9rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.logo-pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.1rem 1.1rem 1.05rem;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
}

.card-accent {
  background: radial-gradient(520px 250px at 20% 20%, rgba(255, 61, 0, 0.22), transparent 65%),
    radial-gradient(520px 250px at 80% 20%, rgba(255, 122, 26, 0.20), transparent 65%),
    rgba(255, 255, 255, 0.03);
}

.list {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.76);
}

.list li {
  margin: 0.35rem 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-realizations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-realizations .shot {
  min-height: 0;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.gallery-realizations .shot-media {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.45);
}

.gallery-realizations .shot-media img {
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
}

.gallery-realizations .shot:hover .shot-media img {
  transform: none;
}

.shot {
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
  min-height: 250px;
}

.shot:hover .shot-media img {
  transform: scale(1.03);
}

.shot-media {
  background: radial-gradient(700px 240px at 20% 20%, rgba(255, 61, 0, 0.25), transparent 65%),
    radial-gradient(700px 240px at 80% 40%, rgba(255, 122, 26, 0.24), transparent 65%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  min-height: 260px;
  overflow: hidden;
}

.shot-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shot-body {
  padding: 0.9rem 0.95rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-title {
  margin: 0 0 0.2rem;
  font-weight: 700;
}

.shot-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.bullets {
  display: grid;
  gap: 0.85rem;
}

.bullet {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem 0.95rem;
}

.bullet-title {
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.step-body h3 {
  margin-bottom: 0.35rem;
}

.cta {
  padding: 2.6rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(700px 260px at 20% 20%, rgba(255, 61, 0, 0.20), transparent 65%),
    radial-gradient(700px 260px at 80% 40%, rgba(255, 122, 26, 0.18), transparent 65%),
    rgba(255, 255, 255, 0.03);
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.contact-k {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-v {
  font-weight: 750;
  letter-spacing: -0.01em;
}

.form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.1rem 1.1rem;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

label {
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

input,
select,
textarea {
  appearance: none;
  font: inherit;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.72rem 0.8rem;
  outline: none;
}

select {
  padding-right: 2.4rem;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.8) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus,
.nav-toggle:focus {
  box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.18);
  border-color: rgba(255, 61, 0, 0.55);
}

.hint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  margin: 0.8rem 0 0;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0 0;
}

/* Phone banner */
.phone-banner {
  background: linear-gradient(135deg, rgba(255, 61, 0, 0.95), rgba(255, 143, 31, 0.92));
  padding: 0.7rem 0;
  text-align: center;
}

.phone-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.phone-banner-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.phone-banner-number {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.phone-banner-number:hover {
  opacity: 0.85;
}

.phone-banner-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 400ms ease;
}

.carousel-slide {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.carousel-btn:hover {
  background: rgba(255, 61, 0, 0.5);
  border-color: rgba(255, 61, 0, 0.6);
}

.carousel-counter {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 3.5rem;
  text-align: center;
}

.footer {
  padding: 1.7rem 0 2.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 61, 0, 0.25);
}

.faq-question {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  transition: color 150ms ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  line-height: 1.65;
}

/* Active nav link */
.nav-link.active,
.nav-link.is-active {
  color: var(--accent);
  background: rgba(255, 61, 0, 0.10);
}

/* Subnav — per-page section navigation */
.subnav {
  position: sticky;
  top: var(--header-h, 56px);
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(2, 2, 2, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subnav-inner {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.subnav-inner::-webkit-scrollbar {
  display: none;
}

.subnav-link {
  flex-shrink: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  transition: color 150ms ease, background 150ms ease;
  white-space: nowrap;
}

.subnav-link:hover,
.subnav-link.is-active {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
}

.subnav-link.is-active {
  color: var(--accent);
  background: rgba(255, 61, 0, 0.12);
}

/* Home hero */
.home-hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
}

.home-hero > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 2vh;
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.home-hero-logo {
  height: clamp(140px, 20vw, 260px);
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.55));
  margin-bottom: 0.5rem;
}

.home-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  background: linear-gradient(135deg, #fff 30%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.home-hero-lead {
  text-align: center;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}

.home-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 2.4rem 1.8rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(600px 300px at 50% 0%, rgba(255, 61, 0, 0.06), transparent 70%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-service-card:hover {
  border-color: rgba(255, 61, 0, 0.40);
  background: radial-gradient(600px 300px at 50% 0%, rgba(255, 61, 0, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 61, 0, 0.10), 0 12px 45px rgba(0, 0, 0, 0.30);
}

.home-service-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.home-service-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}

.home-service-card .muted {
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-service-btn {
  margin-top: auto;
  padding-top: 0.4rem;
}

.hero-grid--single {
  display: block;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.65rem);
    width: min(92vw, 360px);
    display: grid;
    gap: 0.35rem;
    padding: 0.65rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(2, 2, 2, 0.94);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open .nav-menu {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .home-services {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-slide {
    /* handled by JS */
  }
}
