:root {
  --black: #070707;
  --ink: #14110d;
  --white: #fffaf2;
  --muted: #d8d0c3;
  --soft: #f7f2ea;
  --gold: #caa75a;
  --gold-bright: #e3c477;
  --line: rgba(202, 167, 90, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 70px);
  background: linear-gradient(rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0));
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.7vw, 36px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 340px);
  overflow: hidden;
  padding: 108px clamp(22px, 5.6vw, 88px) 48px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("https://images.unsplash.com/photo-1606216794074-735e91aa2c92?auto=format&fit=crop&w=2200&q=90") center/cover;
  transform: scale(1.03);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 48%, rgba(202, 167, 90, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.78)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.12) 48%, rgba(7, 7, 7, 0.54));
  content: "";
}

.hero-content {
  width: min(720px, 100%);
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker strong {
  border: 1px solid rgba(227, 196, 119, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(3.4rem, 5.8vw, 5.8rem);
}

h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
}

h3 {
  font-size: 2rem;
}

.tagline {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-actions,
.filter-bar,
.socials,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-bar {
  max-width: 1180px;
  margin-inline: auto;
}

.button,
.filter,
.whatsapp {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-actions {
  margin-top: 22px;
  justify-content: flex-start;
}

.hero-proof {
  display: grid;
  max-width: 720px;
  margin-top: 22px;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof span {
  border-top: 1px solid rgba(227, 196, 119, 0.28);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-proof strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

@media (max-height: 820px) and (min-width: 901px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(3.1rem, 5.2vw, 5.1rem);
  }

  .tagline {
    max-width: 580px;
    font-size: 1rem;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .hero-proof strong {
    font-size: 1.55rem;
  }

  .scroll-cue {
    display: none;
  }
}

.hero-card {
  align-self: end;
  border: 1px solid rgba(227, 196, 119, 0.32);
  padding: 12px;
  background: rgba(10, 10, 10, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.hero-card div {
  padding: 14px 4px 2px;
}

.hero-card p {
  margin: 0 0 4px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.hero-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.primary,
.filter.active,
.whatsapp {
  border-color: var(--gold);
  color: #130f08;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.ghost {
  color: var(--ink);
  background: rgba(20, 17, 13, 0.03);
}

.filter {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.72);
}

.hero .ghost,
.films .ghost,
.testimonials .ghost,
.why .ghost {
  color: var(--white);
}

.button:hover,
.filter:hover,
.whatsapp:hover {
  transform: translateY(-3px);
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 70px);
}

.about,
.portfolio,
.packages,
.faq,
.contact {
  color: var(--ink);
  background: var(--soft);
}

.section-grid,
.contact-layout {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  grid-template-columns: 1fr 0.92fr;
}

.section-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.film-card p,
.package-card li,
.faq p {
  color: #645d52;
}

.stats {
  display: grid;
  margin-top: 28px;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.stats span {
  border-top: 1px solid rgba(20, 17, 13, 0.18);
  padding-top: 14px;
  color: #645d52;
}

.stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.gallery {
  display: grid;
  max-width: 1240px;
  margin: 34px auto 0;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: var(--white);
  background: var(--black);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.68));
  content: "";
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.8rem;
  text-align: left;
}

.gallery-item:hover img {
  opacity: 0.88;
  transform: scale(1.08);
}

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

.films,
.testimonials,
.why,
.footer {
  background: var(--black);
}

.films .section-heading h2,
.testimonials .section-heading h2,
.why h2 {
  color: var(--white);
}

.film-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

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

.film-card,
.package-card,
blockquote,
.why-panel,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.film-card {
  padding: 16px;
}

.video-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1000&q=85") center/cover;
  cursor: pointer;
}

.video-placeholder.alt {
  background-image: url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1000&q=85");
}

.video-placeholder::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  content: "";
  transition: background 0.25s ease;
}

.video-placeholder span {
  z-index: 1;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-placeholder span::after {
  display: block;
  width: 0;
  height: 0;
  margin: 24px 0 0 29px;
  border-block: 12px solid transparent;
  border-left: 18px solid var(--gold-bright);
  content: "";
}

.video-placeholder:hover::before,
.video-placeholder:focus-visible::before {
  background: rgba(0, 0, 0, 0.18);
}

.video-placeholder:hover span,
.video-placeholder:focus-visible span {
  background: rgba(0, 0, 0, 0.72);
  transform: scale(1.08);
}

.video-placeholder:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.video-placeholder iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-card h3,
.film-card p {
  margin: 18px 8px 0;
}

.package-card {
  position: relative;
  padding: 34px;
  color: var(--ink);
  background: #fffaf2;
}

.package-card.featured {
  color: var(--white);
  background: #111;
  transform: translateY(-14px);
}

.package-card.featured li {
  color: var(--muted);
}

.price {
  margin: 16px 0 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
}

.badge {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

blockquote {
  margin: 0;
  padding: 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.45rem;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 68px);
}

.why-grid {
  display: grid;
  margin-top: 30px;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.why-grid span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  color: var(--muted);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

details {
  border-top: 1px solid rgba(20, 17, 13, 0.18);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid rgba(20, 17, 13, 0.18);
}

summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.contact-layout {
  align-items: start;
}

.contact-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-links a:not(.whatsapp) {
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.socials a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(202, 167, 90, 0.42);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.58);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-3px);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a[aria-label="Pinterest"] svg,
.socials a[aria-label="YouTube"] svg {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: #fffaf2;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 17, 13, 0.2);
  border-radius: 0;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  outline-color: var(--gold);
}

textarea {
  resize: vertical;
}

.map {
  max-width: 1180px;
  margin: 42px auto 0;
}

.map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px clamp(18px, 5vw, 70px);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 2.8rem;
}

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

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 300px;
    padding-top: 100px;
  }

  h1 {
    font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  }

  .hero-card img {
    aspect-ratio: 1 / 0.72;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    z-index: 24;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: var(--white);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 23;
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    place-content: center;
    gap: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(7, 7, 7, 0.96);
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero-card {
    display: none;
  }

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

  .section-grid,
  .contact-layout,
  .gallery,
  .film-grid,
  .package-grid,
  .testimonial-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2 {
    max-width: 11ch;
  }

  .portfolio .section-heading h2 {
    max-width: 10ch;
    font-size: clamp(2rem, 9.2vw, 2.65rem);
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    padding: 18px 22px;
  }

  .site-header.scrolled {
    padding-block: 12px;
  }

  .brand span {
    font-size: 1.55rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

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

  .hero {
    min-height: 760px;
    place-items: center;
    padding: 94px 24px 34px;
  }

  .hero-media {
    background-position: 46% center;
  }

  .hero-content {
    padding-top: 16px;
    text-align: left;
  }

  .hero-kicker {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-kicker strong {
    width: fit-content;
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.05rem);
    line-height: 1;
  }

  .tagline {
    max-width: 21rem;
    margin-top: 14px;
    margin-inline: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    justify-content: stretch;
    margin-top: 18px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .button,
  .whatsapp {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 0.76rem;
    letter-spacing: 0.055em;
  }

  .hero-actions .button,
  .contact-form .button {
    border-radius: 999px;
  }

  .hero-proof {
    margin-top: 18px;
    gap: 0;
    text-align: center;
  }

  .hero-proof span {
    padding: 12px 0;
    font-size: 0.82rem;
  }

  .hero-proof strong {
    font-size: 1.7rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 58px 24px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .stats span {
    padding: 18px 0;
  }

  .stats strong {
    font-size: 2.5rem;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: center;
  }

  .section-heading h2 {
    max-width: 16ch;
    margin-inline: auto;
  }

  .portfolio .section-heading h2 {
    max-width: 16ch;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .films .section-heading h2,
  .testimonials .section-heading h2,
  .packages .section-heading h2,
  .faq .section-heading h2 {
    max-width: 17ch;
  }

  .section-copy,
  .contact-copy,
  .why-panel,
  .faq-list {
    text-align: center;
  }

  .section-copy h2,
  .contact-copy h2,
  .why-panel h2 {
    margin-inline: auto;
  }

  .section-copy p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    max-width: 32rem;
    margin-inline: auto;
  }

  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    width: calc(100% + 48px);
    max-width: none;
    margin-inline: -24px;
    overflow-x: auto;
    padding: 0 24px 10px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    min-height: 40px;
    min-width: max-content;
    padding: 8px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 230px;
  }

  .video-placeholder {
    min-height: 250px;
  }

  .package-card,
  blockquote,
  .contact-form {
    padding: 22px;
  }

  .film-card,
  .package-card,
  blockquote {
    text-align: center;
  }

  .package-card ul {
    display: inline-block;
    text-align: left;
  }

  .package-card .button {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.74rem;
    white-space: normal;
  }

  .contact-links {
    align-items: center;
    justify-content: center;
  }

  .contact-links .whatsapp {
    width: auto;
  }

  input,
  textarea {
    padding: 12px 14px;
  }

  textarea {
    min-height: 118px;
  }

  summary {
    text-align: center;
  }

  .socials {
    justify-content: center;
    gap: 14px;
  }

  .why-panel {
    padding: 28px 20px;
  }

  .footer {
    justify-content: center;
    text-align: center;
  }
}
