/* ==========================================================================
   NACAR Plantilla Madre
   HTML + CSS + JavaScript basico. Sin frameworks ni dependencias externas.
   Edita primero las variables: cambian toda la personalidad visual.
   ========================================================================== */

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* Color */
  --color-bg: #fbfaf7;
  --color-surface: #ffffff;
  --color-surface-muted: #f1eee8;
  --color-text: #1f1d1a;
  --color-text-muted: #68635c;
  --color-border: #ded8cf;
  --color-accent: #8a5a44;
  --color-accent-strong: #5d392b;
  --color-dark: #171615;
  --color-dark-text: #f8f5ee;

  /* Tipografia */
  --font-body: "Space Grotesk", "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
  --font-ui: "Space Grotesk", "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
  --text-xs: 0.78rem;
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-md: 1.12rem;
  --text-lg: 1.38rem;
  --text-xl: 2rem;
  --text-2xl: 2.75rem;

  /* Layout */
  --container: 1120px;
  --container-narrow: 760px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --section-space: clamp(4rem, 8vw, 7rem);

  /* Forma */
  --radius-sm: 1px;
  --radius-md: 2px;
  --border: 1px solid var(--color-border);
  --shadow-soft: 0 20px 60px rgb(31 29 26 / 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  margin-bottom: var(--space-4);
  font-size: clamp(2.65rem, 12vw, 5.9rem);
}

h2 {
  max-width: 12ch;
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 7vw, 4.35rem);
}

h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

p {
  color: var(--color-text-muted);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, var(--container-narrow));
}

.section {
  padding-block: var(--section-space);
}

.page--compact {
  --section-space: clamp(3rem, 6vw, 5rem);
}

.section--muted {
  background: var(--color-surface-muted);
}

#servicios {
  background: #f1e4d8;
  color: var(--color-text);
}

#servicios .eyebrow,
#servicios h2,
#servicios .section-heading p {
  color: var(--color-text);
}

.section--dark {
  background: #dcc7b8;
  color: var(--color-text);
}

.section--dark p,
.section--dark .eyebrow {
  color: rgb(31 29 26 / 0.72);
}

#faq {
  background: #cdb09d;
}

#contacto {
  background: #c19f88;
}

.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 100;
  padding: var(--space-2) var(--space-3);
  background: var(--color-dark);
  color: var(--color-dark-text);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: var(--space-3);
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hidden {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgb(0 0 0 / 0.94);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(calc(-100% - 13.5rem));
  transition: transform 220ms ease;
}

.site-header.is-visible,
body.nav-open .site-header {
  transform: translateY(0);
}

.header__inner {
  position: relative;
  display: flex;
  width: calc(100% - 1.5rem);
  max-width: none;
  min-height: 72px;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
}

.brand__mark {
  width: 4rem;
  height: 2.75rem;
  object-fit: contain;
}

.brand--header {
  position: absolute;
  left: 50%;
  top: -7.4rem;
  z-index: 2;
  width: 13.2rem;
  height: 13.2rem;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.12rem;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.brand--header .brand__mark {
  width: 6.9rem;
  height: 4.2rem;
}

.nav-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: #fff;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: grid;
  gap: var(--space-1);
  padding: var(--space-4) 1rem;
  background: rgb(0 0 0 / 0.94);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: var(--shadow-soft);
  transform: translateY(-120%);
  transition: transform 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
}

.site-nav a,
.footer-nav a {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  text-decoration: none;
}

.site-nav a {
  padding: var(--space-2) 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.15;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
}

.hero__grid {
  display: grid;
  gap: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
  padding-top: 4svh;
  text-align: center;
}

.hero__text {
  max-width: 34rem;
  margin-inline: auto;
  margin-top: 18svh;
  font-size: var(--text-md);
  color: var(--color-text);
}

.hero__brand-title {
  max-width: none;
  margin: -50px auto var(--space-4);
  line-height: 0;
}

.hero__logo {
  width: min(90vw, 55rem);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero--center {
  text-align: center;
}

.hero--center h1,
.hero--center .hero__text {
  margin-inline: auto;
}

.hero--center .button-group {
  justify-content: center;
}

.hero__media {
  min-height: 20rem;
}

.image-placeholder {
  display: grid;
  min-height: 20rem;
  height: 100%;
  place-items: center;
  background: #050505;
  border: 1px solid #050505;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
}

.button-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: 1px solid #050505;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.button--primary {
  background: #050505;
  color: #fff;
}

.button--primary:hover {
  background: #202020;
}

.button--secondary {
  background: #050505;
  border-color: #050505;
  color: #fff;
}

.button--secondary:hover {
  background: #202020;
  border-color: #202020;
}

.button--light {
  background: #fff;
  border-color: #fff;
  color: #050505;
}

.button--light:hover {
  background: rgb(255 255 255 / 0.84);
  border-color: rgb(255 255 255 / 0.84);
}

.notice-dialog {
  width: min(calc(100% - 2rem), 32rem);
  padding: var(--space-5);
  background: #050505;
  border: 1px solid #050505;
  border-radius: var(--radius-md);
  color: #fff;
}

.notice-dialog::backdrop {
  background: rgb(0 0 0 / 0.58);
}

.notice-dialog p {
  margin-bottom: var(--space-4);
  color: #fff;
  font-family: var(--font-ui);
  font-size: var(--text-md);
  line-height: 1.45;
}

.notice-dialog .button {
  border-color: #fff;
}

/* Content blocks */
.split {
  display: grid;
  gap: var(--space-5);
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-heading p {
  max-width: 42rem;
}

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

.section-heading--center h2,
.section-heading--center p {
  margin-inline: auto;
}

.rich-text {
  max-width: 40rem;
}

.rich-text p {
  font-size: var(--text-md);
}

.event-space {
  display: grid;
  justify-items: center;
  text-align: center;
}

.event-space .section-heading {
  margin-bottom: var(--space-4);
}

.presentation {
  align-items: center;
}

#presentacion {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--color-bg);
}

#presentacion::before {
  position: absolute;
  inset: 0;
  background: #f9f2ec;
  content: "";
  z-index: 0;
}

#presentacion > .container {
  position: relative;
  z-index: 1;
}

#presentacion .menu-carousel__button {
  color: var(--color-text);
}

#presentacion .menu-carousel__button:hover {
  color: rgb(0 0 0 / 0.55);
}

.presentation__copy {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.presentation__title {
  max-width: 13ch;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.02;
}

.presentation__text {
  max-width: 19rem;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.45;
}

.menu-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-3);
  justify-items: center;
}

.menu-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 116%;
  aspect-ratio: 4 / 5;
  background: transparent;
  border: 0;
  border-radius: 0;
  touch-action: pan-y;
  user-select: none;
}

.menu-carousel__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.menu-carousel__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.menu-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

.menu-carousel__slide .menu-carousel__image--small {
  width: 90%;
  margin-inline: auto;
}

.menu-carousel__slide figcaption {
  padding-top: var(--space-2);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
}

.menu-carousel__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.menu-carousel__button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: var(--text-xl);
  line-height: 1;
  pointer-events: auto;
}

.menu-carousel__button:hover {
  color: rgb(0 0 0 / 0.55);
}

.door-photo {
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.door-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-photo {
  width: 100%;
  height: 88svh;
  overflow: hidden;
}

.social-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services */
.services {
  display: grid;
  gap: var(--space-3);
}

.service-card,
.step,
.plan {
  border: 1px solid #050505;
  border-radius: var(--radius-md);
  background: #050505;
  color: #fff;
}

#servicios .service-card {
  background: transparent;
  border: 0;
  color: var(--color-text);
}

#servicios .service-card p {
  color: rgb(31 29 26 / 0.54);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.5;
}

#servicios .service-card__number {
  color: rgb(31 29 26 / 0.7);
  font-weight: 500;
}

.service-card p,
.step p,
.plan p,
.service-card__number,
.step__index {
  color: rgb(255 255 255 / 0.76);
}

.service-card {
  padding: var(--space-4);
}

.service-card__number {
  display: block;
  margin-bottom: var(--space-5);
  color: rgb(255 255 255 / 0.76);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
}

.services--list {
  gap: 0;
  border-top: var(--border);
}

.services--list .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  background: transparent;
  border: 0;
  border-bottom: var(--border);
  border-radius: 0;
}

.services--list .service-card__number {
  margin-bottom: 0;
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-3);
}

.step {
  padding: var(--space-4);
}

.step__index {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--space-4);
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.32);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
}

/* Plans */
.plans {
  display: grid;
  gap: var(--space-3);
}

.plan {
  padding: var(--space-4);
  background: #050505;
  border-color: rgb(255 255 255 / 0.18);
}

.plan--featured {
  background: #111;
}

.plan__price {
  margin-bottom: var(--space-3);
  color: var(--color-dark-text);
  font-size: var(--text-xl);
  line-height: 1.1;
}

/* Gallery */
.gallery {
  display: grid;
  gap: var(--space-3);
}

.gallery__item {
  display: grid;
  min-height: 15rem;
  place-items: center;
  background: #050505;
  border: 1px solid #050505;
  border-radius: var(--radius-md);
  color: rgb(255 255 255 / 0.76);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
}

.gallery--editorial .gallery__item {
  min-height: 20rem;
}

.gallery--editorial .gallery__item--large {
  min-height: 28rem;
}

/* FAQ */
.faq-list {
  border-top: var(--border);
}

.faq-item {
  border-bottom: var(--border);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  background: transparent;
  border: 0;
  color: var(--color-text);
  text-align: left;
}

.faq-question span:first-child {
  font-size: var(--text-md);
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
}

.faq-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateY(0.2rem) rotate(-135deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin-bottom: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: var(--space-4);
}

/* Contact */
.contact__grid {
  display: grid;
  gap: var(--space-5);
}

.contact-list {
  display: grid;
  gap: var(--space-3);
  padding: 0;
  margin: var(--space-5) 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list strong {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-social {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: var(--space-3);
}

.contact-social p {
  max-width: 18rem;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: var(--text-md);
}

.contact-form {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  background: #050505;
  border: 1px solid #050505;
  border-radius: var(--radius-md);
  color: #fff;
}

.contact-form label {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.32);
  border-radius: var(--radius-sm);
  background: #050505;
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  padding-block: var(--space-6) var(--space-4);
  background: var(--color-text);
  color: var(--color-bg);
}

.site-footer p,
.site-footer small,
.studio-credit {
  color: rgb(251 250 247 / 0.68);
}

.brand--footer {
  color: var(--color-bg);
}

.brand--footer .brand__mark {
  width: 7.5rem;
  height: auto;
}

.footer__grid {
  display: grid;
  gap: var(--space-5);
}

.footer-nav {
  display: grid;
  gap: var(--space-2);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-5);
  margin-top: var(--space-5);
  border-top: 1px solid rgb(251 250 247 / 0.16);
}

.studio-credit {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.studio-credit span {
  line-height: 1;
}

.studio-credit:hover {
  color: var(--color-bg);
}

.studio-credit img {
  width: 6rem;
  height: 6rem;
  align-self: center;
  object-fit: contain;
  opacity: 0.86;
  transform: translateY(-0.25rem);
}

/* Legal pages */
.legal-page {
  min-height: 100svh;
  background: var(--color-bg);
}

.legal-page .site-header {
  transform: translateY(0);
}

.legal-main {
  padding-block: calc(var(--section-space) + 5rem) var(--section-space);
}

.legal-document {
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.48;
}

.legal-kicker {
  margin: 0 0 var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.legal-document h1 {
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.legal-document p {
  margin-block: 0 var(--space-3);
  color: rgb(31 29 26 / 0.76);
}

.legal-document a {
  color: var(--color-text);
  font-weight: 500;
}

.legal-footer {
  margin-top: auto;
}

@media (min-width: 900px) {
  .legal-document {
    width: min(calc(100% - 8rem), var(--container-narrow));
    margin-left: clamp(7rem, 17vw, 18rem);
    margin-right: auto;
  }
}

/* Responsive */
@media (max-width: 719px) {
  :root {
    --section-space: clamp(3.25rem, 12vw, 5rem);
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: min(100% - 1.25rem, var(--container));
  }

  .site-header {
    border-bottom: 0;
    transform: translateY(calc(-100% - 10.5rem));
  }

  .header__inner {
    width: calc(100% - 1rem);
    min-height: 56px;
  }

  .brand--header {
    top: -4.95rem;
    width: 9rem;
    height: 9rem;
    padding-bottom: 0.7rem;
  }

  .brand--header .brand__mark {
    width: 4.55rem;
    height: 2.85rem;
  }

  .nav-toggle {
    width: 2rem;
    height: 1.6rem;
    border: 0;
    border-radius: 0;
  }

  .site-nav {
    inset: 56px 0 auto;
    width: min(82vw, 20rem);
    right: 0;
    left: auto;
    gap: 0.08rem;
    padding: 0.85rem 1rem 1rem;
    border-bottom: 0;
    box-shadow: none;
    text-align: right;
    transform: translateY(calc(-100% - 5rem));
  }

  .site-nav a {
    padding: 0.34rem 0;
    font-size: 0.72rem;
  }

  .hero__content {
    justify-content: flex-start;
    padding-top: 7svh;
  }

  .hero__brand-title {
    margin-top: -12px;
  }

  .hero__logo {
    width: min(88vw, 32rem);
  }

  .hero__text {
    max-width: 18rem;
    margin-top: 13svh;
    font-size: var(--text-base);
    line-height: 1.35;
  }

  .button-group {
    width: min(100%, 10.75rem);
    margin-top: var(--space-4);
  }

  .hero .button-group .button {
    width: 100%;
    min-height: 2.45rem;
    padding: 0.62rem 0.8rem;
    font-size: 0.84rem;
  }

  #presentacion {
    padding-block: 3rem;
  }

  .presentation {
    gap: var(--space-5);
  }

  .presentation__copy {
    text-align: left;
  }

  .presentation__title {
    max-width: 11ch;
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .presentation__text {
    max-width: 16rem;
  }

  .menu-carousel {
    width: 100%;
    padding-inline: 1.25rem;
  }

  .menu-carousel__viewport {
    overflow: visible;
    width: 100%;
    max-width: 17rem;
  }

  .menu-carousel__controls {
    left: 0;
    right: 0;
  }

  .menu-carousel__button {
    width: 2.25rem;
    height: 2.25rem;
    font-size: var(--text-lg);
  }

  #servicios .section-heading {
    margin-bottom: var(--space-4);
  }

  .services--cards {
    gap: var(--space-4);
  }

  #servicios .service-card {
    padding: 0;
  }

  .service-card__number {
    margin-bottom: var(--space-2);
  }

  .door-photo {
    width: 100vw;
    height: 62svh;
    margin-inline: calc(50% - 50vw);
  }

  .door-photo img {
    width: 100%;
    object-position: center;
  }

  .social-photo {
    width: 100vw;
    height: 62svh;
    margin-inline: calc(50% - 50vw);
  }

  .social-photo img {
    width: 100%;
    object-position: center;
  }

  .event-space h2,
  #faq h2,
  .contact h2 {
    max-width: 10ch;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .faq-question {
    gap: var(--space-3);
    min-height: 4rem;
  }

  .faq-question span:first-child {
    font-size: var(--text-base);
    line-height: 1.35;
  }

  .faq-answer > p {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  .contact-form {
    padding: var(--space-3);
  }

  .footer__bottom {
    align-items: flex-start;
  }

  .footer-nav {
    grid-template-columns: repeat(3, max-content);
    gap: 0.55rem 0.85rem;
  }

  .studio-credit {
    align-items: center;
  }
}

@media (min-width: 720px) {
  :root {
    --text-2xl: 4.8rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 2vw, 1.5rem);
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    transform: none;
  }

  .hero__grid,
  .split,
  .contact__grid,
  .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .presentation .menu-carousel__viewport {
    overflow: visible;
  }

  .presentation .menu-carousel {
    transform: translateX(-3%);
  }

  .presentation .menu-carousel__slide img {
    transform: translate(-1.5rem, -5%);
  }

  .presentation .menu-carousel__slide .menu-carousel__image--left-extra {
    transform: translate(-2.5rem, -5%);
  }

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

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

  .hero--center .hero__media {
    max-width: 860px;
    width: 100%;
    margin-inline: auto;
  }

  .services--cards,
  .steps,
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .gallery--editorial {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .gallery--editorial .gallery__item--large {
    grid-row: span 3;
  }

  .footer-nav {
    grid-template-columns: repeat(3, max-content);
    justify-content: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
