:root {
  --panel: rgba(12, 33, 23, 0.72);
  --line: rgba(193, 255, 212, 0.12);
  --text: #f3f7f2;
  --muted: #b8c9bd;
  --green: #67d67d;
  --green-strong: #2fb654;
  --gold: #d7c28a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(76, 148, 83, 0.25), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(215, 194, 138, 0.18), transparent 20%),
    linear-gradient(160deg, #041008 0%, #08170f 45%, #0d1f16 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  opacity: 0.35;
}

.watermark {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 50;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 247, 242, 0.48);
  background: rgba(7, 20, 13, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.watermark:hover,
.watermark:focus-visible {
  color: rgba(243, 247, 242, 0.82);
  border-color: rgba(103, 214, 125, 0.22);
  transform: translateY(-1px);
}

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

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

.site-shell {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 0;
}

.topbar {
  position: fixed;
  top: 10px;
  left: 50%;
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  margin: 0;
  background: rgba(7, 20, 13, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  z-index: 200;
}

.topbar-inner {
  top: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-text strong,
.nav a,
.button,
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.nav a {
  font-size: 0.86rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  color: #081109;
  font-weight: 800;
  border: none;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  box-shadow: 0 16px 32px rgba(47, 182, 84, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.04);
}

.button-topbar {
  padding: 10px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(215, 194, 138, 0.98) 0%, rgba(103, 214, 125, 0.96) 100%);
  background-size: 200% 200%;
  color: #071109;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 32px rgba(103, 214, 125, 0.18);
  backdrop-filter: blur(12px);
  animation: topbarGradient 6s ease infinite;
}

.button-topbar:hover,
.button-topbar:focus-visible {
  background: linear-gradient(135deg, rgba(215, 194, 138, 0.98) 0%, rgba(103, 214, 125, 0.96) 100%);
  box-shadow: 0 18px 42px rgba(215, 194, 138, 0.22);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section {
  padding: 82px 0;
}

.hero {
  position: relative;
  width: 100vw;
  margin-top: -76px;
  margin-left: calc(50% - 50vw);
  min-height: calc(100vh + 76px);
  min-height: calc(100svh + 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(118px, 12vw, 150px) clamp(24px, 4vw, 54px) clamp(38px, 5vw, 72px);
  border: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  border-radius: 0 0 42px 42px;
  background: #061109;
  box-shadow: var(--shadow);
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68) saturate(0.95);
  opacity: 0.96;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 10, 6, 0.76) 0%, rgba(3, 10, 6, 0.56) 48%, rgba(3, 10, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 10, 6, 0.16) 0%, rgba(3, 10, 6, 0.74) 100%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px, 58px 58px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.hero-copy {
  max-width: 560px;
  text-align: left;
  margin-right: 0;
}

.hero-copy .lead {
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.58;
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(2.65rem, 5.2vw, 4.7rem);
  line-height: 0.94;
}

.hero-copy h2 {
  max-width: 520px;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  line-height: 1.22;
  margin-bottom: 14px;
}

.hero-copy .hero-actions {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  max-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 10, 6, 0.52) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 6px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.lead,
.section-heading p,
.service-card p,
.feature-list p,
.testimonial-card p,
.contact-panel p,
.mosaic-card p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-page .section-heading p,
.gallery-page .mosaic-card p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.hero-metrics article,
.service-card,
.testimonial-card,
.contact-card,
.mosaic-card,
.gallery-card {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 10px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(9, 27, 17, 0.7);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.8rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-centered {
  text-align: center;
}

.pricing-heading h2 {
  white-space: nowrap;
}

.why-heading {
  max-width: 920px;
}

.gallery-preview-heading h2 {
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.price-visual,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.price-visual {
  display: grid;
  min-height: 410px;
}

.price-visual img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.98);
}

.price-visual::after {
  content: "";
  grid-area: 1 / 1;
  background:
    linear-gradient(180deg, rgba(4, 13, 8, 0.08) 0%, rgba(4, 13, 8, 0.86) 100%),
    linear-gradient(90deg, rgba(4, 13, 8, 0.42), transparent);
}

.price-visual div {
  grid-area: 1 / 1;
  align-self: end;
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 32px);
}

.price-visual h3 {
  max-width: 520px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 198px;
  padding: 20px;
}

.price-card strong {
  display: block;
  margin-top: auto;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-family: "Montserrat", sans-serif;
  color: var(--green);
  white-space: nowrap;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 214, 125, 0.3);
  box-shadow: 0 24px 58px rgba(10, 34, 20, 0.36);
}

.price-label {
  display: inline-flex;
  justify-content: center;
  padding: 7px 12px;
  margin-bottom: 0;
  border-radius: 10px;
  background: rgba(103, 214, 125, 0.12);
  color: var(--green);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(103, 214, 125, 0.78));
}

.service-visual,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.service-visual {
  display: grid;
  min-height: 620px;
}

.service-visual img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.95);
}

.service-visual::after {
  content: "";
  grid-area: 1 / 1;
  background:
    linear-gradient(180deg, rgba(4, 13, 8, 0.06) 0%, rgba(4, 13, 8, 0.82) 100%),
    linear-gradient(90deg, rgba(4, 13, 8, 0.36), transparent);
}

.service-visual div {
  grid-area: 1 / 1;
  align-self: end;
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
}

.service-visual h3 {
  max-width: 540px;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  line-height: 1.06;
}

.service-visual p {
  max-width: 560px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
}

.service-tag {
  display: inline-flex;
  justify-content: center;
  padding: 7px 12px;
  margin-bottom: 0;
  border-radius: 10px;
  background: rgba(215, 194, 138, 0.13);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-number {
  display: inline-flex;
  justify-content: center;
  padding: 7px 12px;
  color: rgba(243, 247, 242, 0.84);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215, 194, 138, 0.78));
}

.service-card h3 {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.service-card p {
  margin: 0;
  line-height: 1.55;
}

.service-visual:hover,
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 214, 125, 0.3);
  box-shadow: 0 24px 58px rgba(10, 34, 20, 0.36);
}

.why-layout {
  display: grid;
  gap: 22px;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.why-row-reverse .why-copy {
  order: 2;
}

.why-row-reverse .why-photo-panel {
  order: 1;
}

.why-copy {
  align-self: stretch;
  align-content: center;
}

.why-photo-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.why-photo-panel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.why-photo-panel:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 22px;
  border-left: 3px solid var(--green);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(9, 27, 17, 0.62);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-list article:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

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

.gallery-card {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.gallery-card span {
  display: block;
  padding: 18px 20px 22px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.gallery-card::after,
.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(7, 20, 13, 0.7) 100%);
  opacity: 0.8;
  transition: opacity 260ms ease;
}

.gallery-card:hover,
.mosaic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.gallery-card:hover img,
.mosaic-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-card:hover::after,
.mosaic-card:hover::after {
  opacity: 0.45;
}

.gallery-cta {
  margin-top: 18px;
}

.testimonials {
  overflow: hidden;
}

.testimonial-heading h2 {
  white-space: nowrap;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 16px;
  align-items: stretch;
}

.testimonial-viewport {
  position: relative;
  min-height: 340px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  opacity: 0;
  transform: translateX(26px) scale(0.98);
  transition: opacity 320ms ease, transform 320ms ease;
  text-align: left;
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 194, 138, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(8, 25, 15, 0.7);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.testimonial-card p {
  max-width: 860px;
  font-size: clamp(1.05rem, 1.75vw, 1.42rem);
  color: var(--text);
  line-height: 1.62;
  margin-bottom: 24px;
}

.testimonial-stars {
  margin-bottom: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.testimonial-panel {
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
}

.testimonial-score {
  color: var(--green);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.testimonial-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(103, 214, 125, 0.12);
  border-color: rgba(103, 214, 125, 0.35);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.carousel-dots button {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.active {
  width: 42px;
  background: var(--green);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(103, 214, 125, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: 26px;
}

.contact-card a:first-child,
.contact-card a:nth-child(2) {
  font-size: 1.2rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 34px;
  color: var(--muted);
}

.gallery-page {
  min-height: 100vh;
  padding-top: 76px;
}

.gallery-hero {
  padding: 52px 0 24px;
}

.gallery-page .gallery-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  white-space: nowrap;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  padding-top: 8px;
}

.mosaic-card {
  display: grid;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
  cursor: zoom-in;
}

.mosaic-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.mosaic-card div {
  grid-area: 1 / 1;
  align-self: end;
  padding: 14px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.mosaic-card h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.15;
}

.mosaic-card p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 10, 6, 0.88);
  backdrop-filter: blur(18px);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 84vh;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.lightbox button {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 2;
}

.mosaic-large,
.mosaic-wide {
  min-height: 300px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 140ms;
}

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

@keyframes topbarGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1080px) {
  .hero,
  .contact-panel,
  .service-grid,
  .pricing-grid,
  .gallery-grid,
  .mosaic-grid,
  .why-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero {
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
  }

  .why-row {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .why-row-reverse .why-copy,
  .why-row-reverse .why-photo-panel {
    order: initial;
  }

  .hero {
    min-height: calc(100vh + 76px);
    min-height: calc(100svh + 76px);
    padding: clamp(112px, 14vw, 140px) 24px 40px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

  .hero-copy {
    max-width: 640px;
    text-align: center;
  }

  .hero-copy .hero-actions {
    justify-content: center;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    width: min(100%, 720px);
    min-height: 390px;
  }

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

  .service-visual {
    min-height: 360px;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic-large,
  .mosaic-wide {
    grid-column: span 2;
  }

  .mosaic-large {
    grid-row: span 1;
  }

  .mosaic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    position: fixed;
    top: 8px;
    flex-wrap: wrap;
    border-radius: 32px;
    padding: 12px;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .button-topbar {
    width: 100%;
    padding-block: 11px;
  }

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

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

  .price-visual {
    min-height: 320px;
  }

  .price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    gap: 10px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-visual {
    min-height: 320px;
    border-radius: 20px;
  }

  .service-card {
    gap: 10px;
    padding: 18px;
    min-height: auto;
  }

  .service-tag,
  .service-number {
    width: fit-content;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mosaic-card,
  .mosaic-large,
  .mosaic-wide {
    grid-column: span 1;
    min-height: 210px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-panel {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .testimonial-controls {
    justify-content: flex-end;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .hero {
    min-height: calc(100vh + 76px);
    min-height: calc(100svh + 76px);
    padding: 120px 16px 28px;
    border-radius: 0 0 28px 28px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h2 {
    margin-bottom: 12px;
  }

  .hero-copy .lead {
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .why-layout {
    gap: 20px;
  }

  .why-row {
    gap: 12px;
  }

  .why-photo-panel {
    border-radius: 20px;
  }

  .why-photo-panel img {
    height: 240px;
  }

  .gallery-page .gallery-hero h1 {
    white-space: normal;
  }

  .testimonial-heading h2 {
    white-space: normal;
  }

  .testimonial-card {
    border-radius: 20px;
  }

  .testimonial-panel {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 20px;
  }

  .gallery-hero {
    padding: 70px 0 12px;
  }

  .mosaic-card div {
    padding: 12px;
  }

  .mosaic-card h3 {
    font-size: 0.9rem;
  }

  .mosaic-card p {
    font-size: 0.72rem;
  }

  .lightbox {
    padding: 70px 14px 24px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 76vh;
    border-radius: 18px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .contact-panel,
  .testimonial-card,
  .service-card,
  .price-card {
    padding: 20px;
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-visual {
    min-height: 300px;
    border-radius: 20px;
  }

  .price-card strong {
    font-size: 1.55rem;
  }

  .price-label {
    width: fit-content;
  }

  .testimonial-viewport {
    min-height: 380px;
  }

  .contact-card a:first-child,
  .contact-card a:nth-child(2) {
    font-size: 1rem;
  }

  .watermark {
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(1180px, calc(100vw - 20px));
  }

  .topbar {
    padding: 10px;
    gap: 8px;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(2.3rem, 9vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .mosaic-grid {
    gap: 8px;
  }

  .mosaic-card,
  .mosaic-large,
  .mosaic-wide {
    min-height: 178px;
    border-radius: 14px;
  }

  .mosaic-card div {
    padding: 10px;
  }

  .mosaic-card h3 {
    font-size: 0.82rem;
  }

  .mosaic-card p {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .service-card:hover,
  .service-visual:hover,
  .price-card:hover,
  .price-visual:hover,
  .gallery-card:hover,
  .mosaic-card:hover,
  .feature-list article:hover,
  .why-photo-panel:hover img {
    transform: none;
    box-shadow: var(--shadow);
    filter: none;
  }

  .button-topbar {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
