:root {
  --ink: #0e0e0e;
  --coal: #141414;
  --paper: #e9e6e1;
  --paper-2: #ded9d2;
  --muted: #b9b4ad;
  --muted-2: #9e9992;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(14, 14, 14, 0.14);
  --radius: 14px;
  --layout: min(1080px, 96vw);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #1c1c1c;
  background: #0b0b0b;
  line-height: 1.6;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  letter-spacing: 0.015em;
  font-weight: 600;
}

p {
  margin: 0;
}

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

.lang-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(12, 12, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.lang:hover {
  color: rgba(255, 255, 255, 0.92);
}

.lang.is-active {
  color: rgba(255, 255, 255, 0.98);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.layout {
  width: var(--layout);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0 24px;
}

.col {
  border-radius: 0;
}

.col-left {
  background: var(--paper);
  color: #1a1a1a;
  overflow: hidden;
}

.col-right {
  background: var(--ink);
  color: #efefef;
  overflow: hidden;
}

.hero-left {
  position: relative;
  min-height: 680px;
  background: #000;
  color: #f2f2f2;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/Facetune_28-05-2025-00-43-02.TIF");
  background-size: cover;
  background-position: center 20%;
  filter: contrast(1.03) brightness(0.8) saturate(0.94);
  transform: scale(1.02);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.hero-inner {
  position: relative;
  padding: 92px 52px 52px;
}

.seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-name {
  margin-top: 12px;
}

.hero-sign {
  font-family: "Parisienne", cursive;
  font-size: 64px;
  display: inline-block;
  transform: translateY(14px);
  opacity: 0.92;
}

.hero-surname {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -10px;
}

.hero-role {
  margin: 10px 0 26px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(244, 244, 244, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.hero-facts strong {
  font-weight: 600;
}

.paper {
  padding: 54px 52px;
  border-top: 1px solid var(--line-dark);
}

.paper:first-of-type {
  border-top: 0;
}

.paper-inner {
  max-width: 520px;
}

.h2 {
  font-size: 42px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  color: #1b1b1b;
}

.h2-small {
  margin-top: 30px;
  font-size: 28px;
}

.h2-right {
  color: #f0f0f0;
}

.h2-small-right {
  margin-top: 12px;
  font-size: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.about-copy p {
  font-size: 14px;
  color: #2a2a2a;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-photos img {
  width: 100%;
  height: 170px;
  border-radius: 2px;
  filter: contrast(1.03) saturate(0.96);
}

.about-photos img:last-child {
  height: 230px;
}

.why-list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.why-num {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  opacity: 0.85;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  color: #2a2a2a;
  line-height: 1.45;
}

.small-note {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d6861;
}

.mini-portfolio {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 190px 190px;
  grid-template-areas:
    "a b"
    "a c";
  gap: 10px;
}

.mini-portfolio img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.96);
}

.mini-portfolio img:first-child {
  grid-area: a;
}

.mini-portfolio img:nth-child(2) {
  grid-area: b;
}

.mini-portfolio img:nth-child(3) {
  grid-area: c;
}

.right-block {
  padding: 54px 52px;
  border-top: 1px solid var(--line);
}

.right-block:first-child {
  border-top: 0;
}

.right-inner {
  max-width: 520px;
}

.service-stack {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.service-tile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
}

.polaroid {
  background: #f2f2f2;
  padding: 10px 10px 18px;
  box-shadow: var(--shadow);
}

.polaroid--carousel {
  padding-bottom: 22px;
}

.polaroid:not(.polaroid--carousel) img {
  width: 100%;
  height: 140px;
  filter: contrast(1.04) saturate(0.95);
}

.service-carousel {
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.service-carousel__viewport {
  position: relative;
  overflow: hidden;
  height: 140px;
}

.service-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.service-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.service-carousel__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  filter: contrast(1.04) saturate(0.95);
  transition: opacity 0.25s ease;
}

.service-carousel__img:hover {
  opacity: 0.94;
}

.service-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.55);
}

.service-carousel__arrow--prev {
  left: 4px;
}

.service-carousel__arrow--next {
  right: 4px;
}

.service-carousel__arrow-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: -2px;
}

.service-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: auto;
}

.service-carousel__dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-carousel__dot.is-active {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.15);
}

.service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-lightbox[hidden] {
  display: none !important;
}

.service-lightbox-open {
  overflow: hidden;
}

.service-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.service-lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(94vw, 1100px);
  max-height: 90vh;
  margin: 0 44px;
}

.service-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: contrast(1.03) saturate(0.97);
  cursor: default;
}

.service-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.service-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.55);
}

.service-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.service-lightbox__arrow:hover {
  background: rgba(0, 0, 0, 0.58);
}

.service-lightbox__arrow--prev {
  left: -44px;
}

.service-lightbox__arrow--next {
  right: -44px;
}

@media (max-width: 640px) {
  .service-lightbox__frame {
    margin: 0 16px;
  }

  .service-lightbox__arrow--prev {
    left: 4px;
  }

  .service-lightbox__arrow--next {
    right: 4px;
  }

  .service-lightbox__close {
    top: -44px;
    right: -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-carousel__track {
    transition: none;
  }

  .service-carousel__img {
    transition: none;
  }
}

.tile-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  margin: 2px 0 10px;
}

.h2-service {
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.tile-text {
  color: rgba(236, 236, 236, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.tile-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tile-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.64);
  transition: color 0.2s ease;
}

.tile-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.result-card {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  background: rgba(0, 0, 0, 0.25);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card img {
  width: 100%;
  height: min(54vh, 420px);
  object-fit: contain;
  filter: contrast(1.04) saturate(0.96);
}

.dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.dot.is-active {
  background: rgba(255, 255, 255, 0.7);
}

.right-sub {
  margin-top: 12px;
  color: rgba(236, 236, 236, 0.72);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.review-card {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 16px 16px;
}

.faq-list {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #f4f4f4;
}

.faq-item p {
  margin: 0;
  font-size: 13px;
  color: rgba(236, 236, 236, 0.76);
}

.seo-lead {
  margin-top: 10px;
  font-size: 14px;
  color: #2a2a2a;
}

.seo-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #2a2a2a;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.review-text {
  color: rgba(245, 245, 245, 0.86);
  font-size: 13px;
  line-height: 1.6;
}

.review-author {
  margin-top: 10px;
  color: rgba(236, 236, 236, 0.62);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tiny-link {
  margin-top: 14px;
  display: inline-block;
  color: rgba(240, 240, 240, 0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tiny-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.contact-buttons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-lines {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: rgba(236, 236, 236, 0.68);
  font-size: 13px;
}

.footer-note {
  margin-top: 18px;
  color: rgba(236, 236, 236, 0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 0.24s ease, background-color 0.24s ease,
    color 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

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

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-ghost {
  margin-top: 18px;
  border: 1px solid rgba(14, 14, 14, 0.24);
  color: rgba(14, 14, 14, 0.76);
}

.btn-ghost:hover {
  border-color: rgba(14, 14, 14, 0.4);
  color: rgba(14, 14, 14, 0.95);
}

.btn-solid {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-solid:hover {
  background: #ffffff;
}

.btn-mini {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.btn-mini:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0 18px;
  }

  .hero-inner,
  .paper,
  .right-block {
    padding-left: 24px;
    padding-right: 24px;
  }

  .paper-inner,
  .right-inner {
    max-width: 680px;
  }

  .hero-left {
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-top: 76px;
  }

  .hero-sign {
    font-size: 54px;
  }

  .hero-surname {
    font-size: 46px;
  }

  .h2 {
    font-size: 36px;
  }

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

  .about-photos {
    grid-template-columns: 1fr 1fr;
  }

  .mini-portfolio {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
    grid-template-areas:
      "a"
      "b"
      "c";
  }

  .service-tile {
    grid-template-columns: 1fr;
  }

  .polaroid:not(.polaroid--carousel) img {
    height: 180px;
  }

  .service-carousel__viewport,
  .service-carousel__img {
    height: 180px;
  }
}
