@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");
:root {
  --bg: #0f141b;
  --bg-soft: #161d26;
  --panel: #1c2531;
  --panel-2: #202d3b;
  --text: #f5f7fb;
  --muted: #c8d1dd;
  --line: rgba(255,255,255,.12);
  --blue: #1b76bd;
  --blue-soft: #5d92d6;
  --grey: #8d939b;
  --shadow: 0 14px 38px rgba(0,0,0,.28);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0c1218 0%, #111923 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 15, 21, .82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 62px; height: 62px; object-fit: contain;
  border-radius: 14px; background: #d9dde1; padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.brand-text { min-width: 0; }
.brand-text strong { display: block; font-size: 1.05rem; letter-spacing: .03em; }
.brand-text span { display: block; color: var(--muted); font-size: .9rem; }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: transparent; color: var(--text);
  padding: 10px 12px; border-radius: 12px; font-size: 1rem;
}
.nav-links { display: flex; gap: 12px; align-items: center; }
.nav-links a {
  padding: 11px 14px; border-radius: 12px; color: var(--muted); font-weight: 600;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.06); color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  color: white !important;
}
.hero {
  padding: 42px 0 28px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: clamp(28px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 460px;
  background:
   radial-gradient(circle at top right, rgba(27,118,189,.25), transparent 35%),
   linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  color: #dfe8f7; background: rgba(93,146,214,.14); border: 1px solid rgba(93,146,214,.28);
  border-radius: 999px; padding: 8px 14px; font-size: .92rem; font-weight: 700; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: .98; margin: 0 0 18px;
}
.hero p {
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.65; color: var(--muted); max-width: 56ch; margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 18px; border-radius: 14px; font-weight: 800; border: 1px solid var(--line);
}
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-soft)); color: #fff; border: 0; }
.btn-secondary { background: rgba(255,255,255,.03); }
.hero-media {
  overflow: hidden; min-height: 460px; position: relative;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(9,14,20,.78); border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.hero-badge strong { font-size: 1.02rem; }
.hero-badge span { color: var(--muted); font-size: .94rem; }
.stars { color: #fff; letter-spacing: .16em; font-weight: 900; }
.section { padding: 14px 0 42px; }
.section-title { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 2.65rem); }
.section-lead { margin: 0 0 28px; color: var(--muted); line-height: 1.7; max-width: 62ch; }
.grid-3, .grid-2 {
  display: grid; gap: 14px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card, .service-card, .gallery-card, .contact-card {
  padding: 22px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
}
.service-card h3, .info-card h3, .contact-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.service-card p, .info-card p, .contact-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.service-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 14px;
}
.service-list li {
  padding: 16px 18px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,.025); display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: #eef4ff;
}
.service-list li::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft)); flex: none;
  box-shadow: 0 0 0 5px rgba(27,118,189,.12);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;
}
.gallery-card {
  padding: 0; overflow: hidden; position: relative;
}
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-card.tall img { aspect-ratio: 4/5.3; }
.gallery-card .caption {
  padding: 14px 16px; color: var(--muted); font-weight: 600;
}
.contact-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 14px;
}
.contact-list { display: grid; gap: 12px; margin-top: 18px; }
.contact-pill {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-radius: 15px; background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.contact-pill strong { display: block; }
.contact-pill span { display: block; color: var(--muted); font-size: .95rem; }
form { display: grid; gap: 14px; }
label { font-weight: 700; font-size: .98rem; }
input, textarea {
  width: 100%; margin-top: 8px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03); color: var(--text); padding: 14px 15px; font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
button[type="submit"] { cursor: pointer; }
.footer {
  padding: 26px 0 96px; color: var(--muted); border-top: 1px solid rgba(255,255,255,.08);
}
.footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.floating-actions {
  position: fixed; left: 16px; right: 16px; bottom: max(12px, env(safe-area-inset-bottom)); z-index: 60;
}
.floating-actions a {
  width: 100%; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft)); border: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.floating-actions a.primary { background: linear-gradient(135deg, var(--blue), var(--blue-soft)); border: 0; }
.page-hero {
  padding: 28px 0 8px;
}
.page-hero-inner { padding: 22px; }
.page-hero p { color: var(--muted); max-width: 58ch; line-height: 1.7; }
.small-note { color: var(--muted); font-size: .92rem; }
@media (max-width: 980px) {
  .hero-grid, .contact-grid, .grid-3, .grid-2, .gallery-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-media { min-height: unset; }
  .hero-media img { min-height: 420px; }
}
@media (max-width: 760px) {
  .nav { min-height: 74px; }
  .brand img { width: 54px; height: 54px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 12px);
    flex-direction: column; align-items: stretch; background: rgba(10,15,21,.97);
    border: 1px solid var(--line); border-radius: 16px; padding: 10px; display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.show { display: flex; }
  .hero { padding-top: 18px; }
  .hero-grid { gap: 16px; }
  .hero-copy {
    padding: 20px 18px;
    min-height: auto;
  }
  .kicker {
    font-size: .78rem;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .hero p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .hero-media {
    min-height: 250px;
  }
  .hero-media img {
    min-height: 250px;
    max-height: 250px;
  }
  .hero-badge {
    position: static;
    margin: 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .hero-badge strong { font-size: .95rem; }
  .hero-badge span { font-size: .86rem; }
  .page-hero { padding: 20px 0 6px; }
  .page-hero-inner { padding: 18px; }
  .page-hero .section-title { margin-bottom: 8px; font-size: 2rem; }
  .page-hero p { margin: 0; font-size: 1rem; line-height: 1.55; }
  .service-card, .info-card, .gallery-card, .contact-card { padding: 18px; border-radius: 16px; }
  .service-list { gap: 10px; }
  .service-list li { padding: 14px 16px; }
  .gallery-grid, .contact-grid, .grid-3, .grid-2 { gap: 12px; }
  .floating-actions { left: 16px; right: 16px; bottom: max(10px, env(safe-area-inset-bottom)); }
  .floating-actions a {
    min-width: 0;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 14px;
  }
  .footer { padding-bottom: 94px; }
}


.before-after-card { padding: 0; }
.before-after {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: inherit;
  --split: 84%;
}
.before-after > img,
.before-after .after-wrap,
.before-after .after-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after .after-wrap {
  clip-path: inset(0 0 0 var(--split));
}
.before-after .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 0;
  pointer-events: none;
}
.before-after .ba-handle::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 2px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.before-after .ba-handle span {
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(9,14,20,.82);
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
}
.before-after .ba-handle span::before,
.before-after .ba-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.before-after .ba-handle span::before {
  left: 11px;
  transform: translateY(-50%) rotate(-135deg);
}
.before-after .ba-handle span::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.ba-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: rgba(9,14,20,.7);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.ba-before { left: 18px; }
.ba-after { right: 18px; }
.gallery-grid-large { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid-large .gallery-card img { aspect-ratio: 4/3; }
@media (max-width: 980px) {
  .before-after { min-height: 420px; }
}
@media (max-width: 760px) {
  .before-after { min-height: 250px; }
  .ba-label { top: 12px; padding: 7px 10px; font-size: .78rem; }
  .ba-before { left: 12px; }
  .ba-after { right: 12px; }
  .before-after .ba-handle span { width: 42px; height: 42px; }
  .gallery-grid-large { grid-template-columns: 1fr; }
}


h1, h2, h3, .brand-text strong, .btn, .menu-toggle { font-family: Sora, Manrope, sans-serif; }
.hero-showcase { padding: 24px 0 18px; }
.hero-stack { display: grid; gap: 18px; }
.hero-slider-shell { overflow: hidden; }
.hero-panel {
  padding: 16px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)), radial-gradient(circle at top right, rgba(27,118,189,.18), transparent 36%);
}
.hero-panel h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.02;
  margin: 0 0 14px;
}
.hero-panel p { color: var(--muted); font-size: 1.06rem; line-height: 1.7; margin: 0; max-width: 58ch; }
.hero-panel-copy .hero-actions { margin-top: 22px; }
.hero-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-feature {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}
.mini-feature strong { display: block; margin-bottom: 8px; font-size: .98rem; }
.mini-feature span { color: var(--muted); line-height: 1.55; font-size: .95rem; display: block; }
.section-chip {
  display: inline-flex; padding: 8px 14px; border-radius: 999px; font-weight: 800;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); color: #eef4ff; margin-bottom: 14px;
}
.compact-top { padding-top: 6px; }
.split-intro {
  padding: 16px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}
.split-points { display: grid; gap: 12px; align-content: center; }
.point-row {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
}
.point-row strong { display: block; margin-bottom: 6px; }
.point-row span { color: var(--muted); line-height: 1.55; }
.before-after-card { padding: 0; }
.before-after {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  --split: 78%;
  background: #0b1117;
}
.before-after > img,
.before-after .after-wrap,
.before-after .after-wrap img { object-fit: cover; }
.hero-media, .hero-media img { min-height: 0 !important; max-height: none !important; }
.hero-badge { display: none; }
.gallery-grid { align-items: stretch; }
.gallery-card img { aspect-ratio: 4 / 3; }
.album-section { padding-top: 8px; }
.album-heading { margin-bottom: 16px; }
.album-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 28vw);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.album-row::-webkit-scrollbar { height: 10px; }
.album-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
.album-card { scroll-snap-align: start; }
.album-card img { aspect-ratio: 4 / 4.8; }
@media (max-width: 980px) {
  .hero-panel, .split-intro { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-showcase { padding-top: 14px; }
  .hero-stack { gap: 14px; }
  .hero-panel { padding: 18px; gap: 14px; }
  .hero-panel h1 { font-size: 2.15rem; }
  .hero-panel p { font-size: 1rem; }
  .hero-feature-grid { grid-template-columns: 1fr; }
  .split-intro { padding: 18px; gap: 16px; }
  .before-after { aspect-ratio: 4 / 5; }
  .album-row { grid-auto-columns: 78vw; gap: 12px; }
  .album-card img { aspect-ratio: 4 / 5.2; }
}


.slider-inbetween { padding: 2px 0 12px; }
.photo-intro-card { padding: 18px 22px; }
.photo-intro-card p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 64ch; }
.album-card { padding: 18px; }
.album-card .caption { display: none; }
.album-row { padding-bottom: 18px; }
.album-section { padding-top: 2px; }
@media (max-width: 760px) {
  .slider-inbetween { padding: 0 0 10px; }
  .photo-intro-card { padding: 16px 18px; }
  .album-card { padding: 14px; }
}


.album-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}
.album-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.album-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
}
@media (max-width: 760px) {
  .album-header {
    flex-direction: column;
    align-items: start;
    margin-bottom: 12px;
  }
}


.album-section { padding-top: 4px; }
.album-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.album-header h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 4vw, 2.65rem); }
.album-header p { margin: 0; color: var(--muted); line-height: 1.65; max-width: 56ch; }
.album-view-all { white-space: nowrap; }
.album-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}
.album-row::-webkit-scrollbar { height: 8px; }
.album-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
.album-card { min-width: 0; scroll-snap-align: start; }
.album-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.album-modal.show { display: block; }
.album-modal-backdrop {
  position: absolute; inset: 0; background: rgba(6,10,14,.82); backdrop-filter: blur(8px);
}
.album-modal-panel {
  position: absolute; left: 16px; right: 16px; top: 16px; bottom: 16px;
  padding: 18px; overflow: hidden; display: flex; flex-direction: column;
}
.album-modal-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px;
}
.album-modal-header h3 { margin: 0; font-size: 1.35rem; }
.album-modal-close {
  border: 1px solid var(--line); background: transparent; color: var(--text);
  border-radius: 12px; padding: 10px 14px; font: inherit; font-weight: 700; cursor: pointer;
}
.album-modal-grid {
  overflow: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding-right: 4px;
}
.album-modal-grid img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
@media (max-width: 760px) {
  .album-header { align-items: stretch; flex-direction: column; }
  .album-view-all { width: 100%; }
  .album-row { grid-auto-columns: 86%; gap: 12px; }
  .album-modal-panel { left: 10px; right: 10px; top: 10px; bottom: 10px; padding: 14px; }
  .album-modal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .album-modal-grid img { border-radius: 12px; }
}


.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #dfe8f7;
  background: rgba(93,146,214,.14);
  border: 1px solid rgba(93,146,214,.28);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-preview, .about-card {
  padding: 24px;
}
.about-preview {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.about-preview-copy p, .about-copy-block p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}
.about-preview-copy .btn {
  margin-top: 6px;
}
.about-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-actions {
  margin-top: 8px;
}
@media (max-width: 980px) {
  .about-preview, .about-copy-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .about-preview, .about-card {
    padding: 18px;
  }
  .section-chip {
    font-size: .8rem;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
}
