:root {
  --ink: #161412;
  --paper: #fffaf4;
  --soft: #f4eadf;
  --line: rgba(38, 30, 24, 0.14);
  --rose: #c94f79;
  --rose-dark: #9d3458;
  --gold: #c99a37;
  --cream: #fff6eb;
  --shadow: 0 22px 70px rgba(22, 20, 18, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 13, 11, 0.9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 30px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.86;
  white-space: nowrap;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.section-dark {
  color: #fff;
  background: #14110f;
}

.section-light {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 128px 24px 56px;
}

.hero-bg,
.feature-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim,
.feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.6) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  width: min(900px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  color: var(--cream);
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  text-wrap: balance;
}

h1 span {
  color: var(--gold);
  font-style: italic;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  text-wrap: balance;
}

.ornament {
  width: min(330px, 58vw);
  height: 1px;
  margin: 34px auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-copy {
  width: min(560px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid transparent;
  text-decoration: none;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--rose), #d98771);
  box-shadow: 0 14px 32px rgba(201, 79, 121, 0.25);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.22);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-tags li:not(:last-child)::after {
  content: "·";
  margin-left: 24px;
  color: var(--gold);
}

.hero-tags a {
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.hero-tags a:hover {
  color: var(--gold);
  opacity: 1;
}

.story,
.services,
.wedding,
.experiences,
.births,
.process,
.faq,
.contact {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 92px);
}

.section-grid,
.wedding,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.copy-block {
  max-width: 730px;
}

.copy-block p,
.section-heading p,
.feature-copy p,
.contact-intro p {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.quote {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(22, 20, 18, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
}

.portrait-frame {
  margin: 0;
  justify-self: end;
  width: min(430px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.feature-image {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: clamp(76px, 9vw, 130px) clamp(22px, 6vw, 92px);
  overflow: hidden;
}

.feature-image::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 36%, rgba(0, 0, 0, 0.36) 68%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 58% 42%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.54) 70%);
}

.feature-copy {
  position: relative;
  max-width: 780px;
  isolation: isolate;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.feature-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -28px -34px -30px -34px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0));
  border-left: 2px solid rgba(201, 154, 55, 0.55);
}

.feature-copy h2 {
  color: var(--cream);
}

.feature-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 154, 55, 0.5);
  color: rgba(255, 246, 235, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-style: italic;
  line-height: 1.35;
}

.services {
  background: linear-gradient(180deg, var(--paper), #f8efe7);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.service-cards article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.service-cards span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-cards h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.service-cards p {
  margin: 0;
  color: rgba(22, 20, 18, 0.72);
}

.wedding {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.wedding-media {
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wedding-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 50% 42%;
  filter: grayscale(100%) contrast(1.08);
}

.narrow {
  max-width: 620px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: none;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 44px;
}

.gallery-intro {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(22, 20, 18, 0.64);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.45;
}

.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: clamp(12px, 1.6vw, 22px);
}

.collage-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.collage-item.tall {
  grid-row: span 2;
}

.collage-item.wide {
  grid-column: span 2;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.collage-item:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.04);
}

.gallery-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}

.collage-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.centered {
  text-align: center;
}

.experiences {
  padding-bottom: clamp(44px, 5vw, 72px);
}

.experiences + .births {
  padding-top: clamp(44px, 5vw, 72px);
}

.experiences .quote {
  margin-bottom: 0;
}

.gallery-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(10, 8, 7, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-frame {
  min-width: 0;
  margin: 0;
  color: #fff;
  text-align: center;
}

.gallery-frame img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-frame figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-close,
.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-close:hover,
.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-arrow {
  width: 56px;
  height: 72px;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.gallery-prev {
  justify-self: end;
}

.gallery-next {
  justify-self: start;
}

.births {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(250, 237, 230, 0.96)),
    radial-gradient(circle at 16% 18%, rgba(201, 79, 121, 0.14), transparent 34%);
}

.births-media {
  min-height: 610px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ead9d0;
}

.births-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.births-copy {
  max-width: 700px;
}

.births-copy h2 {
  color: var(--rose-dark);
  margin-bottom: 28px;
}

.births-copy p {
  margin: 0 0 20px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.births-copy p:last-child {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: rgba(22, 20, 18, 0.64);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-style: italic;
  line-height: 1.35;
}

.process {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.process-steps article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.process-steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.process-steps h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.process-steps p {
  margin: 0;
  color: rgba(22, 20, 18, 0.72);
}

.faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-aside {
  position: sticky;
  top: 112px;
}

.faq-aside p {
  max-width: 410px;
  margin: 0 0 34px;
  color: rgba(22, 20, 18, 0.58);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.faq-aside .button {
  color: var(--ink);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 2.4vw, 32px) 64px clamp(22px, 2.4vw, 32px) 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.05vw, 2.25rem);
  line-height: 1.16;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "×";
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.faq-item p {
  max-width: 900px;
  margin: -6px 64px clamp(24px, 2.4vw, 34px) 0;
  color: rgba(22, 20, 18, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.contact {
  align-items: start;
  background:
    linear-gradient(rgba(14, 11, 10, 0.9), rgba(14, 11, 10, 0.9)),
    url("assets/optimized/hero-food.jpg") center / cover;
}

.contact h2 {
  color: var(--cream);
}

.contact-intro a {
  color: var(--gold);
  text-decoration: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-actions .button {
  min-width: 150px;
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 14px 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  font: inherit;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 30px 22px;
  background: #0f0c0b;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  box-shadow: 0 16px 36px rgba(157, 52, 88, 0.28);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #8b2c4d, #b94169);
  box-shadow: 0 18px 42px rgba(157, 52, 88, 0.34);
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    background: rgba(16, 13, 11, 0.96);
  }

  .main-nav.is-open {
    display: grid;
  }
}

@media (max-width: 980px) {

  .section-grid,
  .wedding,
  .births,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    position: static;
  }

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

  .portrait-frame {
    justify-self: start;
  }

  .wedding-media,
  .wedding-media img,
  .births-media,
  .births-media img {
    min-height: 520px;
  }

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

  .gallery-modal {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 10px;
  }

  .gallery-arrow {
    width: 46px;
    height: 60px;
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 118px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    padding-inline: 20px;
  }

  .hero-tags {
    gap: 8px 12px;
    font-size: 0.78rem;
  }

  .hero-tags li:not(:last-child)::after {
    margin-left: 12px;
  }

  .story,
  .services,
  .wedding,
  .experiences,
  .births,
  .process,
  .faq,
  .contact,
  .feature-image {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item summary {
    padding-right: 58px;
    font-size: clamp(1.32rem, 6.4vw, 1.8rem);
  }

  .faq-item summary::after {
    width: 36px;
    height: 36px;
  }

  .faq-item p {
    margin-right: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-inline: 14px 18px;
    font-size: 0.68rem;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .wedding-media,
  .wedding-media img,
  .births-media,
  .births-media img {
    min-height: 420px;
  }

  .collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .collage-item.tall,
  .collage-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-modal {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }

  .gallery-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-frame img {
    max-height: 70vh;
  }

  .gallery-prev,
  .gallery-next {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    height: 52px;
  }
}
