* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 80;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.026;
  pointer-events: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(243, 240, 233, 0.1);
  background: rgba(11, 13, 12, 0.76);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.wordmark-mark,
.footer-mark {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wordmark-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 0.78rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  white-space: nowrap;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.action-link {
  transform-origin: center;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  background: var(--bg);
}

.hero-stage {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media-outer,
.hero-media-inner,
.hero-media-inner video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media-outer,
.hero-media-inner {
  will-change: transform;
}

.hero-media-inner {
  width: 106%;
}

.hero-media-inner video {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 9, 8, 0.96) 0%,
      rgba(7, 9, 8, 0.77) 34%,
      rgba(7, 9, 8, 0.14) 72%
    ),
    linear-gradient(
      0deg,
      rgba(7, 9, 8, 0.7) 0%,
      transparent 48%,
      rgba(7, 9, 8, 0.22) 100%
    );
  opacity: 0.55;
}

.hero-act {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--page-pad);
  width: min(850px, 75vw);
  transform: translateY(-46%);
  will-change: transform, opacity;
}

.js .hero-act--two,
.js .hero-act--three {
  opacity: 0;
  visibility: hidden;
}

.hero-eyebrow,
.section-eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4.8rem, 8.2vw, 8.8rem);
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-act--two h2,
.hero-act--three h2 {
  max-width: 800px;
  font-size: clamp(4rem, 7vw, 7.7rem);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(243, 240, 233, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.hero-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-actions,
.location-actions,
.final-call-content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-ghost {
  border-color: rgba(243, 240, 233, 0.4);
  background: rgba(11, 13, 12, 0.48);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-dark {
  border-color: var(--line);
  background: var(--bg);
  color: var(--text);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(243, 240, 233, 0.76);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-notes span {
  padding-right: 18px;
  border-right: 1px solid rgba(243, 240, 233, 0.25);
}

.hero-notes span:last-child {
  padding-right: 0;
  border: 0;
}

.hero-progress {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 32px;
  width: 2px;
  height: 18vh;
  min-height: 100px;
  background: rgba(243, 240, 233, 0.2);
  transform: translateY(-50%);
}

.hero-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
}

.quick-info {
  position: relative;
  z-index: 3;
  padding: 0 var(--page-pad) 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-info-item:last-child {
  border-right: 0;
}

.quick-info-item > svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  color: var(--accent);
}

.quick-info-item strong,
.quick-info-item span {
  display: block;
}

.quick-info-item strong {
  margin-bottom: 4px;
  font-size: 0.86rem;
}

.quick-info-item span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.demo-note {
  max-width: var(--max-width);
  margin: 0 auto;
  color: #777b74;
  font-size: 0.68rem;
  text-align: right;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(96px, 10vw, 160px) var(--page-pad);
}

.section-intro,
.review-heading,
.faq-heading {
  max-width: 760px;
  margin-bottom: clamp(46px, 7vw, 88px);
}

.section-intro h2,
.direct-order h2,
.craft h2,
.review-heading h2,
.how-order h2,
.faq h2,
.final-call h2,
.location h2 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 6.3vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-intro p,
.review-heading p,
.faq-heading p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(350px, 40vw));
  gap: 12px;
}

.favorite {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.favorite img,
.favorite-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.favorite img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.favorite:hover img {
  transform: scale(1.035);
}

.favorite-scrim {
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(7, 9, 8, 0.97) 0%,
    rgba(7, 9, 8, 0.55) 42%,
    rgba(7, 9, 8, 0.06) 76%
  );
}

.favorite-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3.4vw, 48px);
}

.favorite-content > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.favorite h3 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.favorite-content p {
  max-width: 520px;
  margin-bottom: 22px;
  color: rgba(243, 240, 233, 0.76);
  font-size: 0.82rem;
  line-height: 1.6;
}

.favorite-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
}

.favorite-link svg,
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 220ms ease;
}

.favorite-link:hover svg,
.text-link:hover svg {
  transform: translate(3px, -3px);
}

.favorite-large {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.favorite-tall {
  grid-column: 7 / 13;
  grid-row: 1;
}

.favorite-wide {
  grid-column: 7 / 10;
  grid-row: 2;
}

.favorite-text {
  display: flex;
  grid-column: 10 / 13;
  grid-row: 2;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 42px);
  background: var(--accent);
  color: var(--accent-ink);
}

.favorite-text svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
}

.favorite-text p {
  font-size: 0.84rem;
  line-height: 1.6;
}

.dark-link {
  align-self: flex-start;
}

.menu-rail {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.menu-rail-heading {
  position: absolute;
  z-index: 2;
  top: clamp(76px, 8vh, 110px);
  right: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.menu-rail-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-rail-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.menu-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  height: 100%;
  padding-top: clamp(235px, 30vh, 305px);
  padding-left: var(--page-pad);
  will-change: transform;
}

.menu-panel {
  display: flex;
  flex: 0 0 min(36vw, 520px);
  flex-direction: column;
  justify-content: space-between;
  min-width: 390px;
  padding: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--line);
}

.menu-panel > svg {
  width: 46px;
  height: 46px;
  color: var(--accent);
}

.menu-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
}

.menu-panel h3 {
  max-width: 350px;
  margin-bottom: 14px;
  font-size: clamp(3.1rem, 5vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.menu-panel p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.menu-panel-action {
  justify-content: flex-end;
  gap: 28px;
  margin-right: var(--page-pad);
  background: var(--surface-raised);
}

.menu-panel-action .button {
  align-self: flex-start;
}

.direct-order {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.direct-order-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.direct-order-copy > svg {
  width: 56px;
  height: 56px;
  margin-bottom: 40px;
  color: var(--accent);
}

.direct-order-copy p {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:first-child {
  border-top: 1px solid var(--line);
}

.benefit-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.benefit-list h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-list p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  min-height: 90dvh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.craft-image {
  min-height: 680px;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 130px) var(--page-pad);
}

.craft-copy h2 {
  font-size: clamp(3.6rem, 5.4vw, 6.2rem);
}

.craft-copy > p:not(.section-eyebrow) {
  max-width: 580px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.craft-facts {
  display: grid;
  gap: 0;
}

.craft-facts span {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.review-heading {
  align-self: start;
  margin-bottom: 0;
}

.review-heading h2 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.review-stage {
  min-height: 380px;
  padding: clamp(34px, 6vw, 78px);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.review-stage > svg {
  width: 30px;
  height: 30px;
  margin-bottom: clamp(50px, 8vw, 100px);
  color: var(--accent);
}

.review-stage blockquote {
  min-height: 2.9em;
  margin: 0 0 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.review-quote[hidden] {
  display: none;
}

.review-stage span {
  color: var(--muted);
  font-size: 0.72rem;
}

.review-selectors {
  display: flex;
  grid-column: 2;
  gap: 8px;
  margin-top: -80px;
  padding: 0 clamp(34px, 6vw, 78px) 30px;
}

.review-selectors button {
  width: 44px;
  height: 36px;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.review-selectors button.is-active {
  border-bottom-color: var(--accent);
  color: var(--text);
}

.how-order {
  border-top: 1px solid var(--line);
}

.how-order-title {
  max-width: 850px;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.steps article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.step-mark {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent);
}

.step-mark svg {
  width: 20px;
  height: 20px;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.steps p {
  max-width: 250px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  max-width: var(--max-width);
  margin: 0 auto clamp(96px, 10vw, 160px);
  padding: 0 var(--page-pad);
}

.location-main,
.hours {
  padding: clamp(44px, 7vw, 90px);
}

.location-main {
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--surface-raised);
}

.location-main > svg,
.hours > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  color: var(--accent);
}

.location h2 {
  max-width: 760px;
  font-size: clamp(3.5rem, 5.4vw, 6.4rem);
}

.location address {
  margin-bottom: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.location-main > p {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.hours {
  border-left: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
}

.hours h3 {
  margin-bottom: 28px;
  font-size: 2.7rem;
  text-transform: uppercase;
}

.hours dl {
  margin: 0 0 28px;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.hours dt {
  color: var(--muted);
}

.hours dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.hours > p {
  color: #7f837b;
  font-size: 0.68rem;
  line-height: 1.55;
}

.faq {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.faq-heading {
  margin-bottom: 0;
}

.faq-heading h2 {
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
}

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

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

.faq-item summary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 500;
  text-align: left;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item summary svg {
  width: 17px;
  height: 17px;
  grid-area: 1 / 1;
}

.faq-icon-close {
  display: none;
}

.faq-item[open] .faq-icon-plus {
  display: none;
}

.faq-item[open] .faq-icon-close {
  display: block;
}

.faq-answer p {
  max-width: 620px;
  padding: 0 54px 26px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.final-call {
  position: relative;
  display: grid;
  min-height: min(800px, 90dvh);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.final-call > img,
.final-call-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-call > img {
  z-index: -2;
  object-fit: cover;
}

.final-call-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.92), rgba(7, 9, 8, 0.55)),
    linear-gradient(0deg, rgba(7, 9, 8, 0.6), transparent);
}

.final-call-content {
  width: 100%;
  max-width: var(--max-width);
  padding: 100px var(--page-pad);
}

.final-call-content h2 {
  max-width: 850px;
  font-size: clamp(4.2rem, 8vw, 9rem);
}

.final-call-content > p {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(243, 240, 233, 0.78);
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px var(--page-pad) 30px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-mark {
  font-size: clamp(4rem, 8vw, 8rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(243, 240, 233, 0.78);
  font-size: 0.76rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-column svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #777b74;
  font-size: 0.66rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(243, 240, 233, 0.24);
  border-radius: var(--radius);
  background: rgba(18, 20, 17, 0.91);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-whatsapp svg {
  width: 21px;
  height: 21px;
  color: var(--accent);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a:nth-child(4),
  .desktop-nav a:nth-child(5) {
    display: none;
  }

  .favorites-grid {
    grid-template-rows: 520px 390px;
  }

  .favorite-large {
    grid-column: 1 / 8;
  }

  .favorite-tall {
    grid-column: 8 / 13;
  }

  .favorite-wide {
    grid-column: 8 / 13;
    grid-row: 2;
  }

  .favorite-text {
    grid-column: 1 / 8;
    grid-row: 3;
    min-height: 300px;
  }

  .favorites-grid {
    grid-template-rows: 520px 390px 300px;
  }

  .favorite-large {
    grid-row: 1 / 3;
  }

  .location {
    grid-template-columns: 1fr 0.7fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --page-pad: 20px;
  }

  body::after {
    opacity: 0.018;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(11, 13, 12, 0.7);
  }

  .menu-button svg {
    width: 22px;
    height: 22px;
  }

  .menu-icon-close {
    display: none;
  }

  .menu-button[aria-expanded="true"] .menu-icon-open {
    display: none;
  }

  .menu-button[aria-expanded="true"] .menu-icon-close {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    padding: calc(var(--header-height) + 30px) var(--page-pad) 30px;
    background: rgba(11, 13, 12, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 260ms ease,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .mobile-menu nav a:first-child {
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
  }

  .mobile-menu .button {
    width: 100%;
  }

  .wordmark-name {
    display: none;
  }

  .hero-stage {
    min-height: 100dvh;
  }

  .hero-media-inner {
    width: 114%;
  }

  .hero-media-inner video {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 8, 0.9), rgba(7, 9, 8, 0.24)),
      linear-gradient(
        0deg,
        rgba(7, 9, 8, 0.92) 0%,
        rgba(7, 9, 8, 0.2) 65%,
        rgba(7, 9, 8, 0.25) 100%
      );
    opacity: 0.78;
  }

  .hero-act {
    top: auto;
    right: var(--page-pad);
    bottom: max(42px, 6dvh);
    width: auto;
    transform: none;
  }

  .hero h1,
  .hero h2,
  .hero-act--two h2,
  .hero-act--three h2 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(3.55rem, 16.2vw, 5.4rem);
    line-height: 0.84;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 0.62rem;
  }

  .hero-copy {
    max-width: 440px;
    margin-bottom: 22px;
    font-size: 0.87rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 9px;
  }

  .button {
    min-height: 50px;
    padding: 0 17px;
    font-size: 0.77rem;
  }

  .hero-progress {
    top: auto;
    right: 18px;
    bottom: 35%;
    height: 90px;
    transform: none;
  }

  .hero-notes {
    gap: 10px;
    font-size: 1rem;
  }

  .hero-notes span {
    padding-right: 10px;
  }

  .quick-info {
    padding-top: 0;
  }

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

  .quick-info-item {
    min-height: 118px;
    padding: 20px 12px;
    border-bottom: 1px solid var(--line);
  }

  .quick-info-item:nth-child(2) {
    border-right: 0;
  }

  .quick-info-item:nth-child(3),
  .quick-info-item:nth-child(4) {
    border-bottom: 0;
  }

  .quick-info-item > svg {
    width: 23px;
    height: 23px;
  }

  .demo-note {
    padding-top: 16px;
    text-align: left;
  }

  .section {
    width: 100%;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section-intro h2,
  .direct-order h2,
  .craft h2,
  .review-heading h2,
  .how-order h2,
  .faq h2,
  .location h2,
  .final-call h2 {
    font-size: clamp(3.25rem, 14vw, 4.8rem);
  }

  .favorites-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .favorite-large,
  .favorite-tall,
  .favorite-wide,
  .favorite-text {
    grid-column: 1;
    grid-row: auto;
  }

  .favorite-large,
  .favorite-tall {
    min-height: 530px;
  }

  .favorite-wide,
  .favorite-text {
    min-height: 360px;
  }

  .favorite-content {
    padding: 26px;
  }

  .favorite-content p {
    font-size: 0.78rem;
  }

  .menu-rail {
    height: auto;
    min-height: 0;
    padding: 90px 0;
  }

  .menu-rail-heading {
    position: static;
    display: block;
    padding: 0 var(--page-pad) 52px;
  }

  .menu-rail-heading h2 {
    font-size: 3.5rem;
  }

  .menu-rail-heading .text-link {
    margin-top: 22px;
  }

  .menu-track {
    width: 100%;
    height: auto;
    padding: 0 var(--page-pad) 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .menu-track::-webkit-scrollbar {
    display: none;
  }

  .menu-panel {
    flex-basis: 82vw;
    min-width: 82vw;
    min-height: 430px;
    padding: 30px;
    scroll-snap-align: start;
  }

  .menu-panel h3 {
    font-size: 3.6rem;
  }

  .menu-panel-action {
    margin-right: 0;
  }

  .direct-order {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .direct-order-copy {
    position: static;
  }

  .direct-order-copy > svg {
    margin-bottom: 30px;
  }

  .craft {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .craft-image {
    min-height: 58dvh;
  }

  .craft-copy {
    padding: 82px var(--page-pad);
  }

  .reviews,
  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .review-stage {
    min-height: 390px;
  }

  .review-stage blockquote {
    min-height: 4.6em;
  }

  .review-selectors {
    grid-column: 1;
    margin-top: -100px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 20px;
  }

  .step-mark {
    margin-bottom: 42px;
  }

  .location {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .location-main,
  .hours {
    padding: 46px 26px;
  }

  .location-main {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .hours {
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .location-main > svg,
  .hours > svg {
    margin-bottom: 42px;
  }

  .final-call {
    min-height: 82dvh;
  }

  .final-call > img {
    object-position: 48% center;
  }

  .final-call-content {
    align-self: end;
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .final-call-content h2 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 50px 24px;
    padding-top: 70px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .floating-whatsapp.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

@media (max-width: 430px) {
  .hero h1,
  .hero h2,
  .hero-act--two h2,
  .hero-act--three h2 {
    font-size: clamp(3.1rem, 15.5vw, 4.15rem);
  }

  .hero-act--three .hero-copy {
    max-width: 300px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .hero-actions .button svg {
    width: 17px;
    height: 17px;
  }

  .quick-info-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .favorite-large,
  .favorite-tall {
    min-height: 480px;
  }

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

  .step-mark {
    margin-bottom: 25px;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 48px;
    padding: 0;
    justify-content: center;
  }
}
