:root {
  --bg: #f5f2ed;
  --surface: #ffffff;
  --surface-alt: #f1ece4;
  --text: #1f252d;
  --muted: #66707d;
  --line: rgba(31, 37, 45, 0.12);
  --accent: #f28b17;
  --accent-dark: #cf6f06;
  --accent-soft: rgba(242, 139, 23, 0.12);
  --dark: #222831;
  --dark-soft: #2f3640;
  --success: #2f8f5b;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 10px 24px rgba(28, 32, 37, 0.08);
  --shadow: 0 20px 50px rgba(28, 32, 37, 0.12);
  --shadow-lg: 0 28px 70px rgba(28, 32, 37, 0.18);
  --container: 1200px;
  --header-height: 90px;
  --font-main: "Montserrat", "Segoe UI", sans-serif;
  --font-display: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  position: relative;
}

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

.section {
  padding: 90px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8f5ef 0%, #efe7db 100%);
}

.section-dark {
  background: linear-gradient(180deg, #232931 0%, #1d222a 100%);
  color: #f7f7f7;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-copy,
.lead,
.page-intro p,
.card-copy,
.stat-copy,
.feature-copy,
.faq-answer,
.timeline-copy,
.footer-copy,
.contact-copy {
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffb347 100%);
  color: #111;
  box-shadow: 0 18px 34px rgba(242, 139, 23, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 42px rgba(242, 139, 23, 0.36);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-secondary--dark {
  color: var(--dark);
  border-color: rgba(31, 37, 45, 0.16);
}

.btn-link {
  padding: 0;
  background: transparent;
  color: var(--accent-dark);
  border-radius: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(20, 25, 31, 0.1);
  padding: 12px 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.brand-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.site-header.is-scrolled .brand-title {
  color: var(--dark);
}

.site-header.is-scrolled .brand-subtitle {
  color: var(--muted);
}

.desktop-nav {
  justify-self: center;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.menu-item {
  position: relative;
}

.menu-item--dropdown {
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.menu-link,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  border: 0;
}

.site-header.is-scrolled .menu-link,
.site-header.is-scrolled .menu-toggle {
  color: var(--dark);
}

.menu-link:hover,
.menu-toggle:hover,
.menu-link.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .menu-link:hover,
.site-header.is-scrolled .menu-toggle:hover,
.site-header.is-scrolled .menu-link.is-active {
  background: rgba(34, 40, 49, 0.08);
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 37, 45, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 18px;
}

.menu-item:hover .dropdown,
.menu-item:focus-within .dropdown,
.menu-item.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--dark);
  font-weight: 600;
}

.dropdown a span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.dropdown a:hover {
  background: var(--surface-alt);
}

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

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header-contact small {
  color: rgba(255, 255, 255, 0.72);
}

.header-contact strong {
  color: #fff;
  font-size: 0.98rem;
}

.site-header.is-scrolled .header-contact small {
  color: var(--muted);
}

.site-header.is-scrolled .header-contact strong {
  color: var(--dark);
}

.header-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  flex: 0 0 auto;
  font-size: 0;
  position: relative;
  overflow: hidden;
}

.site-header.is-scrolled .header-menu-button {
  background: rgba(34, 40, 49, 0.08);
  color: var(--dark);
}

.header-menu-button::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 360px);
  max-width: 100%;
  padding: 110px 22px 28px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: -20px 0 50px rgba(20, 24, 31, 0.16);
  transform: translateX(102%);
  transition: transform 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 17, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1090;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-link,
.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-alt);
  color: var(--dark);
  font-weight: 700;
  border: 0;
}

.mobile-accordion {
  display: grid;
  gap: 10px;
}

.mobile-accordion-content {
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.mobile-accordion.is-open .mobile-accordion-content {
  max-height: 280px;
}

.mobile-accordion-content a {
  padding: 14px 16px;
  margin-left: 10px;
  border-left: 3px solid var(--accent);
  background: #f8f5ef;
  border-radius: 12px;
  color: var(--dark);
  font-weight: 600;
}

.mobile-contact-box {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #232931 0%, #2b313b 100%);
  color: #fff;
}

.mobile-contact-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 60px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(110deg, rgba(17, 20, 25, 0.78) 0%, rgba(17, 20, 25, 0.46) 46%, rgba(17, 20, 25, 0.18) 100%),
    url("../images/hero-house.jpg") center/cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(245, 242, 237, 0) 0%, var(--bg) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-title {
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-stat,
.glass-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-side {
  position: relative;
}

.hero-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.hero-media-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  right: -20px;
  bottom: 24px;
  width: min(300px, 78%);
}

.hero-floating-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.hero-floating-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.intro-band {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.intro-band-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-box {
  padding: 18px 20px;
  border-radius: 22px;
  background: #fbfaf8;
}

.intro-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.intro-box span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.media-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
}

.media-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.media-stack .media-tall {
  min-height: 560px;
}

.media-stack .media-short {
  min-height: 260px;
}

.media-stack .media-column {
  display: grid;
  gap: 18px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}

.bullet-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ffbc67 100%);
  box-shadow: 0 0 0 8px rgba(242, 139, 23, 0.12);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.model-card,
.gallery-card,
.contact-card,
.faq-card,
.process-card,
.timeline-card,
.info-card,
.value-card {
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.feature-card,
.process-card,
.value-card,
.info-card {
  padding: 28px;
}

.service-card,
.gallery-card,
.model-card {
  display: flex;
  flex-direction: column;
}

.service-card img,
.gallery-card img,
.model-card img {
  width: 100%;
  object-fit: cover;
}

.service-card img,
.gallery-card img {
  aspect-ratio: 1.1;
}

.service-body,
.gallery-body,
.model-body {
  padding: 24px;
  display: grid;
  gap: 10px;
}

.card-title,
.feature-title,
.model-title,
.faq-title,
.timeline-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.feature-title {
  font-size: 1.24rem;
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.icon-pill {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 139, 23, 0.18) 0%, rgba(242, 139, 23, 0.06) 100%);
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.tabs a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.tabs a.is-active,
.tabs a:hover {
  background: var(--dark);
  color: #fff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.showcase-panel {
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(180deg, #232931 0%, #2d333d 100%);
  color: #fff;
}

.showcase-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.showcase-list-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.showcase-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.number-card {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.number-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.number-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
}

.section-dark .timeline-card {
  color: var(--text);
}

.section-dark .timeline-title {
  color: var(--text);
}

.section-dark .timeline-copy {
  color: var(--muted) !important;
}

.timeline-step {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb757 100%);
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--dark);
}

.faq-trigger span:last-child {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-dark);
}

.faq-item.is-open .faq-trigger span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-panel-inner {
  padding: 0 24px 24px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 72px) 0 110px;
  background:
    linear-gradient(115deg, rgba(21, 25, 30, 0.86) 0%, rgba(21, 25, 30, 0.55) 44%, rgba(21, 25, 30, 0.3) 100%),
    var(--page-hero-image) center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 140px;
  background: linear-gradient(180deg, rgba(245, 242, 237, 0) 0%, var(--bg) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.56);
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.sticky-card {
  position: sticky;
  top: 118px;
}

.cta-panel {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #232931 0%, #2d333d 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.media-banner {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.media-banner img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.media-banner-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(20, 24, 30, 0.68);
  color: #fff;
  backdrop-filter: blur(14px);
}

.media-banner-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.compare-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.compare-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.compare-card li::before {
  content: "+";
  color: var(--accent-dark);
  font-weight: 800;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.model-card img {
  aspect-ratio: 0.82;
  object-fit: cover;
  background: #f7f3ec;
}

.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.gallery-card img {
  aspect-ratio: 0.82;
}

.gallery-card--wide img {
  aspect-ratio: 1.4;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-form {
  padding: 34px;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--dark);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf8;
  color: var(--text);
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(242, 139, 23, 0.46);
  box-shadow: 0 0 0 4px rgba(242, 139, 23, 0.12);
}

.field.is-full {
  grid-column: 1 / -1;
}

.map-placeholder {
  min-height: 240px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(242, 139, 23, 0.12) 0%, rgba(242, 139, 23, 0.05) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.68) 0,
      rgba(255, 255, 255, 0.68) 12px,
      rgba(31, 37, 45, 0.03) 12px,
      rgba(31, 37, 45, 0.03) 24px
    );
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-weight: 600;
}

.cta-strip {
  padding: 34px 0;
}

.cta-strip-card {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #232931 0%, #343c47 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-strip-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1d222a 0%, #14181e 100%);
  color: #fff;
  padding: 90px 0 26px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(242, 139, 23, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(242, 139, 23, 0.12), transparent 22%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
  gap: 28px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.footer-brand h3,
.footer-title {
  margin: 18px 0 12px;
  font-family: var(--font-display);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.footer-bottom span {
  width: 100%;
}

.social-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: grid;
  gap: 10px;
}

.social-rail a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 0;
  position: relative;
}

.social-rail a::before,
.floating-whatsapp::before {
  content: "";
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-call {
  background: #3b82f6;
}

.social-call::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24 11.3 11.3 0 0 0 3.56.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.3 21 3 13.7 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.3 11.3 0 0 0 .57 3.56 1 1 0 0 1-.24 1.01l-2.2 2.22Z' fill='white'/%3E%3C/svg%3E");
}

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

.social-whatsapp::before,
.floating-whatsapp::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M19.11 17.33c-.28-.14-1.64-.81-1.89-.9-.25-.09-.43-.14-.61.14-.18.28-.7.89-.86 1.07-.16.18-.32.21-.6.07-.28-.14-1.17-.43-2.22-1.37-.82-.73-1.37-1.63-1.53-1.91-.16-.28-.02-.43.12-.57.13-.13.28-.32.43-.48.14-.16.18-.28.27-.46.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.84-2.02-.22-.53-.45-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.28-.95.93-.95 2.27 0 1.34.98 2.64 1.11 2.82.14.18 1.92 2.93 4.66 4.11.65.28 1.16.45 1.56.57.66.21 1.26.18 1.73.11.53-.08 1.64-.67 1.87-1.31.23-.64.23-1.19.16-1.31-.06-.11-.24-.18-.52-.32Z'/%3E%3Cpath fill='white' d='M16.03 3.2c-7.01 0-12.7 5.68-12.7 12.7 0 2.23.58 4.33 1.59 6.16L3.2 28.8l6.93-1.69a12.65 12.65 0 0 0 5.9 1.5h.01c7 0 12.7-5.69 12.7-12.7 0-3.39-1.32-6.57-3.72-8.97a12.6 12.6 0 0 0-8.99-3.74Zm0 23.1h-.01a10.5 10.5 0 0 1-5.35-1.46l-.38-.22-4.11 1 1.1-4-.25-.41a10.51 10.51 0 0 1-1.61-5.59c0-5.8 4.72-10.52 10.52-10.52 2.81 0 5.46 1.09 7.44 3.08a10.45 10.45 0 0 1 3.08 7.45c0 5.8-4.72 10.52-10.43 10.52Z'/%3E%3C/svg%3E");
}

.social-instagram {
  background: linear-gradient(135deg, #ff7a00 0%, #ff2e63 55%, #7d3cff 100%);
}

.social-instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7.75 2h8.5A5.75 5.75 0 0 1 22 7.75v8.5A5.75 5.75 0 0 1 16.25 22h-8.5A5.75 5.75 0 0 1 2 16.25v-8.5A5.75 5.75 0 0 1 7.75 2Zm0 1.8A3.95 3.95 0 0 0 3.8 7.75v8.5a3.95 3.95 0 0 0 3.95 3.95h8.5a3.95 3.95 0 0 0 3.95-3.95v-8.5a3.95 3.95 0 0 0-3.95-3.95h-8.5Zm8.98 1.35a1.07 1.07 0 1 1 0 2.14 1.07 1.07 0 0 1 0-2.14ZM12 6.86A5.14 5.14 0 1 1 6.86 12 5.14 5.14 0 0 1 12 6.86Zm0 1.8A3.34 3.34 0 1 0 15.34 12 3.34 3.34 0 0 0 12 8.66Z'/%3E%3C/svg%3E");
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  box-shadow: var(--shadow);
  font-size: 0;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 1180px) {
  .hero-grid,
  .split-section,
  .showcase-grid,
  .two-column,
  .contact-layout,
  .footer-grid,
  .card-grid.four,
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 992px) {
  html,
  body,
  .page-shell {
    overflow-x: hidden;
  }

  .desktop-nav,
  .header-contact,
  .header-actions .btn {
    display: none;
  }

  .header-menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-grid,
  .split-section,
  .showcase-grid,
  .two-column,
  .contact-layout,
  .card-grid.three,
  .card-grid.four,
  .gallery-grid,
  .numbers-grid,
  .footer-grid,
  .section-head,
  .intro-band-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .hero-title,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-side {
    max-width: 720px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .showcase-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-card {
    position: static;
  }

  .cta-strip-card {
    grid-template-columns: 1fr;
  }

  .social-rail {
    left: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .hero {
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 92px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack .media-tall,
  .media-stack .media-short {
    min-height: auto;
  }

  .showcase-media-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .cta-panel,
  .showcase-panel,
  .feature-card,
  .process-card,
  .value-card,
  .info-card {
    padding: 24px;
  }

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

  .social-rail {
    top: auto;
    bottom: 88px;
    transform: none;
  }

  .social-rail a {
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp {
    right: 14px;
    left: auto;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 82px;
  }

  .section-title {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
  }

  .header-inner {
    align-items: start;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .brand-title {
    font-size: 1.06rem;
    line-height: 1;
  }

  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
  }

  .header-menu-button {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .mobile-panel {
    inset: 0;
    width: 100vw;
    padding: 94px 16px 24px;
    box-shadow: none;
    transform: translateX(100%);
  }

  .mobile-link,
  .mobile-accordion-toggle {
    padding: 15px 16px;
    border-radius: 16px;
  }

  .page-hero {
    padding: calc(var(--header-height) + 34px) 0 92px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 112px;
  }

  .hero-title {
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 0.96;
    max-width: 10ch;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.02;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .breadcrumbs {
    width: 100%;
    justify-content: center;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  .hero-media-card img,
  .service-card img,
  .gallery-card img,
  .model-card img {
    aspect-ratio: 1;
  }

  .intro-box,
  .hero-stat,
  .number-card,
  .contact-card,
  .cta-strip-card {
    padding: 22px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    width: 62px;
    height: 62px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
