:root {
  --orange: #f45100;
  --navy: #071923;
  --white: #ffffff;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: rgba(7, 25, 35, 0.02);

  --text: #071923;
  --text-88: rgba(7, 25, 35, 0.88);
  --text-86: rgba(7, 25, 35, 0.86);
  --text-84: rgba(7, 25, 35, 0.84);
  --text-80: rgba(7, 25, 35, 0.8);
  --text-78: rgba(7, 25, 35, 0.78);
  --text-76: rgba(7, 25, 35, 0.76);
  --text-72: rgba(7, 25, 35, 0.72);

  --ink-03: rgba(7, 25, 35, 0.03);
  --ink-06: rgba(7, 25, 35, 0.06);
  --ink-18: rgba(7, 25, 35, 0.18);
  --ink-22: rgba(7, 25, 35, 0.22);
  --ink-25: rgba(7, 25, 35, 0.25);

  --muted: var(--text-84);
  --line: rgba(7, 25, 35, 0.12);
  --shadow: 0 18px 50px rgba(7, 25, 35, 0.12);
  --header-bg: rgba(255, 255, 255, 0.92);

  color-scheme: light;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.45;
  background: var(--bg);
  color: var(--text);
}

[data-theme='dark'] {
  --bg: #071923;
  --surface: #0b2230;
  --surface-alt: rgba(255, 255, 255, 0.03);

  --text: #ffffff;
  --text-88: rgba(255, 255, 255, 0.88);
  --text-86: rgba(255, 255, 255, 0.86);
  --text-84: rgba(255, 255, 255, 0.84);
  --text-80: rgba(255, 255, 255, 0.8);
  --text-78: rgba(255, 255, 255, 0.78);
  --text-76: rgba(255, 255, 255, 0.76);
  --text-72: rgba(255, 255, 255, 0.72);

  --ink-03: rgba(255, 255, 255, 0.06);
  --ink-06: rgba(255, 255, 255, 0.09);
  --ink-18: rgba(0, 0, 0, 0.35);
  --ink-22: rgba(0, 0, 0, 0.42);
  --ink-25: rgba(255, 255, 255, 0.2);

  --muted: var(--text-80);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  --header-bg: rgba(7, 25, 35, 0.72);

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

/* Fixed mobile call/text bar */
.mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(132px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .mobile-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 14px;
    border-radius: 18px;
    background: var(--orange);
    color: var(--white);
    font-weight: 950;
    box-shadow: 0 18px 40px rgba(244, 81, 0, 0.22);
    border: 1px solid rgba(0, 0, 0, 0.08);
    user-select: none;
  }

  .mobile-btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .mobile-btn-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 18px;
    opacity: 0.95;
  }

  .mobile-btn-icon svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .mobile-bar-note {
    margin-top: 8px;
    text-align: center;
    font-weight: 850;
    font-size: 13px;
    color: var(--text-76);
  }
}

/* Desktop floating contact buttons */
.desktop-float {
  display: none;
}

@media (min-width: 769px) {
  .desktop-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 55;
    display: grid;
    gap: 10px;
  }

  .desktop-float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--orange);
    color: var(--white);
    font-weight: 950;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(244, 81, 0, 0.22);
    user-select: none;
  }

  .desktop-float-btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .desktop-float-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    opacity: 0.95;
  }

  .desktop-float-icon svg {
    width: 18px;
    height: 18px;
    display: block;
  }
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(244, 81, 0, 0.45);
  outline-offset: 3px;
  border-radius: 14px;
}

.container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

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

.brand-name {
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: 16px;
  line-height: 1.15;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.nav-link:hover {
  color: var(--text);
  border-color: var(--line);
  background: var(--ink-03);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown-toggle {
  background: transparent;
  cursor: pointer;
}

.nav-caret {
  font-size: 11px;
  margin-left: 6px;
  transform: translateY(-1px);
  display: inline-block;
  opacity: 0.9;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin-top: 8px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: none;
  z-index: 80;
}

/* Hover bridge to avoid closing gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

/* Desktop hover open */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
}

/* Mobile hamburger */
.hamburger {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.hamburger-lines {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}

.hamburger-lines::before,
.hamburger-lines::after,
.hamburger-lines {
  background: transparent;
}

.hamburger-lines::before,
.hamburger-lines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hamburger-lines::before {
  top: 0;
}

.hamburger-lines::after {
  bottom: 0;
}

.hamburger-lines span {
  display: none;
}

@media (min-width: 860px) {
  .hamburger {
    display: none;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width: 859px) {
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 92%);
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.35);
    padding: 14px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 10px;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-menu-title {
    font-weight: 950;
    letter-spacing: -0.02em;
    font-size: 18px;
  }

  .mobile-menu-close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 6px;
    overflow: auto;
    padding-bottom: 16px;
    align-content: start;
    grid-auto-rows: max-content;
  }

  .mobile-menu-link,
  .mobile-menu-summary,
  .mobile-menu-sublink {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    color: var(--text);
    font-weight: 900;
    font-size: 16px;
    line-height: 1.2;
  }

  .mobile-menu-summary {
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu-details[open] .mobile-menu-summary {
    border-color: rgba(244, 81, 0, 0.35);
    background: rgba(244, 81, 0, 0.06);
  }

  .mobile-menu-sub {
    display: grid;
    gap: 6px;
    margin-top: 6px;
    padding-left: 8px;
  }

  .mobile-menu-sublink {
    font-weight: 900;
  }
}

.nav-dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  color: var(--text);
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.nav-dropdown-item:hover {
  background: rgba(244, 81, 0, 0.08);
  border-color: rgba(244, 81, 0, 0.25);
  transform: translateY(-1px);
}

.nav-dropdown-item:active {
  transform: translateY(0);
}

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

/* Theme switch (Day / Night) */
.theme-switch {
  display: inline-flex;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.theme-option {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 12px;
  font-weight: 950;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.theme-option:hover {
  background: rgba(244, 81, 0, 0.06);
}

.theme-option[aria-pressed='true'] {
  background: var(--orange);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 850;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 30px rgba(244, 81, 0, 0.22);
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 40px rgba(244, 81, 0, 0.26);
}

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

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--ink-03);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 850;
}

/* Sections */
.section {
  padding: 34px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 81, 0, 0.08);
  color: var(--text);
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 10px;
}

.trust-line::before {
  content: '★★★★★';
  letter-spacing: 1px;
  color: var(--orange);
  font-size: 12px;
}

.section-sub {
  margin: 10px 0 0;
  color: var(--text-86);
  font-size: 17px;
  max-width: 70ch;
}

/* Hero */
.hero {
  padding-top: 26px;
}

.hero-grid {
  display: grid;
  gap: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 81, 0, 0.06);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

h1 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  color: var(--text);
}

.hero-text {
  margin: 10px 0 0;
  color: var(--text-88);
  font-size: 17px;
  max-width: 70ch;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-inline {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.contact-inline-value {
  color: var(--text);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(244, 81, 0, 0.45);
  text-underline-offset: 3px;
}

.seo-note {
  margin: 14px 0 0;
  color: var(--text-76);
  font-size: 14px;
}

.hero-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-card-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-checklist {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-checklist li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(244, 81, 0, 0.16);
  border: 1px solid rgba(244, 81, 0, 0.35);
  color: #fff;
  font-weight: 950;
  line-height: 1;
  margin-top: 2px;
}

/* Trust */
.trust-grid {
  display: grid;
  gap: 10px;
}

.trust-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 14px;
}

.trust-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.trust-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 8px 0 0;
  color: var(--text-84);
  font-size: 15px;
}

/* Portfolio */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.filter-btn:hover {
  background: rgba(244, 81, 0, 0.06);
  border-color: rgba(244, 81, 0, 0.35);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) and (max-width: 859px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: 0;
}

.portfolio-photo-count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  background: color-mix(in srgb, var(--navy) 88%, transparent);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.portfolio-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: var(--ink-06);
}

/* Lightbox gallery */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.lightbox-dialog {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
}

.lightbox-figure {
  width: min(980px, 100%);
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
  transform: scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  position: relative;
}

.lightbox.is-open .lightbox-figure {
  transform: scale(1);
  opacity: 1;
}

.lightbox-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(62vh, 720px);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.04);
}

.lightbox-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 8px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.lightbox-filter-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 81, 0, 0.28);
  background: rgba(244, 81, 0, 0.06);
  color: var(--text);
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-filter-btn:hover {
  border-color: rgba(244, 81, 0, 0.45);
  background: rgba(244, 81, 0, 0.1);
}

.lightbox-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.lightbox-caption {
  padding: 12px 14px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.lightbox-title {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.lightbox-city {
  color: var(--text-76);
  font-weight: 850;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  color: var(--text);
  font-weight: 950;
  font-size: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.lightbox-arrow-left {
  left: 14px;
}

.lightbox-arrow-right {
  right: 14px;
}

@media (max-width: 768px) {
  .lightbox-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-arrow {
    display: none;
  }
}

.portfolio-body {
  padding: 12px 14px 14px;
}

.portfolio-title {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.portfolio-meta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-80);
  font-size: 13px;
}

.portfolio-hover {
  display: none;
}

.portfolio-more {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-more-toggle {
  border-color: color-mix(in srgb, var(--navy) 55%, var(--line));
  color: var(--navy);
  font-weight: 850;
}

.portfolio-more-toggle:hover:not(:disabled) {
  border-color: var(--navy);
  background: rgba(244, 81, 0, 0.08);
}

.portfolio-more-toggle:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 81, 0, 0.08);
  border: 1px solid rgba(244, 81, 0, 0.25);
  color: var(--text);
  font-weight: 850;
}

.portfolio-empty {
  border: 1px dashed var(--ink-25);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

/* Areas */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 850;
  font-size: 14px;
  color: var(--text);
}

/* Process */
.steps {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: step;
}

.step {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 14px 54px 14px 14px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(244, 81, 0, 0.1);
  border: 1px solid rgba(244, 81, 0, 0.25);
  color: var(--text);
  font-weight: 950;
}

/* Reviews / Testimonials */
.reviews {
  margin-top: 14px;
  position: relative;
}

/* Before / After */
.ba-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.ba-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  --pos: 50%;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-img-after {
  clip-path: inset(0 0 0 var(--pos));
}

.ba-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ba-label {
  position: absolute;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 13px;
  color: var(--white);
  background: rgba(7, 25, 35, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.ba-label-before {
  left: 12px;
}

.ba-label-after {
  right: 12px;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(7, 25, 35, 0.25);
}

.ba-handle {
  position: absolute;
  left: var(--pos);
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(244, 81, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-top: 0;
  border-right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.ba-handle::before {
  left: 14px;
}

.ba-handle::after {
  right: 14px;
  transform: translateY(-50%) rotate(225deg);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

@media (min-width: 860px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.reviews-track::-webkit-scrollbar {
  height: 10px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: var(--ink-18);
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 10px;
  min-height: 210px;
}

.review-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.review-name {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.review-city {
  color: var(--text-78);
  font-weight: 850;
  font-size: 14px;
}

.review-stars {
  color: var(--orange);
  letter-spacing: 1px;
  font-weight: 950;
  font-size: 14px;
  white-space: nowrap;
}

.review-text {
  margin: 0;
  color: var(--text-88);
  font-size: 15px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.review-card[data-expanded='true'] .review-text {
  -webkit-line-clamp: unset;
}

.review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 2px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-76);
  font-weight: 900;
  font-size: 13px;
}

.review-more {
  appearance: none;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 950;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.review-more:hover {
  transform: translateY(-1px);
  background: rgba(244, 81, 0, 0.06);
}

.review-sourcebtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 81, 0, 0.22);
  background: rgba(244, 81, 0, 0.08);
  color: var(--text);
  font-weight: 950;
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

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

.review-sourcebtn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.review-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 81, 0, 0.08);
  border: 1px solid rgba(244, 81, 0, 0.22);
  font-weight: 900;
  font-size: 13px;
  color: var(--text);
}

.review-link {
  font-weight: 950;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(244, 81, 0, 0.55);
  text-underline-offset: 3px;
}

.reviews-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 950;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.reviews-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(244, 81, 0, 0.06);
}

.reviews-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.reviews-arrow-left {
  left: -10px;
}

.reviews-arrow-right {
  right: -10px;
}

.step-title {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.step-text {
  margin-top: 6px;
  color: var(--text-84);
  font-size: 15px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 14px 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

.faq-q::after {
  content: '＋';
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}

.faq-item[open] .faq-q::after {
  content: '—';
}

.faq-a {
  padding: 0 14px 14px;
  color: var(--text-84);
  font-size: 15px;
  line-height: 1.55;
}

/* Contact */
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 81, 0, 0.06), var(--surface-alt));
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-card h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  padding: 12px 12px;
  font-weight: 750;
  outline: none;
  font-family: inherit;
  line-height: 1.5;
}

.contact-textarea::placeholder {
  color: var(--text-72);
}

.contact-textarea:focus {
  border-color: rgba(244, 81, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(244, 81, 0, 0.12);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.form-status {
  font-weight: 850;
  font-size: 14px;
  color: var(--text-84);
}

.form-status.is-success {
  color: color-mix(in srgb, var(--orange) 55%, var(--text));
}

.form-status.is-error {
  color: #b42318;
}

.contact-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  padding: 12px 12px;
  font-weight: 800;
  outline: none;
}

.contact-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  padding: 12px 12px;
  font-weight: 850;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text) 50%),
    linear-gradient(135deg, var(--text) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-select:focus {
  border-color: rgba(244, 81, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(244, 81, 0, 0.12);
}

.contact-input::placeholder {
  color: var(--text-72);
}

.contact-input:focus {
  border-color: rgba(244, 81, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(244, 81, 0, 0.12);
}

.contact-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-value {
  font-weight: 950;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(244, 81, 0, 0.45);
  text-underline-offset: 3px;
}

.contact-proof {
  border-radius: 18px;
  border: 1px solid var(--ink-25);
  background: var(--navy);
  color: var(--white);
  padding: 16px;
}

.contact-proof-title {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.checklist {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.checklist li {
  margin: 6px 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 26px 0;
}

.footer-inner {
  display: grid;
  gap: 12px;
}

.footer-name {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.footer-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(244, 81, 0, 0.6);
  text-underline-offset: 4px;
}

/* Desktop enhancements */
@media (min-width: 860px) {
  .section {
    padding: 44px 0;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .nav {
    display: flex;
  }

  .header-actions {
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 18px;
  }

  h1 {
    font-size: 52px;
    margin: 12px 0 10px;
  }

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

  .hero-text {
    max-width: 560px;
    color: var(--text-88);
  }

  .seo-note {
    max-width: 560px;
    font-size: 13px;
    color: var(--text-72);
  }

  .hero-card {
    padding: 18px;
    border-color: var(--ink-25);
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--navy) 96%, #000),
      color-mix(in srgb, var(--navy) 90%, #000)
    );
    color: var(--white);
    box-shadow: 0 22px 60px var(--ink-22);
  }

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

  .hero-checklist li {
    color: rgba(255, 255, 255, 0.92);
  }

  /* Premium hover effects (desktop only) */
  @media (hover: hover) and (pointer: fine) {
    .portfolio-card {
      transform: translateY(0);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .portfolio-image {
      transition: transform 0.3s ease;
    }

    .portfolio-hover {
      display: grid;
      position: absolute;
      inset: 0;
      align-content: end;
      padding: 14px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .portfolio-hover-title {
      color: #fff;
      font-weight: 950;
      letter-spacing: -0.02em;
      margin: 0;
      font-size: 16px;
    }

    .portfolio-hover-city {
      margin-top: 6px;
      color: rgba(255, 255, 255, 0.86);
      font-weight: 850;
      font-size: 13px;
    }

    .portfolio-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 26px 70px var(--ink-18);
    }

    .portfolio-card:hover .portfolio-image {
      transform: scale(1.05);
    }

    .portfolio-card:hover .portfolio-hover {
      opacity: 1;
    }
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .steps {
    grid-template-columns: repeat(5, 1fr);
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 3);
    padding: 6px 0 12px;
  }

  .reviews-arrow {
    display: inline-grid;
    place-items: center;
  }

  .contact-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    padding: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

