@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;500;600;700;800;900&family=Butcherman&display=swap');

:root {
  --bg: #110706;
  --bg-alt: #110706;
  --bg-card: #170a08;
  --red: #e8302a;
  --red-dark: #a91d18;
  --white: #f5f3f2;
  --muted: #b9b3b0;
  --line: rgba(255,255,255,0.1);
  --font-head: 'Poppins', sans-serif;
  --font-splat: 'Butcherman', cursive;
  --header-h: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-head);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(232,48,42,.7);
}
.btn-solid:hover { background: var(--red-dark); }

.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover { background: var(--red); color: #fff; }

.btn-outline-blue {
  border-color: #3aa0e8;
  color: #3aa0e8;
  background: transparent;
}
.btn-outline-blue:hover { background: #3aa0e8; color: #041018; }

.btn-outline-light {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #050403;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo img { height: 68px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: .98rem;
  color: var(--white);
  padding-bottom: 8px;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 20px; }

.main-nav .mobile-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero Carousel ---------- */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 600;
  overflow: hidden;
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Dots ride on top of the banner, as in the XD — not on a strip below it. */
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(14px, 1.6vw, 26px);
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: none;
  padding: 0;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  box-shadow: 0 1px 6px rgba(0,0,0,.6);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  padding: 0;
}
.hero-dots button.active { background: var(--red); transform: scale(1.2); }

/* generic page hero (photo right / text left) */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 640px;
  background: linear-gradient(120deg, var(--bg-alt) 0%, var(--bg) 55%);
  overflow: hidden;
}
.split-hero .hero-copy {
  padding: 60px clamp(24px, 6vw, 90px);
  position: relative;
  z-index: 2;
}
.split-hero .hero-photo { height: 100%; }
.split-hero .hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 640px;
}
.split-hero.reverse { grid-template-columns: 1fr 1fr; }
.split-hero.reverse .hero-photo { order: -1; }

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 14px;
  display: block;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.6rem; }

.accent { color: var(--red); }

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 22px 0 30px;
  max-width: 46ch;
}

/* ---------- Page-specific layouts extracted from the XD ---------- */
.home-origin {
  display: block;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  isolation: isolate;
  background: #080403;
}
.home-origin .hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.home-origin .hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,4,3,.98) 0%, rgba(8,4,3,.92) 34%, rgba(8,4,3,.5) 55%, rgba(8,4,3,.12) 76%, rgba(8,4,3,.08) 100%),
    /* long dissolve into the page background (the band below is --bg, not #000,
       so the burger further down still has a black edge to break over) */
    linear-gradient(0deg, #110706 0%, rgba(17,7,6,.97) 9%, rgba(17,7,6,.88) 17%, rgba(17,7,6,.6) 28%, rgba(17,7,6,.28) 40%, transparent 54%);
}
.home-origin .hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.home-origin .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 810px);
  min-height: calc(100svh - var(--header-h));
  padding: clamp(60px, 8vw, 132px) clamp(24px, 7vw, 132px);
}
.home-origin .hero-copy h2 { max-width: 16ch; }
/* the copy column is a flex column, so the CTA would stretch full width */
.home-origin .hero-copy .btn { align-self: flex-start; }
/* ---------- Home food showcase ---------- */
/* The composition is one continuous scene: the wine band ends behind the
   product, while the serving board carries over the textured black area. */
.food-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}
.food-showcase-intro {
  height: clamp(170px, 19.54vw, 290px);
  padding: clamp(72px, 7vw, 100px) 24px 0;
  background: var(--bg);
}
.food-showcase-intro h2 {
  font-size: clamp(1.5rem, 2vw, 2.4rem);
}
.food-showcase-image {
  position: absolute;
  z-index: 1;
  top: clamp(108px, 10vw, 155px);
  left: 50%;
  width: min(58vw, 900px);
  max-width: none;
  transform: translateX(-50%);
}
.food-showcase-copy {
  position: relative;
  z-index: 2;
  padding: clamp(188px, 16vw, 306px) 24px 33px;
}
.food-showcase-copy h2 {
  width: min(100%, 650px);
  margin: 0 auto;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.04;
}
.food-showcase-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}
.food-showcase-actions .btn {
  min-height: 32px;
  padding: 5px 17px;
  border-width: 1px;
  font-size: .82rem;
}
.food-showcase-actions p {
  margin-top: 20px;
  color: #8d8988;
  font-size: .84rem;
}

/* ---------- Home "Os Monstros" teaser ---------- */
/* Mosaic runs large, bleeds off the right edge and past the bottom of the
   section, which then fades to black. */
.section.monsters-teaser {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 150px) 0 0;
  min-height: clamp(520px, 46vw, 760px);
  display: flex;
  align-items: center;
}
.monsters-teaser .teaser-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  margin-bottom: 6px;
}
.monsters-teaser .teaser-copy .lead { font-size: clamp(1rem, 1.2vw, 1.15rem); }
.monsters-teaser .feature-row {
  width: 100%;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(20px, 3vw, 50px);
  align-items: center;
}
.monsters-teaser .teaser-copy { position: relative; z-index: 2; }
/* No bleed: the section clips overflow, so any negative margin here chopped
   the diamonds off at the right edge. The mosaic sits whole in its column. */
.monsters-teaser .teaser-art {
  align-self: center;
  margin: 0;
}
.monsters-teaser .teaser-art img {
  width: 100%;
  max-width: none;
  border-radius: 0;
}
.on-black { background: #000; }

.page-hero {
  min-height: clamp(390px, 39vw, 620px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background-color: #070606;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-hero .container {
  width: 100%;
  padding-top: 84px;
  padding-bottom: clamp(48px, 6vw, 120px);
}
.page-hero h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 6.3vw, 6.4rem);
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.lojas-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.36) 40%, rgba(0,0,0,.08) 100%),
    url('../img/lojas-hero-storefront.jpg');
}
/* Artboard runs 1920x988 with the forest dissolving into flat black well
   before the headline — long, multi-stop fade rather than a hard cut. */
.monsters-hero {
  min-height: clamp(560px, 51.5vw, 990px);
  background-image:
    linear-gradient(180deg,
      rgba(17,7,6,0) 0%,
      rgba(17,7,6,.06) 30%,
      rgba(17,7,6,.34) 45%,
      rgba(17,7,6,.72) 58%,
      rgba(17,7,6,.93) 70%,
      #110706 82%,
      #110706 100%),
    url('../img/monstros-hero-forest.jpg?v=4');
  background-position: center, center top;
  background-size: 100% 100%, cover;
}
.monsters-hero .container {
  padding-top: clamp(300px, 30vw, 575px);
  padding-bottom: clamp(48px, 5vw, 90px);
}
.monsters-hero h1 { margin-bottom: 26px; }
.monsters-intro { max-width: 850px; }
.monsters-intro p {
  max-width: 78ch;
  color: var(--muted);
  font-size: clamp(.92rem, 1.25vw, 1.08rem);
  margin: 0 0 16px;
}
.monsters-intro .monsters-intro-emphasis { color: #fff; font-weight: 700; margin-bottom: 0; }

.menu-hero {
  min-height: 760px;
  display: block;
  isolation: isolate;
  background:
    radial-gradient(ellipse 68% 90% at 96% 38%, rgba(83,23,28,.25), transparent 72%),
    linear-gradient(90deg, #130807 0%, #130807 46%, #170806 74%, #100606 100%);
}
.menu-hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(58px, 6vw, 118px);
  background: #fff;
  clip-path: polygon(
    0 35%, 3% 28%, 6% 39%, 10% 25%, 14% 45%, 18% 31%, 22% 43%, 26% 23%,
    30% 38%, 35% 27%, 39% 44%, 44% 29%, 49% 40%, 54% 24%, 59% 42%, 64% 30%,
    69% 46%, 74% 28%, 79% 40%, 84% 24%, 89% 43%, 94% 29%, 97% 38%, 100% 26%,
    100% 100%, 0 100%
  );
}
.menu-hero .hero-copy {
  position: absolute;
  top: 50%; left: 0;
  width: min(54%, 790px);
  transform: translateY(-50%);
  padding-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
}
.menu-hero .hero-photo {
  position: absolute;
  z-index: 1;
  top: 0; right: 0; bottom: 0;
  width: 56%;
}
/* The photo is a cut-out PNG now, so it needs no blend overlay — the old
   gradient painted a visible rectangle over the torn white band below. */
.menu-hero .hero-photo img {
  min-height: 0;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.page-lojas .section-alt {
  background:
    radial-gradient(ellipse 70% 75% at 0% 40%, #35120d 0%, rgba(17,7,6,0) 62%),
    radial-gradient(ellipse 60% 65% at 100% 60%, #220d0a 0%, rgba(17,7,6,0) 60%),
    var(--bg-alt);
}
.page-monstros .section-tight {
  background: linear-gradient(180deg, #110706 0%, #080505 100%);
  padding-top: 88px;
}
.page-monstros .section-tight .lead { max-width: 76ch; }

/* full-bleed image hero with heading band below — the XD artboard runs the
   photo at 1920x617 and drops a flat black band under it. */
.bleed-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920 / 617;
  object-fit: cover;
}
.bleed-hero-caption {
  background: #0c0504;
  padding: clamp(46px, 5vw, 84px) 0 clamp(40px, 4.5vw, 76px);
}
.bleed-hero-caption h1 { font-size: clamp(2.6rem, 6.1vw, 7.2rem); max-width: none; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-card { background: var(--bg-card); }

/* form section — wine glow bleeding in from the left, as in the mockup */
.form-section {
  background:
    radial-gradient(ellipse 60% 78% at 2% 48%, #4a1410 0%, #2a0907 38%, rgba(12,5,4,0) 72%),
    #0c0504;
}

/* ---------- Franqueado: hero with overlaid copy ---------- */
.franchise-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  /* Mockup runs the hero at roughly 2.19:1 (width ÷ height) */
  min-height: clamp(430px, 45.7vw, 760px);
  overflow: hidden;
  background: #0c0504;
}
.franchise-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.franchise-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,4,3,.95) 0%, rgba(8,4,3,.86) 32%, rgba(8,4,3,.45) 56%, rgba(8,4,3,.1) 80%, transparent 100%),
    linear-gradient(0deg, rgba(12,5,4,.9) 0%, transparent 42%);
}
.franchise-hero-content { width: 100%; }
.franchise-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  max-width: 18ch;
  text-transform: uppercase;
}
.franchise-hero p {
  color: var(--muted);
  max-width: 54ch;
  margin-top: 22px;
  font-size: clamp(.92rem, 1.15vw, 1.05rem);
}

/* ---------- Franqueado: red metrics band ---------- */
/* Elliptical radii (50% horizontal / fixed vertical) bow the top and bottom
   edges outward — that is the arc in the mockup, not four rounded corners. */
/* The arcs are two overflowing ellipses, not border-radius. A percentage
   horizontal radius flattens as the viewport widens and leaves a visible
   vertex where the two curves meet; ellipses keep the same bow at any width. */
.growth-band {
  background: var(--red);
  color: #fff;
  padding: clamp(54px, 6vw, 96px) 0 clamp(58px, 6.4vw, 104px);
  position: relative;
  isolation: isolate;
  z-index: 2;
  text-align: center;
}
.growth-band::before,
.growth-band::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  height: clamp(30px, 3.4vw, 64px);
  background: inherit;
  border-radius: 50%;
}
.growth-band::before { top: 0; transform: translateY(-50%); }
.growth-band::after { bottom: 0; transform: translateY(50%); }
.growth-band h2 {
  font-size: clamp(1.3rem, 2.5vw, 2.25rem);
  margin-bottom: clamp(34px, 4vw, 64px);
  text-transform: uppercase;
}
.growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 56px);
}
/* Icon stacked above the copy, whole item centred — as in the mockup. */
.growth-metrics li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.growth-icon {
  width: clamp(44px, 4.2vw, 62px);
  height: clamp(44px, 4.2vw, 62px);
  color: #fff;
  flex-shrink: 0;
}
.growth-label { font-weight: 700; font-size: clamp(.95rem, 1.32vw, 1.24rem); line-height: 1.25; }
.growth-value { font-weight: 800; font-size: clamp(1rem, 1.42vw, 1.34rem); margin-top: 0; }
.growth-value small { font-weight: 500; opacity: .85; font-size: .8em; }

/* ---------- Franqueado: horror-font divider ---------- */
.talk-band {
  background: var(--bg);
  padding: clamp(70px, 8vw, 140px) 24px clamp(20px, 2.5vw, 44px);
  text-align: center;
}
.talk-band h2 {
  color: #6b4a5e;
  font-weight: 400;
  font-size: clamp(2.2rem, 6.4vw, 8.6rem);
  letter-spacing: .03em;
  line-height: 1;
}

.expansion-closing { background: var(--bg); }

/* ---------- Franqueado: compact reference composition ---------- */
/* This page uses a tighter editorial grid than the other marketing pages:
   it preserves the intended visual hierarchy at wide desktop widths without
   allowing the form and metric panel to feel diluted. */
.page-franqueado {
  background: #0c0504;
}
.page-franqueado .site-header {
  height: 70px;
}
.page-franqueado .logo img { height: 48px; }
.page-franqueado .main-nav { gap: clamp(20px, 2.4vw, 42px); }
.page-franqueado .main-nav a { font-size: .82rem; }
.page-franqueado .header-actions .btn {
  padding: 11px 21px;
  font-size: .76rem;
}
.page-franqueado .franchise-hero {
  min-height: clamp(470px, 41vw, 790px);
}
.page-franqueado .franchise-hero::before {
  background:
    linear-gradient(90deg, rgba(9,4,3,.98) 0%, rgba(9,4,3,.93) 27%, rgba(9,4,3,.68) 48%, rgba(9,4,3,.14) 74%, rgba(9,4,3,0) 100%),
    linear-gradient(0deg, rgba(12,5,4,.85) 0%, transparent 36%);
}
.page-franqueado .franchise-hero-content {
  max-width: 1280px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-franqueado .franchise-hero h1 {
  max-width: 11ch;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(3.2rem, 5.25vw, 6.25rem);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: .93;
}
.page-franqueado .franchise-hero p {
  max-width: 48ch;
  margin-top: 26px;
  color: rgba(255,255,255,.83);
  font-size: clamp(.94rem, 1.12vw, 1.18rem);
  line-height: 1.55;
}
.page-franqueado .growth-band {
  padding: clamp(64px, 6.2vw, 105px) 0 clamp(78px, 7.4vw, 124px);
}
.page-franqueado .growth-band::before { display: none; }
.page-franqueado .growth-band::after {
  left: -4%;
  right: -4%;
  height: clamp(40px, 4.2vw, 78px);
  border-radius: 0 0 50% 50%;
}
.page-franqueado .growth-band h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: .012em;
  margin-bottom: clamp(42px, 4.4vw, 74px);
}
.page-franqueado .growth-metrics {
  max-width: 1110px;
  margin-inline: auto;
}
.page-franqueado .growth-metrics li { gap: 10px; }
.page-franqueado .growth-icon {
  width: clamp(38px, 3.3vw, 54px);
  height: clamp(38px, 3.3vw, 54px);
}
.page-franqueado .growth-label {
  font-size: clamp(.88rem, 1.18vw, 1.12rem);
}
.page-franqueado .growth-value {
  font-size: clamp(.94rem, 1.24vw, 1.18rem);
}
.page-franqueado .talk-band {
  padding: clamp(102px, 10vw, 172px) 24px clamp(34px, 3.5vw, 62px);
  background: linear-gradient(180deg, #110706 0%, #100605 76%, #190605 100%);
}
.page-franqueado .talk-band h2 {
  color: #7d526d;
  font-size: clamp(3rem, 6.5vw, 7.7rem);
}
.page-franqueado .form-section {
  padding: clamp(34px, 4.1vw, 72px) 0 clamp(82px, 8vw, 142px);
  background:
    radial-gradient(ellipse 58% 90% at 0% 42%, #531812 0%, #260907 48%, rgba(12,5,4,0) 76%),
    #0c0504;
}
.page-franqueado .franchise-form-layout {
  grid-template-columns: minmax(0, 580px) minmax(300px, 460px);
  justify-content: center;
  gap: clamp(56px, 8vw, 148px);
  max-width: 1310px;
  padding-left: 0;
}
.page-franqueado .form-card {
  border-radius: 13px;
  padding: clamp(34px, 3.4vw, 54px);
  box-shadow: 0 16px 52px rgba(0,0,0,.28);
}
.page-franqueado .form-card h2 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.04;
}
.page-franqueado .form-heading-spacer { height: 20px; }
.page-franqueado .form-group { margin-bottom: 17px; }
.page-franqueado .form-group label { margin-bottom: 6px; font-size: .84rem; }
.page-franqueado .form-group input,
.page-franqueado .form-group select {
  padding: 11px 13px;
  border-radius: 6px;
  font-size: .9rem;
}
.page-franqueado .checkbox-row { margin: 4px 0 12px; font-size: .78rem; }
.page-franqueado .consent-text { margin-bottom: 22px; font-size: .7rem; }
.page-franqueado .form-card .btn {
  min-width: 110px;
  padding: 9px 22px;
  border-width: 1px;
  font-size: .82rem;
}
.page-franqueado .franchise-form-layout .form-art img { max-width: 455px; }
.page-franqueado .franchise-form-layout .form-art {
  justify-content: center;
  transform: none;
}
.page-franqueado .expansion-closing {
  padding: clamp(68px, 7vw, 116px) 0 clamp(78px, 8vw, 132px);
  background: #0c0504;
}
.page-franqueado .expansion-closing h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.25vw, 3.85rem);
}
.page-franqueado .expansion-copy {
  max-width: 94ch;
  margin: 18px 0 0;
  font-size: clamp(.9rem, 1.08vw, 1.12rem);
}
.page-franqueado .expansion-copy-strong { color: #fff; font-weight: 700; }
.page-franqueado .site-footer {
  padding: 64px 0 26px;
  background: #000;
}

@media (max-width: 1120px) {
  .page-franqueado .site-header { height: var(--header-h); }
  .page-franqueado .logo img { height: 68px; }
  .page-franqueado .franchise-hero-content { padding-top: 0; padding-bottom: 0; }
  .page-franqueado .franchise-form-layout {
    grid-template-columns: minmax(0, 580px);
    gap: 46px;
  }
  .page-franqueado .franchise-form-layout .form-art { max-width: 430px; }
}

@media (max-width: 560px) {
  .page-franqueado .franchise-hero {
    min-height: 470px;
    align-items: flex-end;
  }
  .page-franqueado .franchise-hero-photo { object-position: 69% center; }
  .page-franqueado .franchise-hero-content { padding-bottom: 48px; }
  .page-franqueado .franchise-hero h1 { font-size: clamp(3.2rem, 13vw, 4.5rem); }
  .page-franqueado .growth-band { padding-top: 58px; }
  .page-franqueado .talk-band { padding-top: 98px; }
  .page-franqueado .talk-band h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .page-franqueado .form-section { padding-top: 34px; }
  .page-franqueado .form-card { padding: 30px 22px; }
  .page-franqueado .expansion-closing h2 { font-size: 2rem; }
}

/* light section — matches the white bands in the original design */
.section-light { background: #fff; color: #111; }
.section-light h1,
.section-light h2,
.section-light h3 { color: #111; }
.section-light .lead { color: #444; }
.section-light img { border-radius: 0; }

.text-center { text-align: center; }
.section-title { max-width: 760px; }
.section-title.center { margin: 0 auto 50px; text-align: center; }

/* ---------- Product / feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row img { border-radius: 18px; }
.feature-row.reverse > *:first-child { order: 2; }

.bullet-list { margin: 20px 0 30px; }
.bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 600;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Monster carousel ---------- */
.monster-carousel {
  position: relative;
  background: linear-gradient(180deg, #110706 0%, #070303 9%, #050303 100%);
  padding: clamp(30px, 4vw, 56px) 0 clamp(40px, 5vw, 70px);
  overflow: hidden;
}
.monster-stage {
  position: relative;
  min-height: clamp(460px, 47vw, 760px);
  isolation: isolate;
}
/* Each monster is a full-stage layer; only the centred one shows its copy. */
.monster-item {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Every slot is expressed with the same properties (left % + translate/scale)
   so the browser can interpolate between them — mixing `left` and `right`
   made the slide jump instead of animating. */
.monster-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 84%;
  width: auto;
  max-width: none;
  object-fit: contain;
  transform-origin: bottom center;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.65));
  will-change: left, transform, opacity, filter;
  transition: left 1.15s cubic-bezier(.16,1,.3,1),
              transform 1.15s cubic-bezier(.16,1,.3,1),
              opacity .8s cubic-bezier(.22,1,.36,1),
              filter .95s cubic-bezier(.22,1,.36,1);
}
.monster-item[data-pos="center"] .monster-figure {
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
}
.monster-item[data-pos="left"] .monster-figure,
.monster-item[data-pos="right"] .monster-figure {
  opacity: .85;
  z-index: 1;
  filter: brightness(.4) saturate(.5);
}
.monster-item[data-pos="left"] .monster-figure { left: 9%; transform: translateX(-50%) scale(.68); }
.monster-item[data-pos="right"] .monster-figure { left: 91%; transform: translateX(-50%) scale(.68); }
/* Applied for one frame while a figure teleports from one edge slot to the
   other, so the wrap-around never streaks across the stage. */
.monster-figure.is-wrapping { transition: none !important; opacity: 0 !important; }

.monster-name {
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.1;
  transition: opacity .55s ease;
}
.monster-item:not([data-pos="center"]) .monster-name { opacity: 0; visibility: hidden; }

.monster-arrow {
  position: absolute;
  /* Sits below the quote block — at the old height it landed on the bullets. */
  top: 62%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(46px, 4.4vw, 68px);
  height: clamp(46px, 4.4vw, 68px);
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: color .25s ease, transform .25s ease;
}
.monster-arrow:hover { color: var(--red); }
.monster-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}
.monster-arrow.prev { left: 24%; }
.monster-arrow.next { right: 24%; }
.monster-arrow.prev span { transform: rotate(135deg); }
.monster-arrow.next span { transform: rotate(-45deg); }
.monster-arrow:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; border-radius: 10px; }

@media (prefers-reduced-motion: reduce) {
  .monster-figure,
  .monster-carousel.is-ready .monster-figure,
  .monster-name,
  .monster-carousel.is-ready .monster-name,
  .monster-tagline,
  .monster-facts,
  .monster-bio,
  .monster-carousel.is-ready .monster-bio { transition: none; }
}

/* Bios sit under the stage and swap with the centred monster, as in the XD. */
.monster-bios {
  --monster-bio-top: clamp(28px, 3.5vw, 56px);
  --monster-bio-height: 0px;
  position: relative;
  min-height: calc(var(--monster-bio-top) + var(--monster-bio-height));
  padding-top: var(--monster-bio-top);
}
.monster-bio {
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  gap: 28px;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.monster-bio:not(.is-active) {
  position: absolute;
  top: var(--monster-bio-top);
  right: 0;
  left: 0;
  pointer-events: none;
}
.monster-bio.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s;
}

.monster-profile {
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  gap: 28px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.monster-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ff5fa8, #ffd23f, #ff5fa8);
}
.monster-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.monster-profile .handle,
.monster-bio .handle { font-weight: 800; font-size: 1.2rem; margin-bottom: 12px; }
.monster-profile p,
.monster-bio p { color: var(--muted); margin-bottom: 14px; }
.follow-btn {
  background: #2a2321;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 700;
  border: none;
  color: #fff;
  cursor: pointer;
  height: fit-content;
}

/* ---------- Reviews ---------- */
/* Google review strip — text only, no reviewer photo grids.
   The track holds two identical sets, so translating it by exactly half its
   width lands on the duplicate and the loop reads as continuous. */
.reviews-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 46s linear infinite;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

.review-card {
  flex: 0 0 clamp(270px, 24vw, 380px);
  background: #1c1c1c;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card > p { color: #d6d1cf; font-size: .96rem; }
.review-name { font-weight: 700; font-size: 1rem; color: #fff; }
.review-meta { font-size: .8rem; color: #8d8785; margin-top: auto; }
.stars { color: #f5c518; font-size: 1.15rem; letter-spacing: 3px; }
.stars .star-dim { color: #5a5550; }

.review-score {
  flex: 0 0 clamp(420px, 40vw, 620px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
}
.review-score-figure { text-align: center; }
.review-score .num { font-size: clamp(3rem, 5vw, 4.6rem); font-weight: 800; line-height: 1; }
.review-score-figure .stars { display: block; margin-top: 10px; }
.review-count { color: var(--muted); margin-top: 8px; font-size: .95rem; }
.review-quotes { display: grid; gap: 18px; }
.quote-item p { font-size: .95rem; color: #d6d1cf; }
.quote-item b { color: #fff; }
.quote-item .stars { font-size: .85rem; letter-spacing: 2px; margin-top: 4px; }

/* ---------- Instagram CTA ---------- */
.insta-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.insta-ring {
  width: 150px; height: 150px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 180deg, #feda75, #d62976, #962fbf, #4f5bd5, #feda75);
  flex-shrink: 0;
}
.insta-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.insta-handle { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; }
.insta-stats { color: var(--muted); margin-top: 10px; }
.insta-stats b { color: #fff; }

/* ---------- Locations ---------- */
.locations-city { text-align: center; margin: 60px 0 30px; }
.locations-row { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }

/* ---------- Form ---------- */
.form-card {
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: clamp(30px, 3.4vw, 56px);
}
.form-card h2 { color: #111; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .95rem; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #e9e9e9;
  font-family: inherit;
  font-size: 1rem;
}
.form-group select { color: #111; cursor: pointer; }
.form-group input:focus,
.form-group select:focus { outline: 2px solid var(--red); background: #fff; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.checkbox-row input { margin-top: 4px; }
.consent-text { font-size: .82rem; color: #555; margin-bottom: 28px; }
.consent-text b { color: #111; }
.form-status { margin-top: 18px; color: #555; font-size: .9rem; }
/* In the XD the card takes ~61% of the content band and the claw bleeds off the
   right edge of the viewport, so the image column escapes the container. */
/* Mockup insets the whole form block ~20% from the left and stops the claw
   near the right edge, so the block is narrower than the page container. */
.franchise-form-layout {
  display: grid;
  grid-template-columns: 58fr 34fr;
  gap: 8%;
  align-items: center;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0px, 6vw, 110px);
}
/* The claw sits whole beside the card in the current mockup — no bleed, no
   crop. (The older artboard had it running off the right edge.) */
.franchise-form-layout .form-art { display: flex; justify-content: center; }
.franchise-form-layout .form-art img { width: 100%; max-width: 520px; }
.form-card .btn { display: flex; width: fit-content; margin-inline: auto; }
.form-card .form-status { text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: #050403; padding: 70px 0 30px; text-align: center; }
.site-footer .logo { display: inline-flex; margin-bottom: 30px; }
.site-footer .logo img { height: 56px; }
.footer-nav {
  display: grid;
  gap: 14px;
  font-weight: 600;
  margin-bottom: 40px;
}
.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 10px;
}
.footer-nav a:hover { color: var(--red); }
.footer-nav .dot { color: var(--red); opacity: .6; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .85rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 16px; }

/* ---------- Back to top ---------- */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  margin: 20px auto 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- Splat / horror display font utility ---------- */
.splat { font-family: var(--font-splat); font-weight: 400; letter-spacing: .02em; }

.divider-quote {
  text-align: center;
  padding: 70px 20px;
  font-family: 'Poppins', serif;
  font-style: italic;
  font-weight: 700;
  color: #d99a3d;
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.divider-quote cite {
  display: block;
  font-size: 1rem;
  margin-top: 16px;
  font-style: normal;
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .container { padding: 0 24px; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #050403;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .header-actions .btn-solid { display: none; }
  .main-nav .mobile-cta { display: block; margin-top: 12px; }
  .nav-toggle { display: flex; }

  .split-hero, .split-hero.reverse { grid-template-columns: 1fr; min-height: auto; }
  .split-hero .hero-photo { order: 2 !important; height: 320px; }
  .split-hero .hero-photo img { min-height: 320px; }
  .split-hero .hero-copy { padding: 50px 24px 40px; }

  .home-origin {
    min-height: calc(100svh - var(--header-h));
    display: block;
  }
  .home-origin .hero-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 700px);
    min-height: calc(100svh - var(--header-h));
    padding: clamp(50px, 10vw, 90px) 24px;
  }
  .home-origin .hero-photo {
    position: absolute;
    inset: 0;
    order: initial !important;
    width: 100%;
    height: 100%;
  }
  .home-origin .hero-photo img {
    min-height: 0;
    height: 100%;
    object-position: 65% center;
  }
  .home-origin .hero-photo::after {
    background:
      linear-gradient(90deg, rgba(8,4,3,.96) 0%, rgba(8,4,3,.76) 49%, rgba(8,4,3,.2) 100%),
      linear-gradient(0deg, #110706 0%, rgba(17,7,6,.95) 9%, rgba(17,7,6,.62) 22%, rgba(17,7,6,.26) 34%, transparent 48%);
  }

  .hero-carousel {
    aspect-ratio: auto;
    min-height: 300px;
    height: min(56svh, 480px);
  }
  .hero-slide img { object-position: center; }

  .page-hero { min-height: 420px; }
  .page-hero .container { padding: 110px 24px 54px; }
  .monsters-hero { min-height: 650px; }
  .monsters-hero .container { padding-top: clamp(255px, 44vw, 410px); padding-bottom: 54px; }
  .menu-hero {
    display: grid;
    min-height: auto;
  }
  .menu-hero .hero-copy {
    position: relative;
    top: auto; left: auto;
    width: auto;
    transform: none;
    padding: 50px 24px 40px;
  }
  .menu-hero .hero-photo {
    position: relative;
    top: auto; right: auto; bottom: auto;
    order: 2 !important;
    width: 100%; height: 420px;
  }
  .menu-hero .hero-photo img {
    object-fit: contain;
    object-position: center bottom;
  }

  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.reverse > *:first-child { order: 0; }

  .review-score { grid-template-columns: 1fr; gap: 22px; flex-basis: clamp(300px, 78vw, 460px); }

  /* Side monsters would be mostly off-screen on narrow viewports — drop them
     and let the copy sit above the centred figure. */
  .monster-stage { min-height: 640px; }
  .monster-item[data-pos="left"] .monster-figure,
  .monster-item[data-pos="right"] .monster-figure { opacity: 0; }
  .monster-item[data-pos="center"] .monster-figure { height: 58%; }
  .monster-bio { grid-template-columns: 90px 1fr; }
  .monster-bio .follow-btn { grid-column: 2; width: fit-content; }
  .monster-arrow { top: auto; bottom: 6px; transform: none; }
  .monster-arrow.prev { left: 4%; }
  .monster-arrow.next { right: 4%; }

  .monster-profile { grid-template-columns: 90px 1fr; }
  .monster-profile .follow-btn { grid-column: 2; width: fit-content; }
  .insta-cta { text-align: center; justify-content: center; }
  .footer-meta { justify-content: center; text-align: center; }
  .franchise-hero { min-height: 420px; }
  .franchise-hero h1 { max-width: none; }
  .growth-band { border-radius: 50% / 12px; }
  .growth-metrics { grid-template-columns: 1fr; gap: 26px; justify-items: center; }
  .growth-metrics li { justify-content: start; }

  .franchise-form-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .franchise-form-layout .form-art { max-width: 480px; margin: 0 auto; overflow: visible; }
  .franchise-form-layout .form-art img { width: 100%; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .btn { padding: 14px 24px; font-size: .92rem; }
  .review-score .num { font-size: 3rem; }
  .monster-avatar { width: 90px; height: 90px; }
  .page-hero { min-height: 360px; }
  .page-hero h1 { font-size: 3rem; }
  .monsters-hero { min-height: 600px; }
  .monsters-hero .container { padding-top: 230px; padding-bottom: 44px; }
  .monsters-hero h1 { margin-bottom: 18px; }
  .monsters-intro p { font-size: .84rem; margin-bottom: 12px; }
  .home-origin,
  .home-origin .hero-copy { min-height: calc(100svh - var(--header-h)); }
  .home-origin .hero-copy { padding: 48px 24px; }
  .home-origin .hero-copy h2 { max-width: 13ch; }
  .home-origin .hero-copy .lead { font-size: 1rem; }
  .hero-carousel { min-height: 260px; height: 48svh; }
  .monster-stage { min-height: 560px; }
  .monster-item[data-pos="center"] .monster-figure { height: 50%; }
  .form-card { padding: 30px 22px; }

  .food-showcase-intro {
    height: 132px;
    padding: 38px 16px 0;
  }
  .food-showcase-intro h2,
  .food-showcase-copy h2 { font-size: 1.5rem; }
  .food-showcase-image {
    top: 74px;
    width: 94vw;
  }
  .food-showcase-copy {
    padding: max(118px, calc(42vw - 12px)) 16px 38px;
  }
  .food-showcase-copy h2 br { display: none; }
}

/* Keep the two-column Monstros preview at tablet widths, matching the
   reference composition instead of collapsing it before the viewport needs it. */
@media (min-width: 680px) and (max-width: 1120px) {
  .monsters-teaser .container {
    max-width: 680px;
    padding-inline: 0;
  }
  .monsters-teaser .feature-row {
    grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
    gap: 0;
  }
}

/* Keep the franchise composition deliberate when the shared mobile rules
   above collapse the rest of the site. */
@media (max-width: 1120px) {
  .page-franqueado .franchise-hero {
    min-height: clamp(470px, 60vw, 640px);
  }
  .page-franqueado .growth-band { border-radius: 0; }
  .page-franqueado .growth-band::after {
    left: -8%;
    right: -8%;
  }
}

@media (max-width: 560px) {
  .page-franqueado .franchise-hero { min-height: 470px; }
  .page-franqueado .franchise-hero-content { padding-bottom: 48px; }
  .page-franqueado .growth-band { padding-top: 58px; }
  .page-franqueado .talk-band { padding-top: 98px; }
  .page-franqueado .form-section { padding-top: 34px; }
}

/* One continuous scene holds the title and form. The gentle black arc is the
   top edge of this scene, so there is no visible colour seam before the form. */
.page-franqueado .growth-band::after { display: none; }
.page-franqueado .franchise-contact-scene {
  --contact-arc: clamp(52px, 3.8vw, 72px);
  position: relative;
  isolation: isolate;
  z-index: 3;
  margin-top: calc(-1 * var(--contact-arc));
  overflow: hidden;
}
.page-franqueado .franchise-contact-scene::before,
.page-franqueado .franchise-contact-scene::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.page-franqueado .franchise-contact-scene::before {
  inset: 0 0 auto;
  height: var(--contact-arc);
  background: radial-gradient(ellipse 68% 100% at 50% 100%, #100706 99.5%, transparent 100%);
}
.page-franqueado .franchise-contact-scene::after {
  inset: var(--contact-arc) 0 0;
  background:
    radial-gradient(ellipse 76% 72% at -8% 68%, #42130f 0%, #250906 46%, rgba(12,5,4,0) 78%),
    linear-gradient(180deg, #100706 0%, #0c0605 52%, #090504 100%);
}
.page-franqueado .talk-band {
  margin-top: 0;
  padding: clamp(100px, 7.1vw, 136px) 24px clamp(42px, 3.4vw, 62px);
  background: transparent;
  border-radius: 0;
}
.page-franqueado .talk-arc-title {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}
.page-franqueado .talk-arc-title .arc-char {
  display: inline-block;
  transform: translateY(var(--arc-y)) rotate(var(--arc-r));
  transform-origin: bottom center;
}
.page-franqueado .talk-arc-title .arc-space { width: .28em; }
.page-franqueado .form-section {
  background: transparent;
}

/* The form and pen illustration share one intentional two-column composition:
   the card owns the left half while the hand sits flush on the right edge. */
.page-franqueado .franchise-form-layout {
  grid-template-columns: 46fr 44fr;
  gap: 10%;
  align-items: center;
  max-width: 1180px;
  padding-left: 0;
  padding-right: 0;
}
.page-franqueado .franchise-form-layout .form-art {
  align-self: center;
  justify-content: flex-end;
  margin: 0;
  overflow: visible;
  transform: none;
}
.page-franqueado .franchise-form-layout .form-art img {
  width: 86%;
  max-width: 455px;
  transform: translateX(18%);
}

@media (max-width: 1120px) {
  .page-franqueado .franchise-contact-scene {
    --contact-arc: 50px;
  }
  .page-franqueado .franchise-form-layout {
    grid-template-columns: 46fr 44fr;
    gap: 10%;
  }
  .page-franqueado .talk-band { padding-top: 96px; }
}

@media (max-width: 560px) {
  .page-franqueado .franchise-contact-scene {
    --contact-arc: 28px;
  }
  .page-franqueado .talk-band {
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .page-franqueado .franchise-form-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding-inline: 24px;
  }
  .page-franqueado .franchise-form-layout .form-art {
    justify-content: center;
  }
  .page-franqueado .franchise-form-layout .form-art img {
    width: 100%;
    transform: none;
  }
}

/* At larger sizes the hand is deliberately independent from the form grid.
   It is anchored to the viewport-side edge of the scene and clipped there,
   making it feel as if it reaches in from outside the screen. */
@media (min-width: 561px) {
  .page-franqueado .franchise-form-layout {
    grid-template-columns: minmax(0, 580px);
    justify-content: start;
    gap: 0;
    padding-left: clamp(0px, 6vw, 110px);
  }
  .page-franqueado .form-section .form-art {
    position: absolute;
    top: 50%;
    right: 0;
    width: clamp(420px, 36vw, 580px);
    margin: 0;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
  }
  .page-franqueado .form-section .form-art img {
    width: 100%;
    max-width: none;
    transform: none;
  }
}
