/* ===========================================
   Casa da Ribeira · shared styles (todas as páginas)
   =========================================== */

@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-900.woff2') format('woff2'); font-weight: 400 900; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/general-sans-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/general-sans-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/general-sans-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --pine: #12201a;
  --pine-2: #1a2b22;
  --pine-3: #223429;
  --sand: #ece2cc;
  --sand-dim: rgba(236, 226, 204, 0.6);
  --sand-faint: rgba(236, 226, 204, 0.4);
  --bronze: #cda15f;
  --bronze-soft: #dab976;
  --line: rgba(236, 226, 204, 0.14);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'General Sans', system-ui, sans-serif;
  --pad: clamp(20px, 4vw, 64px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--pine); scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
body { background: var(--pine); color: var(--sand); font-family: var(--sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--bronze); color: var(--pine); }
img { display: block; max-width: 100%; }

/* film grain */
.grain {
  position: fixed; inset: -50%; z-index: 100; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(4) infinite;
}
@keyframes grain { 0%,100%{transform:translate(0,0)} 25%{transform:translate(-2%,1%)} 50%{transform:translate(1%,-2%)} 75%{transform:translate(2%,2%)} }

/* scroll progress */
.scrollbar { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 99; background: linear-gradient(90deg, var(--bronze), var(--bronze-soft)); }

/* nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck, .nav--solid { background: rgba(18, 32, 26, 0.85); backdrop-filter: blur(14px); padding: 14px var(--pad); border-bottom-color: var(--line); }
.nav__logo { font-family: var(--serif); font-size: 1.25rem; letter-spacing: 0.02em; color: var(--sand); text-decoration: none; position: relative; z-index: 70; }
.nav__logo i { font-style: normal; color: var(--bronze); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.nav__cta) {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand-dim); text-decoration: none; transition: color 0.3s;
}
.nav__links a:not(.nav__cta):hover { color: var(--sand); }
.nav__links a.is-active { color: var(--bronze) !important; }
.nav__cta {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pine); background: var(--sand);
  text-decoration: none; padding: 12px 24px; border-radius: 999px;
  transition: background 0.3s, transform 0.3s;
}
.nav__cta:hover { background: var(--bronze); transform: translateY(-1px); }

/* burger + menu mobile */
.nav__burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(18,32,26,0.5); cursor: pointer; position: relative; z-index: 70; }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--sand); margin: 4px auto; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu {
  position: fixed; inset: 0; z-index: 60; background: var(--pine);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
body.menu-open .nav { z-index: 70; background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.menu a { font-family: var(--serif); font-weight: 900; font-size: 1.7rem; color: var(--sand); text-decoration: none; }
.menu a.is-active { color: var(--bronze); }
.menu a.menu__cta { font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; background: var(--bronze); color: var(--pine); padding: 15px 32px; border-radius: 999px; margin-top: 10px; }

/* hero orbit (home) */
.hero { height: 100vh; }
.hero__stage { position: relative; height: 100vh; overflow: hidden; }
#orbitCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(18, 32, 26, 0.78) 100%),
    linear-gradient(to bottom, rgba(18, 32, 26, 0.6) 0%, transparent 24%, transparent 64%, var(--pine) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 5vw; pointer-events: none;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 22px;
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--bronze); opacity: 0.5; }
.hero__title { font-family: var(--serif); font-size: clamp(2.5rem, 7.6vw, 6.2rem); line-height: 1.0; font-weight: 900; text-shadow: 0 10px 60px rgba(0, 0, 0, 0.5); }
.hero__title em { font-style: italic; color: var(--bronze); }
.hero__sub { margin-top: 24px; max-width: 540px; font-size: clamp(0.98rem, 1.3vw, 1.18rem); line-height: 1.6; color: var(--sand-dim); }
.hero__hud {
  position: absolute; left: 0; right: 0; bottom: 26px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--pad);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand-faint);
}
.hero__hud b { color: var(--bronze); font-weight: 500; font-variant-numeric: tabular-nums; }
.hero__scroll { display: inline-flex; align-items: center; gap: 10px; }
.hero__scroll i { width: 1px; height: 26px; background: var(--bronze); display: block; transform-origin: top; animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(0.3);opacity:0.3} 50%{transform:scaleY(1);opacity:1} }

/* subpage hero */
.phero { position: relative; min-height: 54vh; display: flex; align-items: flex-end; overflow: hidden; padding: 150px var(--pad) clamp(46px, 7vh, 80px); }
.phero__bg { position: absolute; inset: 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(18, 32, 26, 0.6) 0%, rgba(18, 32, 26, 0.35) 45%, var(--pine) 96%); }
.phero__inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.phero .kicker { margin-bottom: 14px; }
.phero h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(2.3rem, 5.8vw, 4.6rem); line-height: 1.0; }
.phero h1 em { font-style: italic; color: var(--bronze); }
.phero p { margin-top: 18px; max-width: 560px; color: var(--sand-dim); line-height: 1.65; font-size: clamp(0.98rem, 1.3vw, 1.15rem); }

/* booking bar (home) */
.book {
  position: relative; z-index: 30;
  max-width: 1000px; margin: clamp(-70px, -8vh, -96px) auto 0;
  background: var(--pine-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 2.6vw, 32px);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: clamp(14px, 2vw, 26px);
  align-items: end;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.book label { display: flex; flex-direction: column; gap: 8px; }
.book span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); }
.book input, .book select {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--sand); font-family: var(--sans); font-size: 15px;
  padding: 10px 2px; outline: none;
  appearance: none; -webkit-appearance: none; color-scheme: dark;
  transition: border-color 0.3s;
}
.book input:focus, .book select:focus { border-bottom-color: var(--bronze); }
.book button {
  font-family: var(--sans); font-weight: 500;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--bronze); color: var(--pine);
  border: 0; border-radius: 999px; cursor: pointer;
  padding: 16px 30px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.book button:hover { transform: translateY(-2px); background: var(--bronze-soft); box-shadow: 0 12px 40px rgba(205, 161, 95, 0.4); }

/* trust bar */
.trust {
  max-width: 1080px; margin: clamp(60px, 9vh, 110px) auto 0;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px); text-align: center;
}
.trust__item { border-left: 1px solid var(--line); padding-left: clamp(16px, 2vw, 26px); text-align: left; }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__num { font-family: var(--serif); font-weight: 900; font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--sand); line-height: 1; }
.trust__num em { font-style: normal; color: var(--bronze); }
.trust__lbl { margin-top: 10px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand-dim); }

/* section shell */
.sec { max-width: 1280px; margin: 0 auto; padding: clamp(80px, 13vh, 150px) var(--pad); }
.sec__head { max-width: 760px; }
.sec__head--center { margin: 0 auto; text-align: center; }
.kicker { font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--bronze); margin-bottom: 18px; display: block; }
.sec h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.08; }
.sec h2 em { font-style: italic; color: var(--bronze); }
.sec__lead { margin-top: 20px; font-size: clamp(0.98rem, 1.3vw, 1.16rem); line-height: 1.7; color: var(--sand-dim); }

/* duo (imagem + texto alternado) */
.duo { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4.5vw, 70px); align-items: center; }
.duo + .duo { margin-top: clamp(60px, 10vh, 110px); }
.duo__media { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.duo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.duo:hover .duo__media img { transform: scale(1.05); }
.duo--rev .duo__media { order: 2; }
.duo__body h3 { font-family: var(--serif); font-weight: 900; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.08; }
.duo__body h3 em { font-style: italic; color: var(--bronze); }
.duo__body p { margin-top: 16px; color: var(--sand-dim); line-height: 1.72; font-size: clamp(0.95rem, 1.2vw, 1.08rem); }
.duo__price { margin-top: 20px; font-family: var(--serif); font-weight: 900; font-size: 1.7rem; color: var(--bronze); }
.duo__price small { font-family: var(--sans); font-weight: 400; font-size: 13px; color: var(--sand-dim); }

/* suites (cards home) */
.suites { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(40px, 6vh, 64px); }
.suite { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--pine-2); transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s; }
.suite:hover { transform: translateY(-8px); border-color: rgba(205,161,95,0.5); }
.suite__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.suite__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.suite:hover .suite__media img { transform: scale(1.07); }
.suite__badge { position: absolute; top: 14px; left: 14px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; background: rgba(18,32,26,0.7); backdrop-filter: blur(6px); color: var(--bronze); padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); }
.suite__body { padding: 22px 24px 26px; }
.suite__name { font-family: var(--serif); font-weight: 900; font-size: 1.4rem; }
.suite__feat { margin: 12px 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.suite__feat span { font-size: 11.5px; letter-spacing: 0.06em; color: var(--sand-dim); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }
.suite__row { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; }
.suite__price b { font-family: var(--serif); font-weight: 900; font-size: 1.5rem; color: var(--bronze); }
.suite__price small { color: var(--sand-dim); font-size: 12.5px; }
.suite__link { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); text-decoration: none; border-bottom: 1px solid var(--bronze); padding-bottom: 3px; transition: color 0.3s; }
.suite__link:hover { color: var(--bronze); }

/* experiences */
.exp { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 26px); margin-top: clamp(40px, 6vh, 60px); }
.exp figure { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3 / 4; }
.exp img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.exp figure:hover img { transform: scale(1.07); }
.exp figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; background: linear-gradient(to top, rgba(18, 32, 26, 0.92), transparent); font-family: var(--serif); font-size: 1.3rem; font-weight: 900; }
.exp figcaption small { display: block; margin-top: 5px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); font-weight: 400; }

/* parallax band */
.band { position: relative; height: clamp(340px, 56vh, 560px); overflow: hidden; display: grid; place-items: center; text-align: center; }
.band__img { position: absolute; inset: -18% 0; width: 100%; height: 136%; object-fit: cover; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(12, 22, 17, 0.62); }
.band__inner { position: relative; z-index: 2; padding: 0 var(--pad); max-width: 820px; }
.band__inner h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.1; }
.band__inner h2 em { font-style: italic; color: var(--bronze-soft); }
.band__inner p { margin-top: 18px; color: var(--sand-dim); font-size: clamp(0.98rem, 1.3vw, 1.15rem); }

/* reviews */
.reviews { background: var(--pine-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(40px, 6vh, 60px); }
.rev { border: 1px solid var(--line); border-radius: 14px; padding: 28px; background: var(--pine); }
.rev__stars { color: var(--bronze); letter-spacing: 3px; font-size: 14px; }
.rev blockquote { margin: 16px 0 20px; font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; }
.rev figcaption { font-size: 12.5px; letter-spacing: 0.06em; color: var(--sand-dim); }
.rev figcaption b { color: var(--sand); display: block; font-weight: 500; margin-bottom: 3px; font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(40px, 6vh, 64px); counter-reset: s; }
.stp { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.stp::before { counter-increment: s; content: "0" counter(s); font-family: var(--serif); font-weight: 900; font-size: 2.2rem; color: var(--bronze); position: absolute; top: 20px; }
.stp h3 { margin: 60px 0 12px; font-family: var(--serif); font-weight: 900; font-size: 1.35rem; }
.stp p { color: var(--sand-dim); line-height: 1.65; font-size: 14.5px; }

/* faq */
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--serif); font-weight: 900; font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--bronze); font-family: var(--sans); font-size: 1.5rem; transition: transform 0.3s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding: 0 0 24px; color: var(--sand-dim); line-height: 1.7; max-width: 720px; }

/* final cta */
.cta { text-align: center; }
.cta h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; }
.cta h2 em { font-style: italic; color: var(--bronze); }
.cta p { margin: 20px auto 34px; max-width: 520px; color: var(--sand-dim); line-height: 1.7; }
.cta__btn { display: inline-block; text-decoration: none; font-weight: 500; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; background: var(--bronze); color: var(--pine); padding: 18px 38px; border-radius: 999px; border: 0; cursor: pointer; font-family: var(--sans); transition: transform 0.3s, box-shadow 0.3s, background 0.3s; }
.cta__btn:hover { transform: translateY(-2px); background: var(--bronze-soft); box-shadow: 0 16px 44px rgba(205, 161, 95, 0.4); }

/* booking page */
.bwrap { max-width: 1120px; margin: 0 auto; padding: clamp(36px, 6vh, 70px) var(--pad) clamp(80px, 12vh, 140px); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 3vw, 44px); align-items: start; }
.bform { background: var(--pine-2); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 3vw, 40px); }
.bform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bform label { display: flex; flex-direction: column; gap: 8px; }
.bform label.full { grid-column: 1 / -1; }
.bform span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); }
.bform input, .bform select, .bform textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--sand); font-family: var(--sans); font-size: 15px;
  padding: 10px 2px; outline: none; resize: vertical;
  appearance: none; -webkit-appearance: none; color-scheme: dark;
  transition: border-color 0.3s;
}
.bform input:focus, .bform select:focus, .bform textarea:focus { border-bottom-color: var(--bronze); }
.bform .cta__btn { width: 100%; margin-top: 26px; }
.bform__ok { display: none; text-align: center; padding: clamp(20px, 4vh, 40px) 0; }
.bform__ok h3 { font-family: var(--serif); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--bronze); }
.bform__ok p { margin-top: 14px; color: var(--sand-dim); line-height: 1.7; max-width: 420px; margin-left: auto; margin-right: auto; }
.bform.is-sent .bform__fields { display: none; }
.bform.is-sent .bform__ok { display: block; }
.bsum { position: sticky; top: 100px; background: var(--pine-2); border: 1px solid var(--line); border-radius: 16px; padding: clamp(22px, 2.6vw, 32px); }
.bsum h3 { font-family: var(--serif); font-weight: 900; font-size: 1.35rem; margin-bottom: 20px; }
.bsum__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--sand-dim); }
.bsum__row b { color: var(--sand); font-weight: 500; }
.bsum__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; }
.bsum__total span { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }
.bsum__total b { font-family: var(--serif); font-weight: 900; font-size: 1.9rem; color: var(--bronze); }
.bsum__note { margin-top: 16px; font-size: 12.5px; line-height: 1.6; color: var(--sand-faint); }

/* credit */
.credit { border-top: 1px solid var(--line); padding: clamp(46px, 7vh, 80px) var(--pad); text-align: center; background: var(--pine-2); }
.credit p { font-size: 14px; color: var(--sand-dim); }
.credit a { color: var(--bronze); }
.credit .back { display: inline-block; margin-top: 20px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: 13px 28px; transition: border-color 0.3s, color 0.3s; }
.credit .back:hover { border-color: var(--bronze); color: var(--bronze); }

[data-reveal] { will-change: transform, opacity; }

@media (max-width: 960px) {
  .trust { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .suites, .exp, .reviews__grid, .steps { grid-template-columns: 1fr 1fr; }
  .bwrap { grid-template-columns: 1fr; }
  .bsum { position: static; order: -1; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .book { grid-template-columns: 1fr; margin: -44px var(--pad) 0; }
  .suites, .exp, .reviews__grid, .steps { grid-template-columns: 1fr; }
  .exp figure { aspect-ratio: 16 / 10; }
  .duo { grid-template-columns: 1fr; }
  .duo--rev .duo__media { order: 0; }
  .bform__grid { grid-template-columns: 1fr; }
}
