/** Shopify CDN: Minification failed

Line 1296:0 Unexpected "}"
Line 1339:65 Unexpected "/"

**/
/* ============================================================
   BAMBOOROLL.CSS
   Shared stylesheet for all BambooRoll pages.
   Load via <link> in layout/theme.liquid.
   ============================================================ */


/* ------------------------------------------------------------
   GOOGLE FONTS
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Karla:wght@300;400;500&display=swap');


/* ------------------------------------------------------------
   RESET
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ------------------------------------------------------------
   BRAND TOKENS
   ------------------------------------------------------------ */
:root {
  --ink:          #1A1A18;
  --paper:        #F7F4EE;
  --bamboo:       #8B6914;
  --bamboo-pale:  #F5EDD8;
  --muted:        #7A776E;
  --line:         rgba(26, 26, 24, 0.11);
}


/* ------------------------------------------------------------
   BASE
   ------------------------------------------------------------ */
body {
  font-family: "Karla", sans-serif;
  background: var(--paper);
  color: var(--ink);
}


/* ------------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------------ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 52px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.br-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}

.br-logo span {
  color: var(--bamboo);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--bamboo);
}


/* ------------------------------------------------------------
   SHARED BUTTONS
   ------------------------------------------------------------ */
.cta {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 38px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: fit-content;
  text-decoration: none;
}

.cta:hover {
  background: var(--bamboo);
}

.nav-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 24px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.nav-btn:hover {
  background: var(--bamboo);
}


/* ------------------------------------------------------------
   SHARED SECTION LABELS + HEADINGS
   ------------------------------------------------------------ */
.section-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo);
  margin-bottom: 20px;
}

.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-h2 em {
  font-style: italic;
  color: var(--bamboo);
}

.section-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 380px;
}

.section-body strong {
  color: var(--ink);
  font-weight: 500;
}


/* ------------------------------------------------------------
   HOMEPAGE — HERO
   ------------------------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  border-bottom: 1px solid var(--line);
}

.hero-left {
  padding: 88px 56px 88px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo);
  margin-bottom: 36px;
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--bamboo);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-proof {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--bamboo);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  display: block;
}

.hero-quote-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 44px;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.92) 0%, transparent 100%);
}

.hero-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(248, 245, 239, 0.82);
  margin-bottom: 16px;
}

.hero-attr {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bamboo);
}

.hero-attr span {
  color: rgba(248, 245, 239, 0.3);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
}


/* ------------------------------------------------------------
   HOMEPAGE — COMPACT SECTION
   ------------------------------------------------------------ */
.compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compact-text {
  padding: 88px 56px 88px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.compact-img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ------------------------------------------------------------
   HOMEPAGE — BEAUTIFUL / MADE TO BE USED SECTION
   ------------------------------------------------------------ */
.beautiful {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.beautiful-img {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.beautiful-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beautiful-text {
  padding: 88px 52px 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}


/* ------------------------------------------------------------
   HOMEPAGE — STORY SECTION
   ------------------------------------------------------------ */
.story {
  padding: 100px 52px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.story-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
}

.story-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}

.story-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 560px;
}

.story-content p strong {
  color: var(--ink);
  font-weight: 500;
}

.story-content p.design-p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 20px;
}


/* ------------------------------------------------------------
   HOMEPAGE — CLAIMS GRID
   ------------------------------------------------------------ */
.claims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.claim {
  padding: 64px 52px;
  border-right: 1px solid var(--line);
}

.claim:last-child {
  border-right: none;
}

.claim-word {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--bamboo);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.claim h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.claim p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}


/* ------------------------------------------------------------
   HOMEPAGE — PROOF / TESTIMONIAL
   ------------------------------------------------------------ */
.proof {
  padding: 96px 52px;
  background: var(--bamboo-pale);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.proof blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 24px;
}

.proof cite {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bamboo);
  font-style: normal;
}

.proof-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}


/* ------------------------------------------------------------
   HOMEPAGE — FAQ
   ------------------------------------------------------------ */
.faq {
  padding: 96px 52px;
  border-bottom: 1px solid var(--line);
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}

.faq-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

.faq-a strong {
  color: var(--ink);
  font-weight: 500;
}


/* ------------------------------------------------------------
   SHARED — PERSONAL PLAN DARK BAND
   ------------------------------------------------------------ */
.personal-plan {
  padding: 64px 52px;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.pp-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo);
}

.pp-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pp-content h3 em {
  font-style: italic;
  color: var(--bamboo);
}

.pp-content p {
  font-size: 14px;
  color: rgba(248, 245, 239, 0.55);
  line-height: 1.8;
  max-width: 480px;
}


/* ------------------------------------------------------------
   SHARED — CLOSER / FOOTER CTA
   ------------------------------------------------------------ */
.closer {
  padding: 140px 52px;
  text-align: center;
}

.closer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closer h2 em {
  font-style: italic;
  color: var(--bamboo);
}

.closer p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}

.closer-meta {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}


/* ------------------------------------------------------------
   PERFORMANCE PAGE — VIDEO HERO
   ------------------------------------------------------------ */
.perf-hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.perf-hero-video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.perf-hero-video__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.perf-hero-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 24, 0.55);
}

.perf-hero-video__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 120px 52px;
  text-align: left;
  align-self: center;
  margin-left: 0;
}

.perf-hero-video__content .perf-hero-tag {
  color: var(--bamboo);
}

.perf-hero-video__content .perf-hero-h1 {
  color: var(--paper);
  font-weight: 400;
}

.perf-hero-video__content .perf-hero-h1 em {
  color: var(--paper);
  font-style: italic;
}
.perf-hero-video__content .hero-result {
  color: var(--paper);
}

.perf-hero-video__content .hero-result::before {
  background: var(--bamboo);
}

.perf-hero-video__content .perf-hero-proof {
  color: rgba(248, 245, 239, 0.6);
}

.perf-hero-video__content .perf-hero-proof::before {
  background: var(--bamboo);
}

@media (max-width: 768px) {
  .perf-hero-video__content {
    padding: 80px 24px;
  }
}


/* ------------------------------------------------------------
   PERFORMANCE PAGE — HERO
   ------------------------------------------------------------ */
.perf-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-bottom: 1px solid var(--line);
}

.perf-hero-left {
  padding: 88px 56px 88px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.perf-hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo);
  margin-bottom: 32px;
}

.perf-hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.perf-hero-h1 em {
  font-style: italic;
  color: var(--bamboo);
}

.hero-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-result {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.hero-result::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bamboo);
  flex-shrink: 0;
}

.perf-hero-proof {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.perf-hero-proof::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--bamboo);
  flex-shrink: 0;
}

.perf-hero-right {
  position: relative;
  overflow: hidden;
  background: #111;
}

.perf-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}


/* ------------------------------------------------------------
   PERFORMANCE PAGE — SPLIT SECTIONS
   ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.split-img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-text {
  padding: 88px 52px 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.split-text.left {
  padding: 88px 56px 88px 52px;
  border-left: none;
  border-right: 1px solid var(--line);
}

.results-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item-label {
  font-weight: 500;
  color: var(--ink);
  min-width: 160px;
}

.result-item-desc {
  color: var(--muted);
  line-height: 1.6;
}


/* ------------------------------------------------------------
   PERFORMANCE PAGE — INSIGHT (DARK)
   ------------------------------------------------------------ */
.insight {
  padding: 100px 52px;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.insight-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo);
  padding-top: 6px;
}

.insight-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 28px;
}

.insight-content h2 em {
  font-style: italic;
  color: var(--bamboo);
}

.insight-content p {
  font-size: 16px;
  color: rgba(248, 245, 239, 0.65);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 560px;
}

.insight-content p strong {
  color: var(--paper);
  font-weight: 500;
}

.insight-content p:last-child {
  margin-bottom: 0;
}


/* ------------------------------------------------------------
   PERFORMANCE PAGE — PLAN CTA BAND
   ------------------------------------------------------------ */
.plan-cta {
  padding: 80px 52px;
  background: var(--bamboo-pale);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.plan-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bamboo);
}

.plan-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.plan-content h3 em {
  font-style: italic;
  color: var(--bamboo);
}

.plan-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 28px;
}


/* ------------------------------------------------------------
   PERFORMANCE PAGE — CLOSER
   ------------------------------------------------------------ */
.perf-closer {
  padding: 120px 52px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.perf-closer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.perf-closer h2 em {
  font-style: italic;
  color: var(--bamboo);
}

.perf-closer p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 44px;
}

.perf-closer-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.back-link {
  display: block;
  margin-top: 32px;
  font-size: 13px;
  color: var(--bamboo);
  text-decoration: none;
  letter-spacing: 0.04em;
}


/* ------------------------------------------------------------
   HOMEPAGE — TESTIMONIAL DARK (YURI)
   ------------------------------------------------------------ */
.br-testimonial-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  min-height: 520px;
  overflow: hidden;
}

.br-testimonial-dark__text {
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.br-testimonial-dark__text blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(248, 245, 239, 0.85);
  margin-bottom: 28px;
}

.br-testimonial-dark__name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bamboo);
}

.br-testimonial-dark__meta {
  font-size: 12px;
  color: rgba(248, 245, 239, 0.35);
  margin-top: 4px;
}

.br-testimonial-dark__photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #0e0e0c;
}

.br-testimonial-dark__photo img {
  height: 110%;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
  position: absolute;
  bottom: -20px;
}


/* ------------------------------------------------------------
   HOMEPAGE — WHY BAMBOOROLL DARK
   ------------------------------------------------------------ */
.br-why-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  min-height: 520px;
}

.br-why-dark__list {
  padding: 80px 56px 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.br-why-dark__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.br-why-dark__item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 16px;
  font-weight: 500;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 16px;
}

.br-why-dark__item:last-child {
  border-bottom: none;
}

.br-why-dark__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bamboo);
  flex-shrink: 0;
}

.br-why-dark__photo {
  position: relative;
  overflow: hidden;
}

.br-why-dark__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}


/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.br-footer {
  padding: 32px 52px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.br-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.br-footer a:hover {
  color: var(--ink);
}

.br-footer-links {
  display: flex;
  gap: 24px;
}


/* ------------------------------------------------------------
   RESPONSIVE — MOBILE
   ------------------------------------------------------------ */
@media (max-width: 768px) {

  nav {
    padding: 18px 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero,
  .perf-hero,
  .compact,
  .beautiful,
  .split,
  .claims,
  .faq-header,
  .faq-item,
  .story,
  .insight,
  .plan-cta,
  .personal-plan {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .perf-hero-left {
    padding: 64px 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-right,
  .perf-hero-right {
    min-height: 360px;
  }

  .compact-text,
  .beautiful-text,
  .split-text,
  .split-text.left {
    padding: 64px 24px;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--line);
  }

  .compact-img,
  .beautiful-img,
  .split-img {
    min-height: 300px;
  }

  .story {
    padding: 64px 24px;
    gap: 32px;
  }

  .insight {
    padding: 64px 24px;
    gap: 32px;
  }

  .plan-cta,
  .personal-plan {
    padding: 64px 24px;
    gap: 32px;
  }

  .faq {
    padding: 64px 24px;
  }

  .faq-header {
    gap: 24px;
    margin-bottom: 32px;
  }

  .faq-item {
    gap: 16px;
  }

  .proof {
    padding: 64px 24px;
  }

  .closer,
  .perf-closer {
    padding: 80px 24px;
  }

  .br-footer {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section-h2 {
    font-size: 32px;
  }

  .br-testimonial-dark,
  .br-why-dark {
    grid-template-columns: 1fr;
  }

  .br-testimonial-dark__text,
  .br-why-dark__list {
    padding: 64px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .br-testimonial-dark__photo {
    min-height: 360px;
  }

  .br-why-dark__photo {
    min-height: 300px;
  }
}

}
.perf-hero-video__cta {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}





.perf-hero-video__top {
  position: absolute;
  bottom: 80px;
  left: 52px;
  right: auto;
  display: flex;
  justify-content: flex-start;
  z-index: 2;
  top: auto;
}

@media (min-width: 768px) {
  .perf-hero-video__top {
    top: 15%;
  }
}
.perf-hero-tagline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 0;
}
 ------------------------------------------------------------
   CUSTOM NAV
   ------------------------------------------------------------ */
.br-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 52px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.br-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.br-nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--ink);
  transition: color 0.2s;
}

.br-nav__link:hover {
  color: var(--bamboo);
}

.br-nav__btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: background 0.2s;
}

.br-nav__btn:hover {
  background: var(--bamboo);
}
@media (max-width: 768px) {
  .br-nav {
    padding: 16px 20px;
  }

  .br-nav__links {
    gap: 16px;
  }

  .br-nav__link {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
.fade-word {
  opacity: 0;
  display: inline-block;
  animation: fadeInWord 0.8s ease forwards;
}

@keyframes fadeInWord {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.perf-hero-tagline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 0;
}

.perf-hero-video__center {
  position: absolute;
  bottom: 80px;
  left: 52px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.perf-hero-tagline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 0;
  line-height: 1.05;
}



.perf-hero-btn:hover {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 768px) {
  .perf-hero-video__center {
    bottom: 60px;
    left: 24px;
    right: 24px;
  }
}

.perf-hero-btn {
  font-family: "Karla", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
 background: #ffffff;
  text-decoration: none;
  border: none;
  padding: 11px 28px;
  border-radius: 50px;
  transition: background 0.2s;
  display: inline-block;
}

