@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --gold: #c09a52;
  --gold-dark: #9a7739;
  --navy: #0d1f35;
  --navy-soft: #18283f;
  --ink: #162030;
  --muted: #64748b;
  --muted-soft: #94a3b8;
  --white: #ffffff;
  --cream: #f6f2eb;
  --sand: #ede5d8;
  --border: #e6dfd3;
  --surface: #fffdf9;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  transition: top 0.15s ease;
}

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

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

.section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-intro h2,
.page-hero h1,
.request-form-card h2,
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.section-intro h2 {
  font-size: clamp(38px, 4vw, 58px);
  color: var(--navy);
}

.section-intro p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.btn-primary,
.btn-secondary,
.btn-gold,
.btn-outline,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary,
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(192, 154, 82, 0.24);
}

.btn-primary:hover,
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(192, 154, 82, 0.28);
}

.btn-secondary,
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline-gold {
  border: 1px solid rgba(192, 154, 82, 0.45);
  color: var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(192, 154, 82, 0.12);
  transform: translateY(-2px);
}

.flash-toast {
  position: fixed;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  max-width: min(92vw, 520px);
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  animation: toastIn 0.2s ease;
}

.flash-toast.ok {
  background: rgba(236, 253, 243, 0.96);
  color: #166534;
  border-color: #bbf7d0;
}

.flash-toast.err {
  background: rgba(254, 242, 242, 0.96);
  color: #b91c1c;
  border-color: #fecaca;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, -8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  transition: background 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.navbar.solid {
  background: rgba(13, 31, 53, 0.94);
  box-shadow: 0 8px 30px rgba(6, 14, 26, 0.14);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  padding: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 0.95;
  color: var(--white);
}

.brand-tag {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a,
.nav-phone {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.nav-link--active,
.nav-phone:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(192, 154, 82, 0.24);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-main {
  position: relative;
  min-height: 100svh;
  background: #081220;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.hero-bg-container,
.bg-premium,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.bg-premium {
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.06);
  transform: scale(1.04);
  animation: heroScale 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.1) 0%, rgba(6, 14, 26, 0.72) 65%, rgba(6, 14, 26, 0.94) 100%),
    radial-gradient(circle at top left, rgba(192, 154, 82, 0.24), transparent 36%);
}

@keyframes heroScale {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.main-logo-wrapper {
  max-width: 210px;
}

.hero-logo {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.hero-text-area {
  max-width: 780px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-subtitle::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-slogan {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  color: rgba(255, 255, 255, 0.86);
}

.hero-divider {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}

.hero-location {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.hero-proof {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-proof-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}

.hero-proof-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.hero-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 600;
}

.whatsapp-pro {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-pro svg {
  width: 30px;
  fill: var(--white);
}

.whatsapp-pro:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 38px rgba(15, 23, 42, 0.32);
}

.why-choose-us-pro {
  background: linear-gradient(180deg, #17212e 0%, #111827 100%);
  color: var(--white);
  padding: clamp(72px, 8vw, 100px) 0;
}

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

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.4vw, 58px);
  text-align: center;
  margin-bottom: 44px;
}

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

.why-item {
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why-item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.why-item-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.why-closing {
  margin-top: 28px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--gold);
}

.service-preview {
  background: var(--cream);
}

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

.service-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-preview-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(192, 154, 82, 0.12);
  color: var(--gold-dark);
  font-size: 20px;
}

.service-preview-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-preview-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recent-work-pro {
  background: #101823;
  color: var(--white);
  padding: clamp(68px, 8vw, 90px) 0;
}

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

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.work-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 56px);
}

.location-tag {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.work-card {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1320;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-info-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 22px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 14, 26, 0.12) 20%, rgba(6, 14, 26, 0.88) 100%);
}

.work-info-overlay h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.work-info-overlay p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.work-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-band {
  padding: 34px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 10px;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  padding: 154px 0 74px;
  background:
    linear-gradient(135deg, rgba(13, 31, 53, 0.96), rgba(13, 31, 53, 0.88)),
    radial-gradient(circle at top left, rgba(192, 154, 82, 0.24), transparent 32%);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(46px, 4.8vw, 68px);
}

.page-hero p {
  margin-top: 14px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
}

.portfolio-page {
  background: var(--cream);
  padding: 52px 0 88px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

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

.port-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.port-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.port-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.port-card:hover .port-card-img img {
  transform: scale(1.04);
}

.port-no-img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ece8e0, #ddd4c7);
  color: #8d8d8d;
  font-size: 14px;
  font-weight: 600;
}

.ba-btn {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(6, 14, 26, 0.66);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.port-card-body {
  padding: 20px;
}

.port-cat {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.port-card-body h3 {
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
}

.port-card-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.no-projects {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.no-projects p {
  color: var(--muted);
  font-size: 15px;
}

.no-projects a {
  color: var(--gold-dark);
  font-weight: 700;
}

.ba-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 24px;
  background: rgba(6, 14, 26, 0.86);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
}

.ba-modal.active {
  display: flex;
}

.ba-box {
  width: min(100%, 820px);
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.ba-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f4f5;
  color: #475569;
  cursor: pointer;
  display: grid;
  place-items: center;
}

#ba-title {
  margin-bottom: 18px;
  padding-right: 46px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
}

.ba-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #e5e7eb;
}

.ba-stage > img,
.ba-before-clip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--white);
}

.ba-pin {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-pin-line {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--white);
}

.ba-pin-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  color: #475569;
}

.ba-tag {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ba-tag--before {
  left: 12px;
  background: rgba(6, 14, 26, 0.66);
  color: var(--white);
}

.ba-tag--after {
  right: 12px;
  background: var(--gold);
  color: var(--white);
}

.ba-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.ba-slider-row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ba-slider-row .gold {
  color: var(--gold-dark);
}

.ba-slider-row input {
  flex: 1;
  accent-color: var(--gold);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

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

.info-card,
.request-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.page-copy h2,
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1;
}

.page-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.page-copy p,
.info-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.list-check {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.list-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.list-check i {
  color: var(--gold-dark);
  margin-top: 4px;
}

.service-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-label {
  display: block;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.contact-value a:hover {
  color: var(--gold-dark);
}

.request-form-card h2 {
  font-size: clamp(38px, 4vw, 54px);
  color: var(--navy);
}

.request-form-card > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #d6dbe3;
  border-radius: 18px;
  background: #fafaf9;
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(192, 154, 82, 0.16);
}

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

.form-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  background: #07101d;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  padding: 62px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand-col p {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.9;
}

.footer-col h5 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .service-preview-grid,
  .work-slider,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav-phone,
  .nav-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 88px 20px auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(13, 31, 53, 0.98);
    box-shadow: 0 24px 40px rgba(2, 6, 23, 0.28);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-proof-grid,
  .why-grid,
  .service-preview-grid,
  .work-slider {
    grid-template-columns: 1fr;
  }

  .request-form .form-row,
  .cta-band .container,
  .footer-bottom .container {
    grid-template-columns: 1fr;
  }

  .cta-band .container,
  .footer-bottom .container {
    display: grid;
  }
}

@media (max-width: 680px) {
  .nav-inner,
  .container,
  .hero-content,
  .container-pro-text,
  .container-full {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-name {
    font-size: 30px;
  }

  .brand-tag {
    letter-spacing: 0.14em;
  }

  .hero-main {
    padding-top: 128px;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 70px);
  }

  .hero-btns,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-chip-list {
    gap: 8px;
  }

  .page-hero {
    padding: 136px 0 60px;
  }

  .portfolio-page,
  .section,
  .recent-work-pro {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .request-form-card,
  .info-card,
  .port-card,
  .service-preview-card {
    border-radius: 22px;
  }

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

  .form-group,
  .request-form .form-row {
    grid-template-columns: 1fr;
  }

  .request-form .form-row {
    display: grid;
  }

  .ba-box {
    padding: 22px;
  }

  #ba-title {
    font-size: 28px;
  }
}

@media (max-width: 540px) {
  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 27px;
  }

  .hero-proof {
    padding: 18px;
  }

  .hero-proof-value {
    font-size: 36px;
  }

  .whatsapp-pro {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-pro svg {
    width: 26px;
  }
}
