:root {
  --charcoal: #232829;
  --charcoal-deep: #111516;
  --ink: #202426;
  --muted: #687174;
  --paper: #f7f8f4;
  --white: #ffffff;
  --mist: #eef4f1;
  --teal: #65c6c1;
  --teal-dark: #2f8f8a;
  --wine: #884a4c;
  --warm: #ebe5dc;
  --line: rgba(35, 40, 41, 0.15);
  --line-strong: rgba(35, 40, 41, 0.28);
  --shadow: 0 24px 60px rgba(17, 21, 22, 0.15);
  color-scheme: light;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

::selection {
  background: var(--teal);
  color: var(--charcoal-deep);
}

a {
  color: inherit;
}

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

.section-anchor {
  position: relative;
  top: -1rem;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
  color: var(--white);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroImage 1200ms ease-out both;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 21, 22, 0.9) 0%, rgba(17, 21, 22, 0.62) 43%, rgba(17, 21, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 21, 22, 0.72) 0%, rgba(17, 21, 22, 0) 54%);
}

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.brandmark {
  display: inline-flex;
  width: min(11.5rem, 46vw);
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(17, 21, 22, 0.18);
}

.brandmark__logo {
  width: 100%;
  height: auto;
}

.topbar__link {
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.language-toggle {
  min-height: 2.45rem;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.language-toggle button {
  min-width: 3rem;
  border: 0;
  border-radius: 6px;
  padding: 0 0.55rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle button.is-active {
  background: var(--white);
  color: var(--charcoal);
}

.hero__content {
  width: min(43rem, 100%);
  padding: 8.8rem 1.25rem 7.7rem;
  animation: riseIn 760ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.close .eyebrow,
.builder-hero .eyebrow {
  color: var(--teal);
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 0.96;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: 4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.35rem;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.68rem;
}

p {
  line-height: 1.55;
}

.hero__text {
  max-width: 35rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero__actions,
.proposal__actions,
.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.selector__button:focus-visible,
textarea:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(101, 198, 193, 0.45);
  outline-offset: 2px;
}

.button--light {
  background: var(--white);
  color: var(--charcoal-deep);
}

.button--quiet {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button--dark {
  background: var(--charcoal);
  color: var(--white);
}

.button--line {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--charcoal);
}

.hero__peek {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(20rem, calc(100% - 2.5rem));
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(17, 21, 22, 0.68);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(18px);
  animation: fadeIn 1200ms 350ms ease-out both;
}

.hero__peek span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.hero__peek strong {
  font-size: 1rem;
}

.statement,
.experience,
.brief,
.close,
.menu-section,
.pricing,
.timeline-section,
.terms-section {
  padding: 4rem 1.25rem;
}

.statement {
  display: grid;
  gap: 1.6rem;
  background: var(--white);
}

.statement__copy h2 {
  max-width: 17ch;
}

.statement__copy > p,
.section-heading > p,
.pricing__copy > p,
.terms-section__copy > p {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.summary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.summary__grid > div {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 244, 0.72);
}

.experience {
  background: var(--paper);
}

.experience__intro {
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.experience__intro p,
.brief__copy p,
.close p,
.builder-hero p {
  max-width: 38rem;
  color: var(--muted);
}

.proposal {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proposal__visual {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  background: var(--charcoal);
}

.proposal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 420ms ease;
}

.proposal__visual.is-changing img {
  opacity: 0.4;
  transform: scale(1.03);
}

.proposal__stamp {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.72rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.proposal__content {
  padding: 1.1rem;
}

.proposal__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 1.2rem 0;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(101, 198, 193, 0.08);
}

.selector__button {
  min-height: 2.65rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 0.83rem;
  font-weight: 800;
  cursor: pointer;
}

.selector__button.is-active {
  background: var(--charcoal);
  color: var(--white);
}

.details,
.brief__grid,
.builder-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.details > div,
.brief__grid > div,
.builder-field {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 244, 0.72);
}

.details strong,
.builder-field strong {
  display: block;
  line-height: 1.3;
}

.label,
dt {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 800;
}

.menu-list {
  margin: 1.2rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.menu-list ul,
.brief__notes ul,
.builder-notes,
.menu-columns ul,
.terms-list ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--charcoal);
  line-height: 1.7;
}

.menu-section {
  background: var(--white);
}

.section-heading {
  max-width: 44rem;
  margin: 0 0 2rem;
}

.menu-columns,
.terms-list {
  display: grid;
  gap: 1rem;
}

.menu-columns > section,
.terms-list > section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--paper);
}

.menu-columns h3,
.terms-list h3 {
  margin-bottom: 0.7rem;
}

.pricing {
  display: grid;
  gap: 1.5rem;
  background: var(--charcoal);
  color: var(--white);
}

.pricing .eyebrow {
  color: var(--teal);
}

.pricing__copy h2 {
  margin-bottom: 0.7rem;
  color: var(--white);
}

.pricing__copy p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing__table {
  display: grid;
  gap: 0.75rem;
}

.pricing__table > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.pricing__table span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.pricing__table strong {
  text-align: right;
  white-space: nowrap;
}

.gallery {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--charcoal-deep);
}

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

.timeline {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--teal-dark);
  font-weight: 800;
}

.timeline span {
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.45;
}

.terms-section {
  display: grid;
  gap: 1.5rem;
  background: var(--white);
}

.gallery__item {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.brief {
  display: grid;
  gap: 2rem;
  background: var(--white);
}

.brief__panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: border-color 240ms ease, background 240ms ease;
}

.brief__panel.is-approved {
  border-color: rgba(101, 198, 193, 0.7);
  background: #f0fbf9;
}

.brief__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brief__header h3 {
  margin-bottom: 0;
}

.status {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.7rem;
  border-radius: 8px;
  background: var(--wine);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.brief__notes {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.close {
  min-height: 64svh;
  display: grid;
  align-content: center;
  background: var(--charcoal);
  color: var(--white);
}

.close p {
  color: rgba(255, 255, 255, 0.74);
}

.close h2 {
  max-width: 16ch;
}

.builder-page {
  background: var(--paper);
}

.builder-shell {
  min-height: 100svh;
}

.builder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.builder-brand {
  width: min(11rem, 48vw);
  display: inline-flex;
}

.builder-brand img {
  width: 100%;
  height: auto;
}

.builder-header__link {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.builder-hero {
  padding: 4rem 1.25rem;
  background:
    linear-gradient(90deg, rgba(17, 21, 22, 0.92), rgba(17, 21, 22, 0.7), rgba(17, 21, 22, 0.34)),
    url("assets/lamar-sushi.jpg") center / cover;
  color: var(--white);
}

.builder-hero h1 {
  max-width: 12ch;
}

.builder-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.builder-grid {
  width: min(78rem, 100%);
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
}

.builder-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.builder-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.builder-panel__header h2 {
  margin-bottom: 0.2rem;
  font-size: 1.75rem;
}

.builder-panel__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.builder-panel__body {
  padding: 1rem;
}

.chat-input {
  width: 100%;
  min-height: 26rem;
  resize: vertical;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 1rem;
  background: #fbfcf9;
  color: var(--ink);
  font: 500 0.95rem/1.55 "Inter", Arial, sans-serif;
}

.builder-actions {
  margin-top: 0.8rem;
}

.builder-fields {
  margin-bottom: 1rem;
}

.generated-copy {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.generated-copy pre {
  margin: 0;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fbfcf9;
  color: var(--charcoal);
  font: 600 0.92rem/1.58 "Inter", Arial, sans-serif;
}

.builder-note-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.builder-note-block h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.builder-preview {
  position: relative;
  min-height: 15rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.builder-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.builder-preview span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

html[dir="rtl"] body {
  font-family: "Noto Naskh Arabic", "Inter", Arial, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Noto Naskh Arabic", "Inter", Arial, sans-serif;
  line-height: 1.08;
}

html[dir="rtl"] .hero__shade {
  background:
    linear-gradient(270deg, rgba(17, 21, 22, 0.9) 0%, rgba(17, 21, 22, 0.62) 43%, rgba(17, 21, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 21, 22, 0.72) 0%, rgba(17, 21, 22, 0) 54%);
}

html[dir="rtl"] .hero__content {
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: right;
}

html[dir="rtl"] .hero__actions {
  justify-content: flex-start;
}

html[dir="rtl"] .hero__peek {
  right: 1.25rem;
  left: auto;
  text-align: right;
}

html[dir="rtl"] .menu-list ul,
html[dir="rtl"] .brief__notes ul,
html[dir="rtl"] .builder-notes,
html[dir="rtl"] .menu-columns ul,
html[dir="rtl"] .terms-list ul {
  padding-right: 1.1rem;
  padding-left: 0;
}

html[dir="rtl"] .pricing__table strong {
  text-align: left;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroImage {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.04);
  }
}

@media (min-width: 760px) {
  .topbar {
    padding: 1.4rem 2rem;
  }

  .brandmark {
    width: 13rem;
  }

  .hero__content {
    padding-left: 2rem;
  }

  html[dir="rtl"] .hero__content {
    padding-right: 2rem;
    padding-left: 1.25rem;
  }

  h1 {
    font-size: 5.45rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .statement,
  .brief,
  .pricing,
  .terms-section {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.74fr);
    align-items: start;
    padding: 6rem 2rem;
  }

  .experience,
  .close,
  .menu-section,
  .timeline-section {
    padding: 6rem 2rem;
  }

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

  .menu-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .terms-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing__table {
    align-self: start;
  }

  .proposal {
    grid-template-columns: 0.98fr 1.02fr;
  }

  .proposal__visual {
    min-height: 38rem;
  }

  .proposal__content {
    padding: 2rem;
  }

  .gallery {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .gallery__item {
    min-height: 28rem;
  }

  .builder-header {
    padding: 1rem 2rem;
  }

  .builder-hero {
    padding: 5rem 2rem;
  }

  .builder-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    padding: 1.25rem 2rem 4rem;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 90svh;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(17, 21, 22, 0.9) 0%, rgba(17, 21, 22, 0.36) 100%),
      linear-gradient(0deg, rgba(17, 21, 22, 0.84) 0%, rgba(17, 21, 22, 0.1) 58%);
  }

  .hero__content {
    padding-bottom: 8.8rem;
  }

  .topbar__link {
    display: none;
  }

  .brandmark {
    width: 8.2rem;
  }

  .language-toggle button {
    min-width: 2.65rem;
    font-size: 0.74rem;
  }

  h1 {
    font-size: 3.28rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero__actions,
  .proposal__actions,
  .builder-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .details,
  .brief__grid,
  .summary__grid,
  .builder-fields {
    grid-template-columns: 1fr;
  }

  .pricing__table > div {
    align-items: start;
    flex-direction: column;
  }

  .pricing__table strong {
    text-align: left;
    white-space: normal;
  }

  .brief__header,
  .builder-panel__header {
    flex-direction: column;
  }

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

  .builder-header__link {
    padding: 0 0.7rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    box-shadow: none !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    background: var(--white);
    color: var(--ink);
    font-size: 10pt;
  }

  body {
    margin: 0;
  }

  a {
    text-decoration: none;
  }

  .language-toggle,
  .hero__actions,
  .selector,
  .proposal__actions,
  .close .button,
  .section-anchor {
    display: none !important;
  }

  .hero,
  .statement,
  .experience,
  .menu-section,
  .pricing,
  .gallery,
  .timeline-section,
  .terms-section,
  .close {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .hero {
    min-height: 132mm;
    display: block;
    margin: 0 0 9mm;
    border: 1px solid rgba(17, 21, 22, 0.16);
    border-radius: 7px;
    overflow: hidden;
  }

  .hero__media,
  .hero__shade {
    position: absolute;
    inset: 0;
  }

  .hero__media img {
    transform: none;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(17, 21, 22, 0.88) 0%, rgba(17, 21, 22, 0.54) 48%, rgba(17, 21, 22, 0.1) 100%),
      linear-gradient(0deg, rgba(17, 21, 22, 0.62) 0%, rgba(17, 21, 22, 0) 58%);
  }

  .topbar {
    padding: 7mm;
  }

  .brandmark {
    width: 46mm;
    padding: 2.2mm 3mm;
    border-radius: 4px;
  }

  .topbar__actions {
    gap: 0;
  }

  .topbar__link {
    min-height: 9mm;
    border-radius: 4px;
    padding: 0 4mm;
    color: var(--white);
    font-size: 8pt;
  }

  .hero__content {
    position: absolute;
    left: 8mm;
    bottom: 16mm;
    width: 92mm;
    padding: 0;
  }

  .hero .eyebrow,
  .hero__text {
    color: rgba(255, 255, 255, 0.84);
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 4mm;
    font-size: 38pt;
    line-height: 0.98;
  }

  h2 {
    margin-bottom: 4mm;
    font-size: 22pt;
    line-height: 1.02;
  }

  h3 {
    margin-bottom: 3mm;
    font-size: 15pt;
    line-height: 1.08;
  }

  p {
    line-height: 1.45;
  }

  .eyebrow,
  .label,
  dt {
    margin-bottom: 2mm;
    font-size: 7.5pt;
    letter-spacing: 0.02em;
  }

  .hero__text {
    max-width: 80mm;
    margin-bottom: 0;
    font-size: 11pt;
  }

  .hero__peek {
    right: 7mm;
    bottom: 7mm;
    width: 66mm;
    gap: 1mm;
    padding: 4mm;
    border-radius: 4px;
    background: rgba(17, 21, 22, 0.76);
  }

  .hero__peek span {
    font-size: 7.5pt;
  }

  .hero__peek strong {
    font-size: 10pt;
  }

  html[dir="rtl"] .hero__shade {
    background:
      linear-gradient(270deg, rgba(17, 21, 22, 0.88) 0%, rgba(17, 21, 22, 0.54) 48%, rgba(17, 21, 22, 0.1) 100%),
      linear-gradient(0deg, rgba(17, 21, 22, 0.62) 0%, rgba(17, 21, 22, 0) 58%);
  }

  html[dir="rtl"] .hero__content {
    right: 8mm;
    left: auto;
    width: 92mm;
    padding: 0;
  }

  html[dir="rtl"] .hero__peek {
    right: auto;
    left: 7mm;
  }

  .statement,
  .experience,
  .menu-section,
  .pricing,
  .timeline-section,
  .terms-section,
  .close {
    padding: 8mm 0;
  }

  .statement,
  .pricing,
  .terms-section {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 8mm;
    align-items: start;
  }

  .statement__copy h2,
  .section-heading,
  .experience__intro,
  .pricing__copy > p,
  .terms-section__copy > p,
  .close p {
    max-width: none;
  }

  .summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3mm;
  }

  .summary__grid > div,
  .details > div,
  .menu-columns > section,
  .terms-list > section {
    padding: 4mm;
    border-radius: 4px;
    background: var(--paper);
  }

  .experience__intro {
    margin: 0 0 6mm;
  }

  .proposal {
    max-width: none;
    grid-template-columns: 0.78fr 1fr;
    border-radius: 5px;
  }

  .proposal__visual {
    min-height: 0;
    height: 104mm;
  }

  .proposal__stamp,
  .gallery__item span {
    left: 4mm;
    bottom: 4mm;
    border-radius: 4px;
    padding: 2.2mm 3mm;
    font-size: 7.5pt;
  }

  .proposal__content {
    padding: 6mm;
  }

  .proposal__meta {
    margin-bottom: 4mm;
    font-size: 8pt;
  }

  .details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3mm;
  }

  .menu-list {
    margin: 5mm 0 0;
    padding-top: 4mm;
  }

  .menu-list ul,
  .menu-columns ul,
  .terms-list ul {
    line-height: 1.45;
  }

  .section-heading {
    margin-bottom: 6mm;
  }

  .menu-columns,
  .terms-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4mm;
  }

  .pricing {
    margin: 4mm 0 0;
    padding: 6mm;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .pricing .eyebrow {
    color: var(--teal-dark);
  }

  .pricing__copy h2 {
    color: var(--ink);
  }

  .pricing__copy p {
    color: var(--muted);
  }

  .pricing__table span {
    color: var(--muted);
  }

  .pricing__table strong {
    color: var(--ink);
  }

  .pricing__table {
    gap: 2.5mm;
  }

  .pricing__table > div {
    padding: 3.2mm;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
  }

  .gallery {
    grid-template-columns: 1.15fr 0.92fr 0.92fr;
    gap: 3mm;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    background: var(--white);
  }

  .gallery__item {
    min-height: 54mm;
    border-radius: 4px;
  }

  .timeline-section {
    padding-bottom: 6mm;
  }

  .timeline {
    gap: 0;
  }

  .timeline li {
    grid-template-columns: 22mm minmax(0, 1fr);
    gap: 5mm;
    padding: 3mm 0;
  }

  .terms-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .close {
    min-height: 0;
    margin-top: 4mm;
    padding: 6mm;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink);
  }

  .close h2 {
    max-width: none;
  }

  .close p {
    color: var(--muted);
  }
}
