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

:root {
  --dark: #10131a;
  --dark-soft: #1a1f2b;
  --accent: #2f6bff;
  --accent-dark: #1f4fd1;
  --accent-light: #e8f0ff;
  --text: #14161a;
  --muted: #667085;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --border: #e7e9ee;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px -20px rgba(16, 19, 26, 0.25);
  --shadow-sm: 0 10px 25px -12px rgba(16, 19, 26, 0.18);
  --container: 1180px;
  font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 12px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--bg-soft);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(47, 107, 255, 0.55);
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebd59;
}

.btn--block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.25s ease;
}

.header.is-scrolled .logo {
  color: var(--text);
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__mark svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.header.is-scrolled .nav a {
  color: var(--muted);
}

.nav a:hover {
  color: #fff;
}

.header.is-scrolled .nav a:hover {
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.header.is-scrolled .header__phone {
  color: var(--text);
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.25s ease;
}

.header.is-scrolled .nav-toggle span {
  background: var(--text);
}

.mobile-menu {
  display: none;
}

.header.is-open .mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 90;
  padding: 24px;
  text-align: center;
}

.mobile-menu a {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.mobile-menu a.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.mobile-menu__phone svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.55) 0%, rgba(10, 12, 18, 0.55) 40%, rgba(10, 12, 18, 0.92) 100%);
}

.hero__content {
  width: 100%;
  min-width: 0;
  padding-top: 200px;
  padding-bottom: 64px;
}

.hero__eyebrow {
  color: #cdd9ff;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 780px;
}

.hero__text {
  margin-top: 22px;
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero__address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero__address svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero__features {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.hero__feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__feature-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.hero__feature p {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card__body {
  padding: 22px 24px 26px;
}

.service-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card__body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ---------- Work + booking screen ---------- */

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split__panel {
  padding: 72px 56px;
}

.split__work {
  color: #fff;
}

.split__work .section-head h2,
.split__work .section-head p {
  color: #fff;
}

.split__work .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.gallery-grid__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  width: fit-content;
}

.before-after {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.before-after__label {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 18px 0;
}

.before-after__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  overflow: hidden;
  user-select: none;
}

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

.before-after__img--before {
  filter: grayscale(0.5) brightness(0.7) contrast(0.95);
}

.before-after__img--after {
  clip-path: inset(0 50% 0 0);
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.before-after__handle svg {
  width: 20px;
  height: 20px;
  color: var(--dark);
}

.before-after__tag {
  position: absolute;
  top: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  z-index: 2;
}

.before-after__tag--before {
  left: 14px;
}

.before-after__tag--after {
  right: 14px;
}

.before-after__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.split__booking {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.split__booking .section-head {
  max-width: none;
}

.split__booking .section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.booking-info {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-info__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
}

.booking-info__row svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-info__row a:hover {
  color: var(--accent);
}

.booking-map {
  margin-top: 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.booking-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 48px 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer__block h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer__block p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__phones a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.footer__phones svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.footer__bottom {
  padding-top: 20px;
  font-size: 0.82rem;
  text-align: center;
}

/* ---------- Responsive ---------- */

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

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

  .split__panel {
    padding: 56px 32px;
  }

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

@media (max-width: 760px) {
  .nav,
  .header__phone,
  .header__actions .btn--primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero__content {
    padding-top: 160px;
  }

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

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

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

  .split__panel {
    padding: 40px 22px;
  }
}

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

  .logo {
    gap: 8px;
    font-size: 1.05rem;
  }

  .logo__mark {
    width: 28px;
    height: 28px;
  }

  .logo__mark svg {
    width: 15px;
    height: 15px;
  }

  .hero__content {
    padding-top: 130px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
    margin-top: 14px;
  }

  .hero__text {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 26px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__features {
    margin-top: 40px;
    padding-top: 28px;
    gap: 18px;
  }

  .hero__feature-icon {
    width: 36px;
    height: 36px;
  }

  .hero__feature-icon svg {
    width: 17px;
    height: 17px;
  }

  .hero__feature p {
    font-size: 0.88rem;
  }

  .btn {
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .split__panel {
    padding: 28px 16px;
  }

  .before-after__label {
    font-size: 0.88rem;
    padding: 14px 14px 0;
  }

  .booking-info__row {
    font-size: 0.9rem;
  }

  .footer__phones {
    gap: 8px 20px;
  }
}
