/* Construction SKAF — components.css
   Navbar · Hero · Buttons · Trust · Cards · Process · Reviews
   Area · Form · Footer · Filter · Lightbox · FAQ · Pages
   ============================================================ */

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition:
    background var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.navbar--transparent { background: transparent; }

.navbar--solid {
  background: var(--ink);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.06);
}

.navbar__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.navbar__logo img {
  position: static;
  inset: auto;
  height: 34px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}

.navbar__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-light);
  padding: 0.375rem 0.7rem;
  border-radius: var(--radius);
  transition: color var(--dur-fast) ease;
  opacity: 0.8;
  white-space: nowrap;
}

.navbar__nav a:hover { opacity: 1; color: var(--yellow); }
.navbar__nav a.active { opacity: 1; color: var(--yellow); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--yellow);
  padding: 0.5rem 1rem;
  border: 1.5px solid oklch(72% 0.10 85 / 0.45);
  border-radius: var(--radius);
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease;
  white-space: nowrap;
}

.navbar__phone:hover {
  background: oklch(72% 0.10 85 / 0.1);
  border-color: var(--yellow);
}

.navbar__phone svg { width: 13px; height: 13px; }

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.lang-btn {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding: 0.35rem 0.45rem;
  transition: color var(--dur-fast) ease;
  line-height: 1;
}

.lang-btn.active { color: var(--text-light); }
.lang-btn:hover  { color: var(--text-light); }

.lang-sep {
  color: var(--ink-border);
  font-size: var(--text-xs);
  user-select: none;
  pointer-events: none;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  color: var(--text-light);
  margin-left: auto;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform var(--dur-base) var(--ease-out),
    opacity var(--dur-fast) ease;
}

.navbar__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: var(--navbar-h) 0 0;
  background: var(--ink);
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-out);
}

.navbar__mobile-menu.open { transform: translateX(0); }

.navbar__mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-light);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--ink-border);
  transition: color var(--dur-fast) ease;
  display: block;
}

.navbar__mobile-menu a:last-of-type { border-bottom: none; }
.navbar__mobile-menu a:hover,
.navbar__mobile-menu a.active { color: var(--yellow); }

.mobile-nav-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-border);
}

.mobile-lang-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  align-items: center;
}

.mobile-lang-btn {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--ink-border);
  border-radius: var(--radius);
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.mobile-lang-btn.active {
  color: var(--yellow);
  border-color: oklch(72% 0.10 85 / 0.55);
}

.mobile-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--yellow);
}

.mobile-phone-link svg { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .navbar__nav,
  .navbar__phone,
  .navbar__lang { display: none; }

  .navbar__hamburger { display: flex; }
  .navbar__mobile-menu { display: flex; }
}

/* ===== NAVBAR DROPDOWN ===== */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-light);
  padding: 0.375rem 0.7rem;
  border-radius: var(--radius);
  opacity: 0.8;
  transition: color var(--dur-fast) ease, opacity var(--dur-fast) ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__dropdown-trigger:hover,
.navbar__dropdown:hover .navbar__dropdown-trigger,
.navbar__dropdown:focus-within .navbar__dropdown-trigger {
  opacity: 1;
  color: var(--yellow);
}

.navbar__dropdown-chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}

.navbar__dropdown:hover .navbar__dropdown-chevron,
.navbar__dropdown:focus-within .navbar__dropdown-chevron {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-lg);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    visibility var(--dur-base) ease;
  box-shadow: 0 12px 40px oklch(8% 0.01 80 / 0.5);
  z-index: 10;
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown:focus-within .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: background var(--dur-fast) ease;
}

.dropdown-item:hover {
  background: var(--ink-border);
}

.dropdown-item__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--dur-fast) ease;
}

.dropdown-item:hover .dropdown-item__title { color: var(--yellow); }

.dropdown-item__desc {
  font-size: var(--text-xs);
  color: var(--muted-light);
  line-height: 1.4;
}

/* Mobile nav dropdown */
.mobile-nav-dropdown {
  border-bottom: 1px solid var(--ink-border);
}

.mobile-nav-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-light);
  padding-block: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}

.mobile-nav-dropdown__trigger:hover { color: var(--yellow); }

.mobile-nav-dropdown__chevron {
  width: 16px;
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}

.mobile-nav-dropdown.open .mobile-nav-dropdown__chevron {
  transform: rotate(180deg);
}

.mobile-nav-dropdown__menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out);
}

.mobile-nav-dropdown.open .mobile-nav-dropdown__menu {
  grid-template-rows: 1fr;
}

.mobile-nav-dropdown__menu-inner { overflow: hidden; }

.mobile-nav-dropdown__menu a {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--muted-light);
  padding: 0.75rem 1rem;
  border-bottom: none;
  border-radius: var(--radius);
  display: block;
  transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}

.mobile-nav-dropdown__menu a:hover {
  color: var(--yellow);
  background: var(--ink-soft);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    oklch(10% 0.01 80 / 0.78) 0%,
    oklch(12% 0.015 80 / 0.5) 55%,
    oklch(7% 0.008 80 / 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow {
  opacity: 0;
  transform: translateY(10px);
  animation: hero-in 0.5s var(--ease-out) 0.3s forwards;
}

.hero__eyebrow-rule {
  width: 2.25rem;
  height: 1.5px;
  background: var(--yellow);
  flex-shrink: 0;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: rule-draw 0.45s var(--ease-out) 0.65s forwards;
}

.hero__eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(80% 0.14 88);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text-light);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 0.7s var(--ease-out) 0.55s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--yellow);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--muted-light);
  max-width: 50ch;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: hero-in 0.6s var(--ease-out) 0.75s forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-in 0.6s var(--ease-out) 0.9s forwards;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: oklch(65% 0.01 85 / 0.55);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-fade 0.5s ease 1.3s both;
}

.hero__scroll-line {
  width: 1.5px;
  height: 36px;
  background: currentColor;
  animation: scroll-line-grow 1.8s ease-in-out 1.4s infinite;
  transform-origin: top;
}

@keyframes hero-fade { to { opacity: 1; } }
@keyframes scroll-line-grow {
  0%, 100% { transform: scaleY(1); opacity: 0.55; }
  50%       { transform: scaleY(0.6); opacity: 0.25; }
}

@media (max-width: 640px) {
  .hero {
    align-items: center;
    padding-bottom: 0;
    text-align: center;
  }
  .hero__eyebrow,
  .hero__ctas { justify-content: center; }
  .hero__title,
  .hero__subtitle { max-width: 100%; margin-inline: auto; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition:
    background var(--dur-fast) ease,
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    transform var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px oklch(63% 0.12 85 / 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: oklch(100% 0 0 / 0.28);
}

.btn--ghost:hover {
  border-color: oklch(100% 0 0 / 0.65);
  background: oklch(100% 0 0 / 0.05);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--cream-border);
}

.btn--ghost-dark:hover {
  border-color: var(--muted-dark);
  background: oklch(20% 0.015 80 / 0.04);
}

.btn--sm { font-size: var(--text-xs); padding: 0.625rem 1.25rem; }
.btn--lg { font-size: var(--text-base); padding: 1rem 2.25rem; }
.btn svg  { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  border-top: 1px solid var(--ink-border);
  padding-block: 1.5rem;
}

.trust-strip__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 3rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.trust-item__value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}

.trust-item__label {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.trust-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--ink-border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-strip__inner { gap: 1.5rem 2rem; }
  .trust-divider { display: none; }
}

/* ===== SERVICE CARDS ===== */
.service-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover .img-frame img { transform: scale(1.05); }

.service-card__media { aspect-ratio: 4/3; }

.service-card__body { padding: 1.5rem 1.5rem 1.75rem; }

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--muted-dark);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  transition: gap var(--dur-fast) ease, color var(--dur-fast) ease;
}

.service-card:hover .service-card__link {
  gap: 0.8rem;
  color: oklch(35% 0.01 80);
}

.service-card__arrow {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

/* ===== FEATURED PROJECT ===== */
.featured-project__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.featured-project__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.featured-project__media:hover .img-frame img { transform: scale(1.04); }

.featured-project__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: oklch(72% 0.10 85 / 0.12);
  border: 1px solid oklch(72% 0.10 85 / 0.32);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.featured-project__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.featured-project__desc {
  font-size: var(--text-base);
  color: var(--muted-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .featured-project__inner { grid-template-columns: 1fr; }
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.process-step { position: relative; }

.process-step__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.2;
  letter-spacing: -0.04em;
  margin-bottom: -1.25rem;
  pointer-events: none;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  position: relative;
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.65;
}

.process-connector {
  display: none;
}

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

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

/* ===== REVIEWS ===== */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviews-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--yellow);
}

.reviews-stars svg { width: 16px; height: 16px; }

.reviews-count {
  font-size: var(--text-sm);
  color: var(--muted-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  display: flex;
  gap: 0.15rem;
  color: var(--yellow);
}

.review-card__stars svg { width: 14px; height: 14px; }

.review-card__text {
  font-size: var(--text-sm);
  line-height: 1.72;
  color: var(--text-dark);
  flex: 1;
}

.review-card__text::before { content: '\201C'; }
.review-card__text::after  { content: '\201D'; }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--muted-dark);
  flex-shrink: 0;
  text-transform: uppercase;
}

.review-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.reviews-cta { text-align: center; }

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

/* ===== SERVICE AREA ===== */
.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}

.city-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.city-chip:hover {
  border-color: oklch(60% 0.12 85);
  background: var(--cream-alt);
}

.service-area__map {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  position: relative;
}

@media (max-width: 768px) {
  .service-area__inner { grid-template-columns: 1fr; }
  .service-area__map { aspect-ratio: 16/9; }
}

/* ===== LEAD FORM SECTION ===== */
.lead-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.lead-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.lead-cta__body {
  font-size: var(--text-base);
  color: var(--muted-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lead-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--dur-fast) ease;
}

.lead-cta__phone:hover { color: oklch(35% 0.12 80); }

.lead-cta__phone svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

@media (max-width: 900px) {
  .lead-cta__inner { grid-template-columns: 1fr; }
}

/* ===== FORM ===== */
.lead-form {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-dark);
  font-size: var(--text-sm);
  transition:
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
  outline: none;
  line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-dark); opacity: 0.6; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px oklch(72% 0.10 85 / 0.28);
}

.form-textarea { resize: vertical; min-height: 110px; }

.form-select {
  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 fill='%23888' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--muted-dark);
  text-align: center;
  margin-top: 0.875rem;
  opacity: 0.65;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success.visible { display: block; }

.form-success__icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.form-success__icon svg { width: 24px; height: 24px; color: var(--ink); }

.form-success__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success__text {
  font-size: var(--text-sm);
  color: var(--muted-dark);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: 2rem;
}

.footer__top {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--ink-border);
  margin-bottom: 2rem;
}

.footer__wordmark {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer__wordmark .dot { color: var(--yellow); }

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 26ch;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer__rbq {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--muted-light);
  letter-spacing: 0.05em;
  opacity: 0.6;
  background: var(--ink-soft);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-border);
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--muted-light);
  transition: color var(--dur-fast) ease;
  opacity: 0.85;
}

.footer__links a:hover { color: var(--text-light); opacity: 1; }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.5;
  opacity: 0.85;
}

.footer__contact-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

.footer__contact-item a {
  transition: color var(--dur-fast) ease;
}

.footer__contact-item a:hover { color: var(--text-light); }

.footer__bottom {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--muted-light);
  opacity: 0.5;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-border);
  color: var(--muted-light);
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.footer__social a:hover {
  color: var(--yellow);
  border-color: oklch(72% 0.10 85 / 0.55);
}

.footer__social svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

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

/* ===== FILTER CHIPS (projects page) ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--cream-border);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted-dark);
  background: transparent;
  cursor: pointer;
  transition:
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    background var(--dur-fast) ease;
}

.filter-chip:hover {
  border-color: var(--muted-dark);
  color: var(--text-dark);
}

.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--text-light);
}

.filter-chip.active::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.project-card__media {
  aspect-ratio: 4/3;
  background: var(--ink-soft);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: oklch(10% 0.01 80 / 0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background var(--dur-base) var(--ease-out);
}

.project-card:hover .project-card__overlay {
  background: oklch(10% 0.01 80 / 0.65);
}

.project-card__info {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}

.project-card:hover .project-card__info {
  opacity: 1;
  transform: translateY(0);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.project-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.project-card[data-hidden="true"] { display: none; }

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

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

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(8% 0.01 80 / 0.94);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox__inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
}

.lightbox__caption-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-light);
}

.lightbox__caption-tag {
  font-size: var(--text-xs);
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius);
  transition: color var(--dur-fast) ease;
}

.lightbox__close:hover { color: var(--text-light); }
.lightbox__close svg { width: 16px; height: 16px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--cream-border);
}

.surface-dark .faq-item { border-bottom-color: var(--ink-border); }

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  text-align: left;
  padding-block: 1.375rem;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}

.surface-dark .faq-item__trigger { color: var(--text-light); }

.faq-item__trigger:hover { color: oklch(35% 0.12 80); }
.surface-dark .faq-item__trigger:hover { color: var(--yellow); }

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform var(--dur-base) var(--ease-out);
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out);
}

.faq-item.open .faq-item__body { grid-template-rows: 1fr; }

.faq-item__body-inner {
  overflow: hidden;
}

.faq-item__answer {
  padding-bottom: 1.375rem;
  font-size: var(--text-base);
  color: var(--muted-dark);
  line-height: 1.7;
  max-width: 68ch;
}

.surface-dark .faq-item__answer { color: var(--muted-light); }

/* ===== PAGE HERO (service + inner pages) ===== */
.page-hero {
  position: relative;
  height: clamp(320px, 45vh, 560px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  background: var(--ink);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, oklch(10% 0.01 80 / 0.85) 0%, oklch(12% 0.012 80 / 0.4) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-light);
  line-height: 1.06;
}

/* ===== ABOUT PAGE ===== */
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.credential-card {
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.credential-card__icon {
  width: 40px;
  height: 40px;
  color: var(--yellow);
  margin-inline: auto;
  margin-bottom: 0.875rem;
}

.credential-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.credential-card__desc {
  font-size: var(--text-sm);
  color: var(--muted-dark);
}

@media (max-width: 768px) {
  .about-story__inner { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== PROJECT PAGES ===== */
a.project-card {
  display: block;
  text-decoration: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted-dark);
  text-decoration: none;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  transition: color var(--dur-fast) ease, gap var(--dur-fast) ease;
}

.back-link:hover { color: var(--text-dark); gap: 0.75rem; }
.back-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
}

/* ===== SERVICE INTRO LAYOUT ===== */
.service-intro__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 900px) {
  .service-intro__inner { grid-template-columns: 1fr; }
}

.scope-heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

/* ===== SERVICE GALLERY ===== */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.service-gallery .img-frame:nth-child(1),
.service-gallery .img-frame:nth-child(4) {
  aspect-ratio: 3 / 4;
}

.service-gallery .img-frame:nth-child(2),
.service-gallery .img-frame:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.service-gallery .img-frame:nth-child(5),
.service-gallery .img-frame:nth-child(6) {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-gallery .img-frame:nth-child(1),
  .service-gallery .img-frame:nth-child(4) {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .service-gallery { grid-template-columns: 1fr; }
}

/* ===== SCOPE LIST ===== */
.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.scope-list li {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: 1.7;
}

.scope-list li::before {
  content: '';
  flex-shrink: 0;
  width: 2rem;
  height: 2px;
  background: var(--yellow);
  position: relative;
  top: -0.15em;
}

/* ===== SERVICE GALLERY — 4-IMAGE LAYOUT ===== */
.service-gallery--4 {
  grid-template-columns: 1fr 1fr;
}

.service-gallery--4 .img-frame:nth-child(1) {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}

.service-gallery--4 .img-frame:nth-child(2),
.service-gallery--4 .img-frame:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.service-gallery--4 .img-frame:nth-child(4) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

@media (max-width: 900px) {
  .service-gallery--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-gallery--4 .img-frame:nth-child(1) {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .service-gallery--4 .img-frame:nth-child(4) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .service-gallery--4 { grid-template-columns: 1fr; }
  .service-gallery--4 .img-frame:nth-child(4) { grid-column: auto; }
}

/* ===== GALLERY CTA LINK ===== */
.gallery-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.gallery-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1.5px solid var(--cream-border);
  padding-bottom: 0.25rem;
  transition: border-color var(--dur-fast) ease, gap var(--dur-fast) ease;
}

.gallery-cta__link:hover {
  border-color: var(--yellow);
  gap: 0.875rem;
}

.gallery-cta__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform var(--dur-fast) ease;
}

.gallery-cta__link:hover .gallery-cta__arrow {
  transform: translateX(3px);
}

.surface-dark .gallery-cta__link {
  color: var(--text-light);
  border-bottom-color: var(--ink-border);
}
.surface-dark .gallery-cta__link:hover { border-color: var(--yellow); }

/* ===== SERVICE STATS (trust row inside intro section) ===== */
.service-stats {
  display: flex;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1.5px solid var(--cream-border);
  flex-wrap: wrap;
}

.service-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-inline: clamp(1rem, 2.5vw, 1.75rem);
}

.service-stat:first-child { padding-left: 0; }

.service-stat__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.service-stat__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
  line-height: 1.3;
}

.service-stat__divider {
  width: 1px;
  height: 2.5rem;
  background: var(--cream-border);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .service-stat__divider { display: none; }
  .service-stat { padding-inline: 0; }
  .service-stats { gap: 1.25rem; }
}

/* ===== ABOUT STORY PARAGRAPHS (a-propos.html) ===== */
.about-story__para {
  margin-top: 1.25rem;
  color: var(--muted-dark);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* ===== CONTACT INFO BLOCK (contact.html) ===== */
.contact-info {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: var(--yellow);
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-dark);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-info__value a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--cream-border);
  transition: text-decoration-color var(--dur-fast) ease;
}

.contact-info__value a:hover {
  text-decoration-color: var(--yellow);
}

/* ===== MAP FRAME (contact.html) ===== */
.map-frame {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 21 / 7;
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
}

.map-frame iframe,
.map-frame > div {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .map-frame { aspect-ratio: 4 / 3; }
}
