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

:root {
  --navy:       #1a2140;
  --navy-deep:  #0e1328;
  --orange:     #e8521a;
  --orange-dk:  #c4431a;
  --white:      #ffffff;
  --off-white:  #f4f4f0;
  --gray-light: #f0f1f5;
  --gray:       #8a8f9e;
  --text:       #111827;
  --text-light: #4b5563;
  --border:     #e2e4ec;
  --rule:       rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.site-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  padding: 4px 8px;
  background: var(--navy-deep);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange);
  transition: color 0.15s;
}
.header-phone:hover { color: #ff7a4d; }

.main-nav {
  display: flex;
  gap: 4px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,19,40,0.2) 0%,
    rgba(14,19,40,0.55) 50%,
    rgba(14,19,40,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  padding-top: 120px;
  width: 100%;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 56px;
}

/* ── THREE CTAs ── */
.cta-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.cta-block {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  background: rgba(255,255,255,0.03);
}
.cta-block:last-child { border-right: none; }
.cta-block:hover { background: rgba(232,82,26,0.12); }
.cta-block:hover .cta-word { color: var(--orange); }
.cta-block:hover .cta-arrow { opacity: 1; transform: translateX(4px); }

.cta-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.cta-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-arrow {
  width: 20px;
  height: 20px;
  color: var(--orange);
  position: absolute;
  bottom: 32px;
  right: 28px;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

/* ── SERVICES ── */
.services {
  padding: 112px 0;
  background: var(--white);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label.light { color: var(--orange); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 64px;
}
.section-title.light { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-item:hover { background: var(--gray-light); }
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4),
.service-item:nth-child(5),
.service-item:nth-child(6) { border-bottom: none; }

.service-icon-wrap {
  width: 44px;
  height: 44px;
  color: var(--navy);
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 100%; height: 100%; }

.service-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── ABOUT ── */
.about {
  padding: 112px 0;
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-col {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(20%);
}

.about-since {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 8px 32px rgba(232,82,26,0.35);
}
.since-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.since-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.about-text-col .section-title { margin-bottom: 24px; }

.about-text-col p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); }

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 8px 16px;
  transition: all 0.15s;
}
.review-link:hover { border-color: var(--orange); color: var(--orange); }

/* ── BRANDS ── */
.brands {
  padding: 80px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--rule);
}

.brands .section-label { color: rgba(255,255,255,0.4); margin-bottom: 40px; }

.brands-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
}
.brand-item img {
  height: 140px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  padding: 12px 16px;
  filter: brightness(1.1);
}
.brand-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.brand-divider { width: 1px; height: 120px; background: var(--rule); }

/* ── CONTACT ── */
.contact {
  padding: 112px 0;
  background: var(--navy);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.contact-left .section-title { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
  transition: opacity 0.15s;
}
.contact-detail:hover { opacity: 0.8; }

.detail-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 3px;
}

.contact-detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail:not([href]) span {
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
a.contact-detail span { font-size: 1.05rem; font-weight: 600; color: var(--white); }

/* FORM */
.contact-right {
  background: var(--white);
  border-radius: 6px;
  padding: 48px 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,33,64,0.08);
}
.form-group textarea { resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a2140' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; transform: none; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}
.success-svg {
  width: 56px;
  height: 56px;
  color: #22c55e;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.5); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 64px;
  padding: 72px 32px 56px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 6px;
  padding: 4px 8px;
  background: var(--navy-deep);
}
.footer-left p { font-size: 0.85rem; line-height: 1.6; }

.footer-mid,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-mid strong,
.footer-right strong {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-mid a,
.footer-right a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-mid a:hover,
.footer-right a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-social a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 5px 12px;
}
.footer-social a:hover { border-color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 20px 32px;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(5),
  .service-item:nth-child(6) { border-bottom: none; }
  .service-item:nth-child(3),
  .service-item:nth-child(4) { border-bottom: 1px solid var(--border); }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-since { right: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .main-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-deep); padding: 12px 20px 20px; border-bottom: 1px solid var(--rule); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--rule); }
  .main-nav a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
  .header-phone { font-size: 1rem; }

  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

  .cta-trio { grid-template-columns: 1fr; }
  .cta-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .cta-block:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .service-item:last-child { border-bottom: none; }

  .about-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }

  .brands-row { flex-direction: column; }
  .brand-divider { width: 60%; height: 1px; }

  .contact-right { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }

  .section-title { font-size: clamp(2.2rem, 8vw, 3rem); }
}
