@font-face {
  font-family: Vazirmatn;
  src: url("assets/fonts/vazirmatn-arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-08FF, U+200C-200E, U+FB50-FDFF, U+FE70-FEFC;
}
@font-face {
  font-family: Vazirmatn;
  src: url("assets/fonts/vazirmatn-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Vazirmatn;
  src: url("assets/fonts/vazirmatn-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}
:root {
  --brand: #e0263a;
  --brand-hover: #c5172b;
  --ink: #2b0f1c;
  --muted: #79515f;
  --bg: #fbf5f7;
  --surface: #fff;
  --blush: #fde8ee;
  --plum: #6b2348;
  --line: #eadce2;
  --radius: 28px;
  --shadow: 0 20px 70px #2b0f1c14;
  --gutter: clamp(20px, 5vw, 72px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Vazirmatn, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
button,
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
::selection {
  color: var(--ink);
  background: #fac1cd;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1200px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  inset-inline-start: 20px;
  z-index: 100;
  padding: 12px 24px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fbf5f7f2;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  white-space: nowrap;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.8px;
}
.brand img {
  width: 37px;
  height: 40px;
  object-fit: contain;
}
.brand small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
}
.site-nav {
  display: flex;
  gap: 28px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 550;
}
.site-nav a {
  padding-block: 10px;
}
.site-nav a:hover,
.text-link:hover {
  color: var(--brand);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.language-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 650;
}
.language-link svg {
  width: 17px;
  height: 17px;
  margin-bottom: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--brand-hover);
  box-shadow: 0 6px 20px #e0263a24;
  transform: translateY(-2px);
}
.button svg {
  width: 20px;
  height: 20px;
}
.button-small {
  min-height: 44px;
  padding: 9px 19px;
  font-size: 13px;
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button-secondary:hover {
  background: var(--blush);
  box-shadow: none;
}
.direction-arrow {
  transform: scaleX(-1);
}
[dir="ltr"] .direction-arrow {
  transform: none;
}
.menu-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.hero {
  padding-block: 80px 58px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: 36px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: 0.3px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px #e0263a0c;
}
.hero h1 {
  font-size: clamp(46px, 4.8vw, 70px);
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: -2.1px;
  margin: 0 0 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  display: block;
  position: relative;
  width: max-content;
  max-width: 100%;
}
.hero h1 em:after {
  content: "";
  display: block;
  height: 7px;
  background: var(--brand);
  border-radius: 60% 70% 20% 80%;
  transform: rotate(-2deg);
  opacity: 0.2;
  width: 84%;
  position: absolute;
  bottom: 5px;
  inset-inline-start: 0;
}
.hero-description {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 2;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-note svg {
  width: 15px;
  height: 15px;
}
.hero-visual {
  position: relative;
  isolation: isolate;
  height: 600px;
  direction: ltr;
}
.hero-orbit {
  position: absolute;
  inset: 50px -20px 55px;
  border: 1px solid #e8cbd5;
  border-radius: 50%;
  transform: rotate(-20deg);
}
.hero-orbit:before {
  content: "";
  position: absolute;
  inset: 27px;
  border-radius: 50%;
  border: 1px dashed #e9cfd8;
}
.hero-orbit:after {
  content: "";
  position: absolute;
  inset: 65px;
  border-radius: 50%;
  background: var(--blush);
}
.phone {
  border: 6px solid #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow:
    0 20px 55px #42152c24,
    0 0 0 1px #2b0f1c12;
  background: var(--blush);
  aspect-ratio: 390/844;
  position: relative;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-phone-main {
  position: absolute;
  width: 244px;
  top: 24px;
  left: 9%;
  transform: rotate(-7deg);
  z-index: 2;
}
.hero-phone-back {
  position: absolute;
  width: 227px;
  right: 2%;
  top: 97px;
  transform: rotate(9deg);
  z-index: 1;
}
.visual-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 30px #41172b12;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  direction: rtl;
}
.visual-tag svg {
  color: var(--brand);
  width: 22px;
  height: 22px;
}
.visual-tag small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
[dir="ltr"] .visual-tag {
  direction: ltr;
}
.tag-discover {
  right: -7px;
  top: 22px;
  transform: rotate(4deg);
}
.tag-free {
  left: 0;
  bottom: 30px;
  transform: rotate(-4deg);
}
.hero-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
  font-size: 12px;
  color: var(--muted);
}
.hero-foot:before,
.hero-foot:after {
  content: "";
  width: 90px;
  height: 1px;
  background: var(--line);
}
.hero-foot span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-foot svg {
  width: 17px;
  height: 17px;
}
.section {
  padding-block: 90px;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 40px;
}
.section-heading.center {
  text-align: center;
  margin-inline: auto;
}
.section-heading.center .eyebrow {
  justify-content: center;
}
h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.5;
  letter-spacing: -1px;
  margin: 0 0 16px;
  font-weight: 850;
}
.section-heading p,
.section-description {
  color: var(--muted);
  font-size: 16px;
  max-width: 580px;
  margin: 0;
}
.section-heading.center p {
  margin-inline: auto;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.moments {
  background: white;
  border-block: 1px solid var(--line);
}
.moments-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.moments-heading .section-heading {
  margin-bottom: 34px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}
.text-link svg {
  width: 18px;
  height: 18px;
}
.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.moment-card {
  position: relative;
  min-height: 255px;
  background: #f5edf0;
  border-radius: 22px;
  padding: 27px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: transform 0.2s;
}
.moment-card:hover {
  transform: translateY(-4px);
}
.moment-card:nth-child(2) {
  background: #fbf0e8;
}
.moment-card:nth-child(3) {
  background: #efebf7;
}
.moment-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: #ffffffb8;
  color: var(--plum);
  margin-bottom: 30px;
}
.moment-icon svg {
  width: 30px;
  height: 30px;
}
.moment-card h3 {
  font-size: 22px;
  margin: 0 0 6px;
}
.moment-card p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 240px;
  color: var(--muted);
  margin: 0;
}
.moment-arrow {
  position: absolute;
  inset-inline-end: 24px;
  top: 29px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
}
.moment-arrow svg {
  width: 17px;
  height: 17px;
}
.moment-number {
  position: absolute;
  inset-inline-end: 20px;
  bottom: -27px;
  font-size: 135px;
  font-weight: 900;
  color: #6b234807;
  line-height: 1.2;
  direction: ltr;
  pointer-events: none;
}
.tour {
  position: relative;
}
.tour-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.tour-art {
  min-height: 650px;
  background: #f2e5eb;
  border: 1px solid #ead8e0;
  border-radius: 180px 180px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tour-art:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px dashed #d6b8c7;
  border-radius: 50%;
}
.tour-phone {
  width: 255px;
  transform: rotate(-3deg);
  transition: transform 0.25s;
}
.tour-phone:hover {
  transform: rotate(0);
}
.zoom-link {
  display: block;
  cursor: zoom-in;
}
.tour-art .zoom-caption {
  position: absolute;
  bottom: 16px;
  font-size: 10px;
  color: var(--muted);
}
.tour-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 25px 0;
}
.tour-options a {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 17px;
  min-height: 44px;
  font-size: 13px;
  transition:
    background 0.2s,
    color 0.2s;
}
.tour-options a[aria-current="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.tour-options a:hover {
  border-color: var(--plum);
}
.tour-description h3 {
  font-size: 25px;
  margin: 0 0 12px;
}
.tour-description p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.feature-checks {
  padding: 0;
  list-style: none;
  margin: 22px 0 25px;
  display: grid;
  gap: 12px;
  font-size: 14px;
}
.feature-checks li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.feature-checks svg {
  color: var(--brand);
  width: 18px;
  height: 18px;
}
.screen-disclaimer {
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
}
.screens-mobile {
  display: none;
}
.food-section {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}
.food-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.food-section .eyebrow {
  color: #f8a3b4;
}
.food-section h2 {
  font-size: clamp(34px, 3.9vw, 52px);
}
.food-section .section-description {
  color: #dabcca;
  line-height: 2;
}
.food-section .button {
  margin-top: 25px;
  background: #fff;
  color: var(--ink);
}
.food-section .button:hover {
  background: var(--blush);
}
.food-art {
  position: relative;
  min-height: 510px;
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
}
.food-art:before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: #61263f;
  border-radius: 50%;
}
.food-phone {
  width: 220px;
  transform: rotate(8deg);
  z-index: 1;
}
.food-badge {
  position: absolute;
  background: #fff;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 100px;
  z-index: 2;
  font-size: 13px;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 8px;
}
.food-badge svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
}
.food-badge.first {
  top: 100px;
  left: 0;
  transform: rotate(-10deg);
}
.food-badge.second {
  right: 0;
  bottom: 80px;
  transform: rotate(4deg);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  border-top: 1px solid #ffffff24;
  padding-top: 40px;
  margin-top: 50px;
}
.step-number {
  font-size: 12px;
  color: #efa8bc;
  font-weight: 650;
  display: block;
  margin-bottom: 10px;
}
.steps h3 {
  font-size: 19px;
  margin: 0 0 6px;
}
.steps p {
  color: #dabcca;
  font-size: 13px;
  margin: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  padding-block: 23px;
  font-size: 16px;
  font-weight: 650;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 25px;
  font-weight: 300;
  color: var(--plum);
}
details[open] summary:after {
  content: "−";
}
.faq-list details p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.closing {
  padding: 0 0 70px;
}
.closing-card {
  background: var(--blush);
  border: 1px solid #efd2dc;
  border-radius: 32px;
  padding: 55px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.closing h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.closing p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.closing-actions {
  flex-shrink: 0;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 38px 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.footer-top .brand {
  font-size: 22px;
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom span {
  color: var(--brand);
}
.preview-notice {
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px dashed #ca9aab;
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
}
.preview-notice code {
  direction: ltr;
  display: inline-block;
}
.image-unavailable {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  height: 100%;
  background: var(--blush);
  color: var(--plum);
  font-size: 13px;
  line-height: 2;
}
.image-unavailable img {
  width: 70px;
  height: auto;
  margin: 0 auto 20px;
}
.image-unavailable b {
  display: block;
  font-size: 19px;
}
.zoom-dialog {
  padding: 0;
  border: 0;
  border-radius: 22px;
  max-width: min(92vw, 460px);
  max-height: 94dvh;
  background: var(--bg);
  overflow: auto;
  box-shadow: var(--shadow);
}
.zoom-dialog::backdrop {
  background: #1e081bdf;
}
.dialog-head {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: var(--bg);
  padding: 10px 15px;
  z-index: 1;
}
.dialog-head h2 {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0;
  margin: 0;
}
.dialog-close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
}
.dialog-image {
  width: 390px;
  height: auto;
}
.link-dialog {
  border: 1px solid var(--line);
  border-radius: 24px;
  max-width: 480px;
  width: calc(100% - 40px);
  padding: 26px;
  background: var(--bg);
  color: var(--ink);
}
.link-dialog::backdrop {
  background: #1e081bcc;
}
.link-dialog h2 {
  font-size: 24px;
}
.link-dialog p {
  font-size: 14px;
}
.link-dialog code {
  direction: ltr;
  display: inline-block;
}
.link-dialog .button {
  margin-top: 12px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.review-grid figure {
  margin: 0;
}
.review-grid img {
  border-radius: 20px;
  border: 1px solid var(--line);
}
.review-grid figcaption {
  margin-top: 15px;
}
.review-heading {
  padding-block: 45px;
}
[dir="ltr"] .hero h1 {
  line-height: 1.15;
  letter-spacing: -2.5px;
  font-size: clamp(45px, 5vw, 70px);
}
[dir="ltr"] .hero h1 em {
  width: auto;
}
[dir="ltr"] h2 {
  line-height: 1.25;
  letter-spacing: -1.2px;
}
[dir="ltr"] .brand {
  font-size: 22px;
  letter-spacing: -0.8px;
}
[dir="ltr"] .hero-description {
  line-height: 1.8;
}
[dir="ltr"] .hero-visual {
  transform: scaleX(-1);
}
[dir="ltr"] .hero-visual .phone img,
[dir="ltr"] .hero-visual .visual-tag > div,
[dir="ltr"] .hero-visual .visual-tag > svg {
  transform: scaleX(-1);
}
[dir="ltr"] .hero-visual .visual-tag {
  flex-direction: row-reverse;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 100px;
  }
}
@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }
  .header-inner {
    gap: 20px;
  }
  .header-actions {
    gap: 12px;
  }
  .hero-visual {
    height: 550px;
  }
  .hero-phone-main {
    width: 215px;
    left: 0;
  }
  .hero-phone-back {
    width: 205px;
    right: 0;
  }
  .tag-discover {
    right: -10px;
    font-size: 10px;
  }
  .tour-shell {
    gap: 40px;
  }
  .tour-art {
    min-height: 620px;
  }
  .food-grid {
    gap: 35px;
  }
  .faq-layout {
    gap: 45px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-note {
    gap: 10px;
  }
  .hero-actions .button {
    padding-inline: 20px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 76px;
  }
  .site-nav {
    gap: 16px;
    font-size: 12px;
  }
  .header-actions > .button {
    display: none;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding-inline: 17px;
    min-height: 48px;
  }
  .hero-visual {
    height: 510px;
  }
  .hero-phone-main {
    width: 195px;
    top: 32px;
  }
  .hero-phone-back {
    width: 180px;
    top: 105px;
    right: -7px;
  }
  .tag-discover {
    top: 0;
    right: 0;
    padding: 9px 12px;
  }
  .tag-free {
    bottom: 6px;
    padding: 9px 12px;
  }
  .hero-note {
    flex-wrap: wrap;
    font-size: 10px;
  }
  .hero-foot {
    gap: 18px;
  }
  .section {
    padding-block: 65px;
  }
  .moment-card {
    padding: 22px;
    min-height: 265px;
  }
  .moment-card h3 {
    font-size: 20px;
  }
  .moment-card p {
    font-size: 12px;
  }
  .tour-art {
    min-height: 570px;
  }
  .tour-phone {
    width: 230px;
  }
  .tour-options {
    gap: 6px;
  }
  .tour-options a {
    padding: 8px 12px;
    font-size: 12px;
  }
  .food-art {
    min-height: 480px;
  }
  .food-phone {
    width: 200px;
  }
  .food-badge {
    font-size: 11px;
    padding: 9px 12px;
  }
  .closing-card {
    padding: 40px;
  }
  .closing h2 {
    font-size: 29px;
  }
  .faq-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
  }
}
@media (max-width: 680px) {
  :root {
    --gutter: 22px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .header-inner {
    gap: 12px;
    min-height: 72px;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 30px;
    height: 34px;
  }
  .brand small {
    font-size: 8px;
  }
  .header-actions {
    margin-inline-start: auto;
    gap: 12px;
  }
  .language-link {
    font-size: 12px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    inset-inline: 0;
    background: var(--bg);
    padding: 18px 25px 24px;
    box-shadow: 0 15px 25px #2b0f1c12;
    font-size: 15px;
  }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero {
    padding-block: 43px 33px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
    margin-bottom: 15px;
  }
  .hero h1 {
    font-size: 46px;
    line-height: 1.45;
    margin-bottom: 17px;
    letter-spacing: -1.5px;
  }
  .hero h1 em {
    margin-inline: auto;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.95;
    margin: 0 auto 23px;
    max-width: 340px;
  }
  .hero-actions {
    justify-content: center;
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 12px 19px;
    min-height: 50px;
  }
  .hero-note {
    justify-content: center;
    gap: 17px;
    margin-top: 16px;
    font-size: 10px;
  }
  .hero-visual {
    width: min(340px, 100%);
    margin-inline: auto;
    height: 465px;
  }
  .hero-orbit {
    inset: 34px 0 40px;
  }
  .hero-phone-main {
    width: 182px;
    top: 20px;
    left: 15px;
    border-width: 4px;
    border-radius: 28px;
  }
  .hero-phone-back {
    width: 172px;
    top: 67px;
    right: 10px;
    border-width: 4px;
    border-radius: 27px;
  }
  .tag-discover {
    right: 0;
    top: 0;
    font-size: 10px;
    padding: 9px 12px;
    border-radius: 12px;
  }
  .tag-discover small {
    font-size: 9px;
  }
  .tag-free {
    bottom: 4px;
    left: 2px;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 10px;
  }
  .visual-tag svg {
    width: 18px;
    height: 18px;
  }
  .hero-foot {
    margin-top: 25px;
    gap: 18px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .hero-foot:before,
  .hero-foot:after {
    display: none;
  }
  .hero-foot span {
    gap: 5px;
  }
  .hero-foot svg {
    width: 15px;
    height: 15px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    justify-content: start;
  }
  .section-heading.center .eyebrow {
    justify-content: center;
  }
  h2 {
    font-size: 30px;
    letter-spacing: -0.7px;
  }
  .section-heading p,
  .section-description {
    font-size: 14px;
  }
  .moments-heading {
    display: block;
  }
  .moments-heading > .text-link {
    margin-bottom: 22px;
  }
  .moments-heading .section-heading {
    margin-bottom: 10px;
  }
  .moment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .moment-card {
    min-height: 150px;
    padding: 22px;
    padding-inline-start: 92px;
    justify-content: center;
  }
  .moment-icon {
    position: absolute;
    inset-inline-start: 20px;
    top: 28px;
    width: 52px;
    height: 52px;
    margin: 0;
  }
  .moment-card h3 {
    font-size: 20px;
  }
  .moment-card p {
    font-size: 13px;
    max-width: 245px;
    padding-inline-end: 6px;
  }
  .moment-arrow {
    width: 28px;
    height: 28px;
    top: 16px;
    inset-inline-end: 14px;
  }
  .moment-number {
    font-size: 100px;
    bottom: -21px;
  }
  .tour-shell {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }
  .tour-content {
    width: 100%;
  }
  .tour-options {
    display: flex;
    flex-wrap: wrap;
    margin-block: 20px;
  }
  .tour-options a {
    font-size: 12px;
    padding: 8px 14px;
  }
  .tour-description h3 {
    font-size: 23px;
  }
  .tour-description p {
    font-size: 14px;
  }
  .feature-checks {
    font-size: 13px;
    gap: 10px;
    margin-block: 16px;
  }
  .tour-art {
    width: 100%;
    min-height: 600px;
    border-radius: 140px 140px 26px 26px;
  }
  .tour-phone {
    width: 242px;
    transform: none;
  }
  .tour-phone:hover {
    transform: none;
  }
  .screen-disclaimer {
    font-size: 10px;
  }
  .food-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .food-section .eyebrow {
    justify-content: start;
  }
  .food-section h2 {
    font-size: 35px;
  }
  .food-section .section-description {
    font-size: 14px;
  }
  .food-art {
    min-height: 475px;
    width: min(340px, 100%);
    margin: auto;
  }
  .food-phone {
    width: 201px;
  }
  .food-art:before {
    width: 300px;
    height: 300px;
  }
  .food-badge.first {
    left: 0;
    top: 80px;
  }
  .food-badge.second {
    right: 0;
    bottom: 65px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 28px;
    margin-top: 20px;
  }
  .steps > div {
    position: relative;
    padding-inline-start: 50px;
  }
  .step-number {
    position: absolute;
    inset-inline-start: 0;
    top: 4px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .steps p {
    font-size: 13px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .faq-layout .eyebrow {
    justify-content: start;
  }
  summary {
    font-size: 14px;
    padding-block: 19px;
  }
  .faq-list details p {
    font-size: 13px;
  }
  .closing {
    padding-bottom: 45px;
  }
  .closing-card {
    padding: 30px 24px;
    display: block;
    text-align: center;
    border-radius: 24px;
  }
  .closing h2 {
    font-size: 29px;
  }
  .closing p {
    font-size: 13px;
  }
  .closing-actions {
    margin-top: 24px;
  }
  .site-footer {
    padding-top: 25px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-links {
    gap: 18px;
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 10px;
    gap: 10px;
  }
  .footer-bottom p {
    max-width: 100%;
  }
  .preview-notice {
    font-size: 11px;
    padding: 12px;
  }
  .zoom-dialog {
    border-radius: 18px;
  }
  .dialog-head h2 {
    font-size: 12px;
  }
  [dir="ltr"] .hero h1 {
    font-size: 47px;
    line-height: 1.16;
    letter-spacing: -1.8px;
  }
  [dir="ltr"] .hero-description {
    font-size: 15px;
  }
  [dir="ltr"] .brand {
    font-size: 20px;
  }
  [dir="ltr"] .hero h1 em {
    max-width: 310px;
  }
  [dir="ltr"] h2 {
    font-size: 30px;
  }
  [dir="ltr"] .food-section h2 {
    font-size: 36px;
  }
}
@media (max-width: 370px) {
  :root {
    --gutter: 17px;
  }
  .hero h1 {
    font-size: 41px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 16px;
  }
  .hero-visual {
    height: 430px;
  }
  .hero-phone-main {
    width: 168px;
    left: 10px;
  }
  .hero-phone-back {
    width: 160px;
    right: 6px;
  }
  .hero-note {
    gap: 10px;
  }
  .hero-foot {
    gap: 11px;
  }
  .tour-phone {
    width: 223px;
  }
  .tour-art {
    min-height: 555px;
  }
  .moment-card {
    padding-inline-start: 84px;
  }
  .moment-card p {
    font-size: 12px;
  }
  [dir="ltr"] .hero h1 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .moment-card:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .tour-options,
  .dialog-close,
  .preview-notice {
    display: none;
  }
  .hero,
  .section {
    padding-block: 25px;
  }
  .phone {
    box-shadow: none;
  }
  .food-section {
    background: white;
    color: var(--ink);
  }
  .food-section p,
  .steps p {
    color: var(--muted);
  }
}
@media (max-width: 680px) {
  html:not(.has-js) .menu-toggle {
    display: none;
  }
  html:not(.has-js) .header-inner {
    flex-wrap: wrap;
    padding-block: 14px;
  }
  html:not(.has-js) .site-nav {
    position: static;
    display: flex;
    order: 3;
    width: 100%;
    padding: 0;
    box-shadow: none;
    justify-content: center;
    font-size: 12px;
    gap: 20px;
  }
}

/* Motion layer: transform/opacity only, no autoplay or continuously moving content. */
.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  z-index: 50;
  pointer-events: none;
}
[dir="ltr"] .reading-progress {
  transform-origin: left;
}
.site-header {
  transition:
    box-shadow 0.25s,
    background 0.25s;
}
.site-header.is-scrolled {
  box-shadow: 0 5px 24px #2b0f1c0a;
  background: #fbf5f7fa;
}
.hero-phone-main {
  translate: var(--depth-x, 0px) var(--depth-y, 0px);
  transition: translate 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-phone-back {
  translate: calc(var(--depth-x, 0px) * -0.65) calc(var(--depth-y, 0px) * -0.65);
  transition: translate 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.button .direction-arrow,
.text-link .direction-arrow,
.moment-arrow {
  transition:
    translate 0.22s ease,
    background 0.22s ease;
}
.button:hover .direction-arrow,
.text-link:hover .direction-arrow {
  translate: -3px 0;
}
[dir="ltr"] .button:hover .direction-arrow,
[dir="ltr"] .text-link:hover .direction-arrow {
  translate: 3px 0;
}
.moment-icon {
  transition:
    rotate 0.25s ease,
    scale 0.25s ease;
}
.moment-card:hover .moment-icon {
  rotate: -5deg;
  scale: 1.06;
}
.moment-card:hover .moment-arrow {
  background: var(--blush);
}
.button:active {
  transform: translateY(0) scale(0.98);
}
.tour-options a:active {
  transform: scale(0.97);
}
.tour-options a {
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.motion-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 100px;
  min-height: 44px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 7px 14px;
  font: inherit;
  font-size: 12px;
}
.motion-toggle:disabled {
  opacity: 0.7;
}
.motion-toggle svg {
  width: 16px;
  height: 16px;
}
.has-js .site-nav.is-open {
  animation: menu-enter 0.22s ease-out;
}
.faq-list details[open] p {
  animation: detail-enter 0.22s ease-out;
}
@keyframes menu-enter {
  from {
    opacity: 0;
    translate: 0 -8px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes detail-enter {
  from {
    opacity: 0;
    translate: 0 -5px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
html[data-motion="off"] *,
html[data-motion="off"] *:before,
html[data-motion="off"] *:after {
  animation: none !important;
  transition: none !important;
}
html[data-motion="off"] {
  scroll-behavior: auto;
}
html[data-motion="off"] .hero-phone-main,
html[data-motion="off"] .hero-phone-back,
html[data-motion="off"] .button .direction-arrow,
html[data-motion="off"] .text-link .direction-arrow {
  translate: none;
}
html[data-motion="off"] .moment-card:hover .moment-icon {
  rotate: none;
  scale: none;
}
@media (prefers-reduced-motion: reduce) {
  .reading-progress {
    display: none;
  }
  .hero-phone-main,
  .hero-phone-back,
  .button .direction-arrow,
  .text-link .direction-arrow {
    translate: none !important;
  }
  .moment-card:hover .moment-icon {
    rotate: none;
    scale: none;
  }
}
html[data-motion="off"] .reading-progress {
  display: none;
}

/* Preserve the complete map capture inside every phone frame. */
.phone img[data-screen-image="map"],
.review-grid img[data-screen-image="map"] {
  object-fit: contain;
}
