:root {
  --bg: #0a0a0c;
  --bg-soft: #141419;
  --panel: rgba(255, 255, 255, 0.06);
  --text: #f5f1e8;
  --muted: #b9b2a6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff6a1a;
  --accent-soft: #ffb36a;
  --glow: rgba(255, 106, 26, 0.35);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --max-width: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 26, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 200, 120, 0.1), transparent 18%),
    linear-gradient(160deg, #060607 0%, #111114 48%, #050506 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 90%);
}

.page-shell {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 44px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.header-cta,
.button,
.contact-box a {
  color: var(--text);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.86rem;
  color: var(--muted);
}

.brand-copy strong,
h1,
h2,
h3,
.metric,
.stats strong,
.visual-panel-main strong,
.timeline-item strong {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cta:hover,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero,
.stats,
.cards-grid,
.portfolio-grid,
.timeline,
.split-layout,
.booking-layout,
.faq-grid {
  display: grid;
}

.hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px 0 18px;
}

.hero-copy,
.hero-visual,
.info-card,
.portfolio-card,
.timeline-item,
.quote-card,
.feature-list article,
.booking-copy,
.booking-form,
.faq-card,
.stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 36px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
}

.eyebrow,
.panel-label,
.card-tag,
.portfolio-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.03em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.info-card p,
.portfolio-card p,
.timeline-item p,
.quote-card p,
.feature-list p,
.booking-copy p,
.form-note,
.faq-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 28px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  flex: 0 0 auto;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff8f44);
  color: #1c120a;
  box-shadow: 0 16px 40px rgba(255, 106, 26, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 106, 26, 0.12);
}

.hero-visual {
  display: grid;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(255, 145, 71, 0.18), transparent 50%);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 51, 0.32), transparent 68%);
}

.visual-panel-main {
  min-height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent 60%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.visual-panel-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0.08) 60%, rgba(0, 0, 0, 0.02) 100%);
}

.visual-panel-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 360px);
  padding: 0;
  margin: 0;
}

.visual-panel-main strong {
  margin: 6px 0 2px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.58),
    0 10px 26px rgba(0, 0, 0, 0.3);
}

.visual-panel-main .panel-label,
.visual-panel-main p,
.visual-panel-small p,
.contact-box a {
  position: relative;
  z-index: 1;
}

.visual-panel-main p {
  max-width: 24ch;
  margin: 0;
  font-size: 1.05rem;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.62),
    0 8px 18px rgba(0, 0, 0, 0.26);
}

.visual-panel-main .panel-label {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.visual-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.visual-panel-small {
  min-height: 168px;
  padding: 20px;
}

.visual-panel-small p {
  margin: 0;
}

.visual-panel-small.accent {
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.2), rgba(255, 179, 106, 0.06));
}

.metric {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
}

.visual-panel-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  padding: 18px 20px;
}

.visual-inline-copy {
  display: grid;
  gap: 12px;
}

.visual-inline-copy p {
  margin: 0;
  color: var(--muted);
  max-width: none;
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 24px;
}

.stats article,
.info-card,
.faq-card,
.feature-list article,
.timeline-item,
.booking-copy,
.booking-form {
  padding: 24px;
}

.stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 2rem;
}

.section {
  padding: 52px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.cards-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.info-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
}

.info-card .card-tag,
.info-card h3,
.info-card p {
  margin: 0;
}

.info-card h3 {
  max-width: none;
  min-height: 0;
  white-space: nowrap;
}

.section-contrast {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.info-card p,
.portfolio-card p,
.feature-list p,
.faq-card p {
  margin: 14px 0 0;
}

.portfolio-carousel {
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.portfolio-card {
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio-case {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  flex: 1 1 auto;
}

.portfolio-body > div {
  display: grid;
  gap: 10px;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio-meta li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.86rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.18), rgba(255, 179, 106, 0.08));
  border: 1px solid rgba(255, 179, 106, 0.22);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
}

.portfolio-link:hover,
.portfolio-link:focus-visible {
  transform: translateY(-2px);
}

.project-stack {
  display: grid;
  gap: 22px;
}

.project-showcase {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.68fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.project-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.project-copy p:last-of-type {
  margin: 0;
}

.project-extra {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.project-extra strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-extra p {
  margin: 0;
  color: var(--muted);
}

.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-stats span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.92rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-shot {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-shot-hidden {
  display: none;
}

.gallery-shot:hover,
.gallery-shot:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 179, 106, 0.36);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.gallery-shot img,
.gallery-shot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-shot-featured {
  width: 100%;
  align-self: start;
}

.project-showcase .gallery-shot-featured img,
.project-showcase .gallery-shot-featured video {
  aspect-ratio: 16 / 9;
}

.project-gallery .gallery-shot img,
.project-gallery .gallery-shot video {
  aspect-ratio: 4 / 3;
}

.project-showcase-duo .gallery-shot-featured img,
.project-showcase-duo .gallery-shot-featured video {
  aspect-ratio: 16 / 10;
  object-position: center 58%;
}

.project-showcase-duo .project-gallery .gallery-shot img,
.project-showcase-duo .project-gallery .gallery-shot video {
  aspect-ratio: 3 / 2;
  object-position: center 44%;
}

.gallery-shot video {
  background: #070709;
}

.gallery-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(6, 6, 8, 0.92), rgba(6, 6, 8, 0));
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 40px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(12, 12, 15, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-dialog img,
.lightbox-dialog video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 20px;
  background: #09090b;
}

.lightbox-dialog video[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.7rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav-prev {
  left: 16px;
}

.lightbox-nav-next {
  right: 16px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-title,
#lightboxTitle {
  margin: 12px 0 2px;
  color: var(--muted);
}

.timeline {
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
}

.timeline-item strong {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.2), rgba(255, 179, 106, 0.08));
  color: var(--accent-soft);
  font-size: 2rem;
}

.section-split .split-layout {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.quote-card {
  padding: 28px;
  min-height: 100%;
  display: flex;
  align-items: end;
  background:
    linear-gradient(to top, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.05)),
    radial-gradient(circle at top left, rgba(255, 106, 26, 0.24), transparent 34%);
}

.quote-card p {
  margin: 0;
  max-width: 24ch;
  color: var(--text);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.4;
}

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

.booking-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 20px;
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-profile-copy {
  display: grid;
  gap: 6px;
  padding-bottom: 8px;
}

.contact-name,
.contact-caption {
  margin: 0;
}

.contact-name {
  color: var(--text);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-box h3 {
  margin: 0;
  font-size: 1.2rem;
}

.contact-box a {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-box a.is-placeholder {
  opacity: 0.72;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label,
.channel-pick legend {
  font-weight: 700;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #938c80;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(255, 106, 26, 0.4);
  outline-offset: 1px;
}

.channel-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 0;
}

.channel-pick legend {
  width: 100%;
  margin-bottom: 6px;
}

.channel-pick label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.channel-pick input {
  width: auto;
  margin: 0;
}

.form-button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  border: 0;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer-copy {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  width: min(100%, 720px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 106, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.18), rgba(255, 179, 106, 0.08));
  color: var(--accent-soft);
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social-copy {
  display: grid;
  gap: 2px;
}

.footer-social-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.footer-social-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes driftUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-visual,
.stats article,
.info-card,
.portfolio-card,
.timeline-item,
.quote-card,
.feature-list article,
.booking-copy,
.booking-form,
.faq-card {
  animation: driftUp 700ms ease both;
}

.stats article:nth-child(2),
.info-card:nth-child(2),
.portfolio-card:nth-child(2),
.feature-list article:nth-child(2),
.faq-card:nth-child(2) {
  animation-delay: 120ms;
}

.stats article:nth-child(3),
.info-card:nth-child(3),
.portfolio-card:nth-child(3),
.feature-list article:nth-child(3),
.faq-card:nth-child(3) {
  animation-delay: 240ms;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    display: grid;
  }

  .hero,
  .stats,
  .cards-grid,
  .portfolio-grid,
  .project-intro,
  .project-gallery,
  .section-split .split-layout,
  .booking-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .portfolio-carousel {
    padding-inline: 0;
  }

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

  .footer-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    position: static;
    margin-top: 10px;
    padding: 16px;
  }

  .hero-copy,
  .hero-visual,
  .section-contrast,
  .project-showcase,
  .booking-copy,
  .booking-form,
  .info-card,
  .faq-card,
  .feature-list article {
    padding: 20px;
  }

  .visual-stack,
  .timeline-item,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-intro {
    grid-template-columns: 1fr;
  }

  .timeline-item strong {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .section {
    padding: 40px 0;
  }

  .header-cta {
    width: 100%;
  }

  .portfolio-link {
    width: 100%;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    padding: 12px;
    border-radius: 20px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-nav-prev {
    left: 10px;
  }

  .lightbox-nav-next {
    right: 10px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 16px;
  }

  .footer-socials {
    grid-template-columns: 1fr;
  }

  .visual-panel-main {
    min-height: 290px;
  }

  .visual-panel-main strong {
    max-width: 7ch;
  }

  .cards-grid-duo {
    grid-template-columns: 1fr;
  }

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

  .info-card h3 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    flex-basis: 100%;
  }
}
