@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #f5f0e8;
  --bg-deep: #ebe2d6;
  --surface: rgba(255, 251, 247, 0.82);
  --surface-strong: #fffaf4;
  --surface-dark: rgba(28, 23, 19, 0.82);
  --ink: #221c17;
  --muted: #685e55;
  --line: rgba(76, 61, 49, 0.12);
  --line-strong: rgba(255, 247, 239, 0.18);
  --sand: #a28f7d;
  --sand-deep: #7f6b59;
  --gold: #d6a74d;
  --shadow: 0 24px 70px rgba(47, 34, 24, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 167, 77, 0.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(162, 143, 125, 0.2), transparent 30%),
    linear-gradient(180deg, #f8f4ee 0%, var(--bg) 45%, var(--bg-deep) 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px 0 8px;
}

.brand {
  display: flex;
  justify-content: center;
  width: min(100%, 470px);
  margin-left: 0;
}

.brand img {
  width: clamp(110px, 11vw, 156px);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 246, 236, 0.18);
  border-radius: 999px;
  background: rgba(21, 17, 14, 0.42);
  color: #fff8f1;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.menu-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__line + .menu-toggle__line {
  margin-top: 4px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 248, 241, 0.92);
  font-size: 0.94rem;
  margin-left: auto;
  margin-right: 18px;
}

.site-nav a,
.lang-switch__button {
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-switch__button:hover,
.lang-switch__button:focus-visible,
.button:hover,
.button:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  padding: 5px;
  border: 1px solid rgba(255, 246, 236, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  backdrop-filter: blur(18px);
}

.lang-switch__button {
  min-width: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 248, 241, 0.74);
  cursor: pointer;
  padding: 10px 12px;
}

.lang-switch__button.is-active {
  background: rgba(255, 248, 241, 0.95);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(24, 19, 15, 0.76) 0%, rgba(24, 19, 15, 0.34) 33%, rgba(24, 19, 15, 0.08) 56%, rgba(24, 19, 15, 0.02) 100%),
    linear-gradient(180deg, rgba(24, 19, 15, 0.1) 0%, rgba(24, 19, 15, 0.35) 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.hero__glow--one {
  right: 10%;
  top: 18%;
  width: 240px;
  height: 240px;
  background: rgba(255, 212, 86, 0.22);
}

.hero__glow--two {
  left: -4%;
  bottom: 8%;
  width: 340px;
  height: 340px;
  background: rgba(255, 173, 62, 0.18);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.64fr);
  gap: 28px;
  align-items: end;
  padding: 108px 12px 56px 8px;
}

.hero__text,
.hero__panel,
.intro-card,
.story-card,
.video-card,
.service-card,
.process-card,
.contact-form {
  box-shadow: var(--shadow);
}

.hero__text {
  max-width: 470px;
  padding-left: 0;
  margin-left: 0;
  align-self: end;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--sand-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__text .kicker {
  justify-self: center;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.kicker--light {
  color: #f0dbc3;
}

.hero h1,
.section-heading h2,
.story-card--copy h3,
.video-card h3,
.service-card h3,
.process-card h3,
.contact-copy h2,
.thank-you h1 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 8.4ch;
  color: #fff9f1;
  font-size: clamp(2.35rem, 4.4vw, 4.05rem);
  line-height: 0.95;
  margin-inline: auto;
}

.hero__lead,
.intro-copy p,
.story-card p,
.video-card p,
.service-card p,
.process-card p,
.contact-copy p,
.site-footer p,
.thank-you p {
  margin: 0;
  line-height: 1.76;
  color: var(--muted);
}

.hero__lead {
  max-width: 44ch;
  margin-top: 16px;
  color: rgba(255, 247, 238, 0.9);
  font-size: 0.94rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button--primary {
  background: #fff4e7;
  color: #251d17;
  font-weight: 700;
}

.button--ghost {
  background: rgba(255, 250, 244, 0.1);
  border-color: rgba(255, 248, 241, 0.22);
  color: #fff8f1;
  backdrop-filter: blur(18px);
}

.button--dark {
  background: #251d17;
  color: #fff6ec;
}

.hero__panel {
  align-self: end;
  max-width: 372px;
  margin-left: auto;
  margin-bottom: 6px;
  padding: 24px 24px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(28, 23, 19, 0.28);
  backdrop-filter: blur(18px);
}

.hero__panel-title {
  margin: 0 0 14px;
  color: #fff8f1;
  font-weight: 700;
  font-size: 1.02rem;
}

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

.hero__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 247, 239, 0.82);
  line-height: 1.58;
  font-size: 0.96rem;
}

.hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.section {
  padding: 96px 0 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  max-width: none;
  align-items: end;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.02;
}

.section-heading__side {
  justify-self: end;
  max-width: 36ch;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.intro-card,
.story-card,
.video-card,
.service-card,
.process-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.intro-card {
  padding: 24px 24px 26px;
}

.intro-card__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--sand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.intro-card__list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intro-card__list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.intro-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sand);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.story-card {
  overflow: hidden;
}

.story-card--photo img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.story-card figcaption,
.story-card--copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.story-card--copy {
  align-content: center;
  background:
    radial-gradient(circle at top right, rgba(214, 167, 77, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(247, 239, 229, 0.94) 100%);
}

.story-card--copy h3 {
  font-size: 1.55rem;
  line-height: 1.08;
}

.tag,
.video-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(162, 143, 125, 0.14);
  color: var(--sand-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.video-library-note {
  margin-top: 18px;
}

.video-library-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

code {
  padding: 0.2em 0.45em;
  border-radius: 0.55em;
  background: rgba(34, 28, 23, 0.08);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.92em;
}

.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.video-frame {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(35, 28, 23, 0.98) 0%, rgba(82, 60, 42, 0.92) 100%);
}

.video-frame--calm {
  background:
    linear-gradient(160deg, rgba(18, 21, 28, 0.96) 0%, rgba(43, 57, 74, 0.9) 100%);
}

.video-frame--warm {
  background:
    linear-gradient(160deg, rgba(58, 37, 24, 0.96) 0%, rgba(115, 72, 39, 0.92) 100%);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  border: 1px solid rgba(255, 246, 236, 0.12);
  background: rgba(255, 250, 244, 0.08);
}

.portfolio-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 206, 92, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(19, 17, 16, 0.74) 0%, rgba(48, 38, 31, 0.88) 100%);
}

.video-load-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.94);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.video-status {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  margin: 0;
  color: rgba(255, 247, 239, 0.88);
  font-size: 0.82rem;
  line-height: 1.5;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: rgba(255, 246, 236, 0.88);
  font-size: 0.83rem;
  font-weight: 600;
}

.video-meta span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 247, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.08);
}

.video-card__body,
.service-card,
.process-card {
  padding: 22px 22px 24px;
}

.video-card__body {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.video-card h3,
.service-card h3,
.process-card h3 {
  font-size: 1.18rem;
  line-height: 1.16;
}

.services-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card {
  min-height: 100%;
}

.process-grid {
  margin-top: 20px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(162, 143, 125, 0.14);
  color: var(--sand-deep);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0 90px;
}

.contact-copy {
  display: grid;
  gap: 16px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.contact-points strong {
  display: inline-block;
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

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

.contact-form span {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(162, 143, 125, 0.22);
  border-color: var(--sand);
}

.site-footer {
  border-top: 1px solid rgba(76, 61, 49, 0.08);
  background: rgba(255, 250, 244, 0.52);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(90px, 110px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 0 34px;
}

.site-footer__logo {
  width: 100%;
  max-width: 60px;
}

.site-footer__brand-info {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.site-footer__top-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sand-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.site-footer__top-link:hover,
.site-footer__top-link:focus-visible {
  opacity: 0.85;
}

.contact-email a,
.site-footer__email a,
.icon-link {
  color: var(--sand-deep);
  font-weight: 700;
  text-decoration: none;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-link svg {
  display: block;
  flex: 0 0 auto;
}

.site-footer__email {
  margin-top: 8px;
}

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

    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  place-items: center;
}

.thank-you {
  max-width: 760px;
  display: grid;
  gap: 16px;
  text-align: center;
  padding: 56px 0;
}

.thank-you__logo {
  width: min(320px, 70vw);
  margin: 0 auto 8px;
}

.thank-you h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.02;
}

.thank-you .button {
  justify-self: center;
}

@media (max-width: 1080px) {
  .hero__content,
  .section-heading--split,
  .intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-right: 12px;
  }

  .brand {
    width: auto;
    margin-left: 0;
  }

  .section-heading__side {
    justify-self: start;
  }

  .story-grid,
  .video-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero .shell {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 26px;
  }

  .site-header {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: start;
    justify-content: space-between;
    padding: 8px 12px 0;
  }

  .brand img {
    width: clamp(70px, 18vw, 84px);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    justify-content: flex-start;
    align-self: start;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    background: rgba(21, 17, 14, 0.56);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.82rem;
    line-height: 1;
    padding-top: 10px;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(21, 17, 14, 0.82);
    color: rgba(255, 248, 241, 0.98);
    backdrop-filter: blur(12px);
  }

  .lang-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: start;
    margin-left: 0;
    padding: 4px;
    background: rgba(21, 17, 14, 0.52);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-header.is-menu-open .menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero__content {
    gap: 16px;
    min-height: auto;
    width: 100%;
    align-content: start;
    justify-items: center;
    padding: calc(44svh - 50px) 0 0;
    position: relative;
    margin-top: -14px;
  }

  .hero__image {
    inset: 0 0 auto 0;
    height: 46svh;
    border-radius: 0;
    object-position: center 22%;
    transform: none;
    transform-origin: center center;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.96) 68%, rgba(0, 0, 0, 0.82) 80%, rgba(0, 0, 0, 0.48) 90%, rgba(0, 0, 0, 0.16) 96%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.96) 68%, rgba(0, 0, 0, 0.82) 80%, rgba(0, 0, 0, 0.48) 90%, rgba(0, 0, 0, 0.16) 96%, transparent 100%);
  }

  .hero__veil {
    inset: 0 0 auto 0;
    height: 46svh;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(18, 15, 12, 0.03) 0%, rgba(18, 15, 12, 0.07) 24%, rgba(18, 15, 12, 0.14) 48%, rgba(18, 15, 12, 0.28) 68%, rgba(120, 102, 74, 0.16) 84%, rgba(245, 240, 232, 0.08) 100%),
      linear-gradient(90deg, rgba(18, 15, 12, 0.1) 0%, rgba(18, 15, 12, 0.06) 50%, rgba(18, 15, 12, 0.1) 100%);
  }

  .hero__veil::after {
    content: none;
  }

  .hero__glow {
    display: none;
  }

  .hero h1 {
    max-width: 9.8ch;
    margin-inline: auto;
    font-size: clamp(1.75rem, 6.8vw, 2.15rem);
    line-height: 0.96;
    color: #2a211a;
    text-shadow: 0 10px 22px rgba(255, 250, 244, 0.32);
    text-wrap: balance;
  }

  .hero__text {
    display: grid;
    justify-items: center;
    margin-left: 0;
    max-width: 360px;
    width: 100%;
    text-align: center;
    padding: 0 16px 0;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .hero__lead {
    max-width: 28ch;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(58, 45, 36, 0.9);
    text-shadow: 0 4px 14px rgba(255, 250, 244, 0.22);
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
  }

  .hero__actions {
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 24px, 360px);
    margin-top: 18px;
    padding-inline: 0;
  }

  .hero__actions .button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.92rem;
    width: 100%;
    justify-content: center;
  }

  .hero__actions .button--primary,
  .hero__actions .button--ghost {
    background: rgba(21, 17, 14, 0.92);
    border-color: rgba(255, 248, 241, 0.12);
    color: #fff7ef;
    backdrop-filter: none;
  }

  .hero__panel {
    width: min(100% - 24px, 380px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 2px;
    padding: 18px 16px;
    border-radius: 22px;
    background: rgba(21, 17, 14, 0.84);
  }

  .hero__panel-title {
    margin-bottom: 10px;
    font-size: 0.94rem;
    color: #fffaf3;
    text-align: center;
  }

  .hero__list li {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 248, 241, 0.94);
  }

  .section {
    padding-top: 72px;
  }

  .story-grid,
  .video-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 230px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
