:root {
  --ink: #12212a;
  --paper: #f6f4ed;
  --white: #fffdf8;
  --blue: #74d3e6;
  --blue-deep: #179fbe;
  --orange: #ff9a3c;
  --muted: #65727a;
  --line: rgba(18, 33, 42, 0.17);
  --radius: 22px;
  --display: "Unbounded", sans-serif;
  --text: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--blue);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--orange);
}

.header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 0 13px 0 11px;
  border: 1px solid rgba(18, 33, 42, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.87);
  box-shadow: 0 10px 35px rgba(18, 33, 42, 0.08);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: -0.035em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
}

.brand b {
  color: var(--blue-deep);
}

.header nav {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(18, 33, 42, 0.08);
  border-radius: 13px;
  background: rgba(18, 33, 42, 0.035);
  font-size: 12px;
  font-weight: 700;
}

.header nav a {
  padding: 8px 11px;
  border-radius: 9px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header nav a:hover {
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(18, 33, 42, 0.08);
  transform: translateY(-1px);
}

.header-phone {
  justify-self: end;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(23, 159, 190, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-phone:hover {
  box-shadow: 0 10px 24px rgba(23, 159, 190, 0.3);
  transform: translateY(-2px);
}

.hero {
  min-height: 650px;
  height: min(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  padding: 96px 20px 20px;
}

.hero-copy,
.hero-photo {
  border-radius: 28px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 92px);
  background:
    radial-gradient(circle at 90% 16%, rgba(116, 211, 230, 0.32), transparent 24%),
    var(--white);
}

.label {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 154, 60, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 12px rgba(255, 154, 60, 0); }
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(46px, 5vw, 76px);
}

h1 em,
.section-head h2 em {
  color: var(--blue-deep);
  font-style: normal;
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  color: #42525b;
  font-size: clamp(16px, 1.45vw, 20px);
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(18, 33, 42, 0.16);
  transform: translateY(-3px);
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.plain-link {
  padding: 7px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo {
  position: relative;
  margin-left: 10px;
  overflow: hidden;
  background: #b9e6ed;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.06); }
}

.hero-sticker {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--orange);
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 0 18px 45px rgba(18, 33, 42, 0.2);
}

.hero-sticker span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-sticker strong {
  font-family: var(--display);
  font-size: 17px;
}

.section {
  padding: 96px max(24px, calc((100vw - 1160px) / 2));
}

.section-head,
.gallery-title,
.about-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-head .label,
.gallery-title .label,
.about-heading .label {
  align-self: flex-start;
  margin-top: 8px;
}

.section-head h2,
.gallery-title h2,
.about-heading h2,
.pricing-intro h2,
.contact-copy h2 {
  font-size: clamp(36px, 4.4vw, 58px);
}

.casting {
  background: var(--paper);
}

.casting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.5fr);
  gap: 26px;
}

.casting-main {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.lead {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.text-columns p {
  margin: 0;
  color: #4b5b63;
  font-size: 14px;
}

.casting-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
}

.casting-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.casting-card > div {
  position: absolute;
  inset: auto 14px 14px;
  padding: 16px;
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
}

.casting-card span,
.casting-card strong {
  display: block;
}

.casting-card span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casting-card strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 23px;
}

.cities {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px 30px;
  align-items: start;
  margin-top: 26px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.cities p {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 15px;
}

.cities > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cities > div span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.cities small {
  grid-column: 2;
  color: #aeb8bd;
  font-size: 13px;
  line-height: 1.55;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  background: var(--blue);
}

.pricing-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.pricing-intro > p:last-child {
  max-width: 370px;
  margin-top: 24px;
}

.price-list {
  border-top: 1px solid rgba(18, 33, 42, 0.32);
}

.price-list article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid rgba(18, 33, 42, 0.32);
}

.price-list article > span {
  color: rgba(18, 33, 42, 0.55);
  font-size: 10px;
  font-weight: 800;
}

.price-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 24px);
  letter-spacing: -0.035em;
}

.price-list p {
  max-width: 500px;
  margin: 5px 0 0;
  color: #34515b;
  font-size: 11px;
}

.price-list strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 31px);
  letter-spacing: -0.05em;
}

.important {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: -26px;
  padding: 20px;
  border: 1px solid rgba(18, 33, 42, 0.23);
  border-radius: 16px;
}

.important span {
  height: max-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.important p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.gallery-section {
  background: var(--white);
}

.gallery {
  column-count: 4;
  column-gap: 9px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 9px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), filter 420ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.015);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 3px;
}

.gallery-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.gallery-note a {
  color: var(--blue-deep);
  font-weight: 800;
}

.about {
  background: var(--paper);
}

.about-heading {
  align-items: flex-start;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}

.about-copy > p:not(.lead) {
  max-width: 740px;
  margin: 22px 0 0;
  color: #4e5e66;
  font-size: 14px;
}

.about-facts {
  display: grid;
  gap: 10px;
}

.about-facts article {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.about-facts strong {
  font-family: var(--display);
  font-size: 23px;
  color: var(--blue-deep);
}

.about-facts span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.people {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.people-title h3 {
  max-width: 390px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

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

.people li {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.people li b {
  font-size: 13px;
}

.people li span {
  color: var(--muted);
}

.geography {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 34px;
  align-items: center;
  margin-top: 52px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.geography img {
  width: 100%;
  max-height: 280px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center 45%;
}

.geography p {
  max-width: 700px;
  color: #c3cdd1;
  font-size: 13px;
}

.geography strong {
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.16), transparent 28%),
    var(--blue-deep);
  color: white;
}

.contact-logo {
  width: min(360px, 100%);
  justify-self: center;
  border-radius: 68px 68px 20px 68px;
  box-shadow: 0 28px 70px rgba(18, 33, 42, 0.24);
  transform: rotate(-3deg);
}

.contact-copy .label {
  color: rgba(255,255,255,.72);
}

.contact-copy h2 {
  max-width: 800px;
}

.contact-copy > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.contact-number {
  border-bottom: 1px solid white;
  font-size: 14px;
  font-weight: 800;
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 800;
}

.contact-actions .button {
  min-height: 58px;
  padding-inline: 23px;
  font-size: 15px;
}

footer {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px max(24px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: white;
  font-size: 10px;
  text-transform: uppercase;
}

footer strong {
  text-align: center;
}

footer a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  width: max-content;
  max-width: 94vw;
  height: auto;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lightbox::backdrop {
  background: rgba(246, 244, 237, 0.93);
  backdrop-filter: blur(12px);
}

.lightbox img {
  width: auto;
  max-width: 94vw;
  height: auto;
  max-height: 88vh;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 42px rgba(18, 33, 42, 0.14));
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 22px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(18, 33, 42, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(18, 33, 42, 0.1);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox[open] {
  animation: lightbox-in 480ms cubic-bezier(.18,.8,.2,1) both;
}

.lightbox[open]::backdrop {
  animation: backdrop-in 360ms ease both;
}

.lightbox.is-closing {
  pointer-events: none;
  animation: lightbox-out 540ms cubic-bezier(.4,0,.6,1) forwards;
}

.lightbox.is-closing::backdrop {
  animation: backdrop-out 500ms ease forwards;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(-1.2deg) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes lightbox-out {
  to {
    opacity: 0;
    transform: translateY(120px) rotate(5deg) scale(0.94);
  }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes backdrop-out {
  to { opacity: 0; }
}

@media (max-width: 940px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .header nav {
    display: none;
  }

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

  .hero-copy {
    padding: 48px 34px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 7px;
  }

  .gallery {
    column-count: 3;
  }

  .about-grid {
    gap: 35px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .header {
    top: 8px;
    width: calc(100% - 16px);
    height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 9px;
    border-radius: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand span {
    font-size: 10px;
    line-height: 1.25;
  }

  .header-phone {
    padding: 9px 10px;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 76px 8px 8px;
  }

  .hero-copy {
    min-height: 0;
    padding: 48px 22px 38px;
    border-radius: 22px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .section-head h2,
  .gallery-title h2,
  .about-heading h2,
  .pricing-intro h2,
  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.16;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-photo {
    height: min(98vw, 390px);
    margin: 8px 0 0;
    border-radius: 22px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
    min-height: 58px;
  }

  .plain-link {
    width: max-content;
    max-width: 100%;
    font-size: 13px;
  }

  .hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 32px;
    line-height: 1.4;
  }

  .hero-sticker {
    right: 14px;
    bottom: 14px;
    width: 96px;
  }

  .section {
    padding: 66px 16px;
  }

  .section-head,
  .gallery-title,
  .about-heading {
    display: block;
    margin-bottom: 34px;
  }

  .label {
    margin-bottom: 17px;
    font-size: 11px;
    line-height: 1.45;
  }

  .casting-layout,
  .pricing,
  .about-grid,
  .people,
  .geography,
  .contact {
    grid-template-columns: 1fr;
  }

  .casting-main {
    min-width: 0;
    padding: 25px 19px;
  }

  .lead {
    font-size: clamp(20px, 6.1vw, 26px);
    line-height: 1.38;
  }

  .text-columns {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
    padding-top: 24px;
  }

  .text-columns p,
  .about-copy > p:not(.lead),
  .geography p,
  .contact-copy > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .casting-card {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .cities {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 21px 18px;
  }

  .cities p {
    margin: 0;
  }

  .cities > div {
    gap: 7px;
  }

  .cities > div span {
    max-width: 100%;
    padding: 9px 11px;
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .cities small {
    grid-column: 1;
    font-size: 12px;
    line-height: 1.6;
  }

  .pricing {
    gap: 44px;
  }

  .pricing-intro {
    position: static;
  }

  .important {
    grid-column: 1;
    margin-top: 0;
  }

  .price-list article {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 21px 0;
  }

  .price-list article > div {
    min-width: 0;
  }

  .price-list h3 {
    font-size: clamp(17px, 5.3vw, 22px);
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .price-list p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.55;
  }

  .price-list strong {
    grid-column: 2;
    margin-top: 4px;
    font-size: clamp(20px, 6.2vw, 26px);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .gallery {
    column-count: 2;
    column-gap: 7px;
  }

  .gallery-item {
    margin-bottom: 7px;
  }

  .gallery-note {
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
  }

  .about-facts article {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 15px;
  }

  .about-facts strong {
    font-size: 19px;
  }

  .about-facts span {
    font-size: 10px;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .people {
    gap: 32px;
  }

  .people-title h3 {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 37px);
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .people li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 0;
    font-size: 13px;
  }

  .people li b {
    font-size: 14px;
  }

  .people li span {
    line-height: 1.5;
  }

  .geography {
    padding: 14px;
    gap: 20px;
  }

  .geography img {
    max-height: 250px;
  }

  .geography > div {
    padding: 6px 10px 14px;
  }

  .contact {
    gap: 46px;
  }

  .contact-logo {
    width: min(250px, 78vw);
    border-radius: 48px 48px 16px 48px;
  }

  .contact-copy {
    min-width: 0;
  }

  .contact-number {
    width: max-content;
    max-width: 100%;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .socials {
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 14px;
  }

  .lightbox {
    max-width: 96vw;
    max-height: 90svh;
  }

  .lightbox img {
    max-width: 96vw;
    max-height: 82svh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 20px;
    text-align: center;
    line-height: 1.5;
  }

  footer a {
    justify-self: center;
  }
}

@media (max-width: 380px) {
  .header {
    gap: 6px;
  }

  .brand span {
    display: none;
  }

  .header-phone {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(37px, 12.2vw, 48px);
  }

  .hero-copy {
    padding-inline: 19px;
  }

  .section {
    padding-inline: 14px;
  }

  .gallery {
    column-gap: 5px;
  }

  .gallery-item {
    margin-bottom: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
