:root {
  color-scheme: light;
  --paper: #f6f1e9;
  --paper-deep: #efe6da;
  --surface: #fffdf8;
  --surface-soft: #fbf6ee;
  --ink: #191613;
  --muted: #5f554e;
  --subtle: #7f746b;
  --line: #e4d8cb;
  --accent: #b35b3f;
  --accent-dark: #823b29;
  --mint: #dbe9df;
  --mint-ink: #31785f;
  --shadow: 0 22px 70px rgba(49, 34, 23, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.65), rgba(246, 241, 233, 0)),
    var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC",
    "PingFang TC", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(130, 59, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 59, 41, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 74%);
}

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

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

picture {
  display: contents;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 72px;
  padding: 0 30px;
  background: rgba(246, 241, 233, 0.9);
  border-bottom: 1px solid rgba(228, 216, 203, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 11px 17px;
  font-weight: 900;
  border: 1px solid transparent;
}

.header-cta {
  background: var(--ink);
  color: #fff;
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.08fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 56px));
  min-height: min(760px, calc(100vh - 72px));
  margin: 0 auto;
  padding: 42px 0 38px;
}

.hero-copy {
  min-width: 0;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 78px;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 20px;
}

.hero-note {
  max-width: 600px;
  margin: -2px 0 22px;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(179, 91, 63, 0.2);
}

.btn.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.hero-text-link {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  height: min(720px, calc(100vh - 120px));
  min-height: 580px;
}

.phone {
  position: absolute;
  overflow: hidden;
  width: 290px;
  height: 628px;
  border: 10px solid #181512;
  border-radius: 34px;
  background: #f7f2ea;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-main {
  right: 72px;
  top: 18px;
  z-index: 3;
  width: 330px;
  height: 716px;
}

.phone-back {
  opacity: 0.74;
  filter: saturate(0.92);
}

.phone-back.one {
  right: 300px;
  top: 88px;
  transform: rotate(-6deg);
}

.phone-back.two {
  right: 4px;
  top: 116px;
  transform: rotate(5deg);
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  min-height: 620px;
}

.hero-cover {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(25, 22, 19, 0.08);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-cover.large {
  grid-row: 1 / span 2;
}

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

.hero-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(25, 22, 19, 0.02), rgba(25, 22, 19, 0.72));
}

.hero-cover span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 58px;
}

.proof-band div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.proof-band span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.proof-band strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 62px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading.wide {
  max-width: 900px;
}

.section-heading p,
.story-copy p,
.review-copy p,
.join-section p {
  color: var(--muted);
  font-size: 17px;
}

.demo-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.demo-phone-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(49, 34, 23, 0.08);
}

.demo-phone-card img {
  width: 100%;
  aspect-ratio: 0.56;
  object-fit: cover;
  object-position: top center;
}

.caption {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 18px;
}

.caption strong {
  font-size: 19px;
  line-height: 1.3;
}

.caption span {
  color: var(--muted);
  font-size: 14px;
}

.commerce-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-copy {
  max-width: 650px;
}

.explore-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.explore-card img {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
  object-position: top center;
}

.review-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(460px, 1fr);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.review-copy {
  max-width: 520px;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(49, 34, 23, 0.1);
}

.review-card img {
  width: 100%;
  aspect-ratio: 0.56;
  object-fit: cover;
  object-position: top center;
}

.cover-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 14px;
  margin: 0 0 20px;
}

.cover-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.cover-card.large {
  min-height: 430px;
}

.cover-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
  opacity: 0.88;
}

.cover-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(25, 22, 19, 0.02), rgba(25, 22, 19, 0.78));
}

.cover-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 24px;
}

.cover-card span {
  color: #f0cbbb;
  font-size: 12px;
  font-weight: 900;
}

.cover-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.cover-card em {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.cover-grid .cover-card {
  min-height: 318px;
}

.cover-mini-wall {
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(49, 120, 95, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: #1d1915;
  color: #fff;
  box-shadow: var(--shadow);
}

.cover-mini-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.cover-mini-heading span {
  flex: 0 0 auto;
  color: #f0cbbb;
  font-size: 12px;
  font-weight: 900;
}

.cover-mini-heading strong {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.2;
  text-align: right;
}

.mini-store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mini-store-tile {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  border-radius: 6px;
  background: #312217;
}

.mini-store-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.mini-store-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(25, 22, 19, 0.02), rgba(25, 22, 19, 0.76));
}

.mini-store-tile span {
  position: absolute;
  right: 8px;
  bottom: 7px;
  left: 8px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.detail-demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(600px, 1.08fr);
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.detail-demo-copy {
  max-width: 540px;
}

.detail-demo-copy p {
  color: var(--muted);
  font-size: 17px;
}

.app-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.app-phone {
  position: relative;
  overflow: hidden;
  width: min(100%, 306px);
  height: auto;
  aspect-ratio: 0.462;
  justify-self: center;
  border: 10px solid #181512;
  border-radius: 34px;
  background: #f7f2ea;
  box-shadow: var(--shadow);
}

.app-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.app-phone.main {
  z-index: 2;
}

.app-phone.side {
  opacity: 1;
}

.store-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.store-ribbon span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.store-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.store-card {
  display: grid;
  align-content: space-between;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.store-card.featured {
  background: var(--ink);
  color: #fff;
}

.store-card span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.store-card.featured span,
.store-card.featured em {
  color: #f0cbbb;
}

.store-card strong {
  display: block;
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

.store-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.process-section {
  border-top: 1px solid var(--line);
}

.help-section {
  border-top: 1px solid var(--line);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.help-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(49, 34, 23, 0.06);
}

.help-grid span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.help-grid strong {
  font-size: 23px;
  line-height: 1.22;
}

.help-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.info-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.join-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 54px;
  padding: 42px;
  background: var(--ink);
  color: #fff;
}

.join-section .eyebrow,
.join-section p {
  color: #f0cbbb;
}

.join-section h2 {
  max-width: 760px;
}

.questionnaire-section {
  border-top: 1px solid var(--line);
}

.questionnaire-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.questionnaire-heading p {
  color: var(--muted);
  font-size: 18px;
}

.social-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.social-entry strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
}

.social-entry span {
  display: block;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.social-links a {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(49, 120, 95, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(219, 233, 223, 0.62);
  color: var(--mint-ink);
  font-size: 17px;
  font-weight: 900;
}

.social-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-link span:last-child {
  white-space: nowrap;
}

.intake-form {
  display: grid;
  gap: 0;
}

.intake-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.intake-form legend {
  padding: 0 0 2px;
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.form-grid .wide {
  grid-column: 1 / -1;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.payment-grid {
  margin-top: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.choice-group {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 0;
  padding: 0;
}

.choice-group > span {
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 900;
}

.schedule-fieldset {
  gap: 14px;
}

.hours-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-action {
  min-height: 46px;
  border: 1px solid rgba(49, 120, 95, 0.24);
  border-radius: 8px;
  padding: 9px 14px;
  background: rgba(219, 233, 223, 0.62);
  color: var(--mint-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.hours-grid {
  display: grid;
  gap: 10px;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(116px, 0.7fr) minmax(0, 1.6fr) auto;
  gap: 10px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 14px 0 0;
  background: transparent;
}

.hours-grid .hours-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.hours-row-header {
  display: grid;
  gap: 8px;
}

.hours-row strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.hours-row.is-closed {
  opacity: 0.72;
}

.hours-row input:disabled {
  color: var(--muted);
  background: rgba(246, 240, 232, 0.8);
  opacity: 0.68;
}

.hours-slots {
  display: grid;
  gap: 8px;
}

.hours-slot {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(110px, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.slot-add,
.slot-remove {
  min-height: 44px;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.slot-add {
  border: 1px solid rgba(49, 120, 95, 0.24);
  background: rgba(219, 233, 223, 0.62);
  color: var(--mint-ink);
}

.slot-remove {
  border: 1px solid rgba(162, 77, 49, 0.2);
  background: #fff8f2;
  color: var(--accent-dark);
}

.slot-add:disabled,
.slot-remove:disabled,
.slot-remove[hidden] {
  display: none;
}

.intake-form label,
.form-field {
  display: grid;
  gap: 8px;
  align-content: start;
}

.intake-form label > span,
.form-field > span,
.consent-row span,
.check-option span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.field-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-title-row span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.field-title-row em {
  flex: 0 0 auto;
  color: var(--mint-ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.field-help {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.cuisine-picker {
  padding: 0;
}

.cuisine-picker.has-error {
  border-color: var(--accent);
  outline: 3px solid rgba(179, 91, 63, 0.16);
}

.selected-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  align-items: center;
}

.tag-placeholder {
  color: var(--subtle);
  font-size: 15px;
  font-weight: 800;
}

.selected-tag,
.tag-option,
.category-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.selected-tag {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
}

.selected-tag::after {
  content: "×";
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1;
}

.tag-picker-layout {
  display: grid;
  grid-template-columns: minmax(164px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.tag-category-list,
.tag-item-grid {
  display: grid;
  gap: 8px;
}

.tag-category-list {
  align-content: start;
  max-height: 420px;
  overflow: auto;
  padding-right: 2px;
}

.category-option {
  min-height: 46px;
  padding: 9px 11px;
  text-align: left;
  font-size: 15px;
}

.category-option.is-active {
  border-color: rgba(49, 120, 95, 0.35);
  background: rgba(219, 233, 223, 0.76);
  color: var(--mint-ink);
}

.tag-item-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 246px;
  padding: 0;
  background: transparent;
}

.tag-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.tag-panel-heading strong {
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 900;
}

.tag-panel-heading span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

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

.tag-option {
  min-height: 48px;
  padding: 9px 11px;
  font-size: 15px;
  text-align: left;
}

.tag-option.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.tag-option:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}

.intake-form textarea {
  min-height: 112px;
  resize: vertical;
}

.intake-form .check-option {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
}

.check-option input {
  width: 20px;
  min-height: 20px;
  flex: 0 0 auto;
}

.form-note-field {
  margin-top: 2px;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 3px solid rgba(49, 120, 95, 0.2);
  border-color: var(--mint-ink);
}

.file-field {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 148px;
  border: 1px dashed rgba(49, 120, 95, 0.34);
  border-radius: 8px;
  padding: 16px;
  background: rgba(219, 233, 223, 0.32);
}

.file-field > span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.file-field input {
  border-color: rgba(49, 120, 95, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.file-field em {
  color: #4f6f64;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.file-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.file-preview-grid:empty {
  display: none;
}

.file-preview-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(49, 120, 95, 0.18);
  border-radius: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.9);
}

.file-preview-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--surface-soft);
}

.file-preview-meta {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.file-preview-name {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-remove {
  min-height: 36px;
  border: 1px solid rgba(162, 77, 49, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff8f2;
  color: var(--accent-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.form-footer {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
  padding: 28px 0 0;
  border: 0;
  background: transparent;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.form-footer .btn {
  width: fit-content;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.form-footer p {
  max-width: 780px;
  margin: 0;
  color: #4f6f64;
  font-size: 16px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 92px;
  padding: 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-tagline {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    height: 720px;
  }

  .hero-gallery {
    min-height: 620px;
  }

  .phone-main {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .phone-back.one {
    left: calc(50% - 330px);
    right: auto;
  }

  .phone-back.two {
    right: calc(50% - 330px);
  }

  .demo-layout,
  .commerce-section,
  .detail-demo-section,
  .review-section {
    grid-template-columns: 1fr;
  }

  .cover-proof {
    grid-template-columns: 1fr;
  }

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

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

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

  .hours-row {
    grid-template-columns: 1fr;
  }

  .hours-row-header {
    grid-template-columns: 58px 1fr;
    align-items: center;
  }

  .hours-status {
    grid-column: auto;
  }

  .app-preview {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .social-entry {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: stretch;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 64px;
    padding: 0 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .hero,
  .section,
  .proof-band,
  .join-section {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    gap: 26px;
    padding: 34px 0 28px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    font-size: 13px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.08;
    white-space: nowrap;
  }

  h1 span {
    display: inline;
  }

  h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-note {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .hero-actions .btn,
  .join-section .btn,
  .form-footer .btn {
    width: 100%;
  }

  .hero-text-link {
    margin: 2px auto 0;
    font-size: 16px;
  }

  .intake-form fieldset {
    padding: 24px 0;
  }

  .form-footer {
    padding: 24px 0 0;
  }

  .social-entry {
    margin-top: 30px;
    padding: 24px 0 0;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .social-links a {
    min-height: 58px;
    gap: 8px;
    padding: 10px 8px;
    font-size: 15px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

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

  .mini-action {
    width: 100%;
    padding: 10px 8px;
  }

  .choice-group {
    min-height: auto;
  }

  .tag-picker-layout {
    grid-template-columns: minmax(118px, 0.38fr) minmax(0, 1fr);
    gap: 8px;
  }

  .tag-category-list {
    max-height: 360px;
  }

  .category-option,
  .tag-option {
    min-height: 48px;
    padding: 9px 10px;
    font-size: 15px;
  }

  .tag-item-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    height: 500px;
    min-height: 500px;
    overflow: hidden;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .hero-cover,
  .hero-cover.large {
    grid-row: auto;
    min-height: 280px;
  }

  .phone {
    width: 220px;
    height: 476px;
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-main {
    width: 250px;
    height: 542px;
    top: 4px;
  }

  .phone-back.one {
    left: -4px;
    top: 76px;
  }

  .phone-back.two {
    right: -4px;
    top: 90px;
  }

  .proof-band,
  .demo-layout,
  .app-preview,
  .form-grid.two,
  .choice-grid,
  .review-gallery,
  .cover-grid,
  .help-grid,
  .store-wall,
  .info-grid,
  .join-section {
    grid-template-columns: 1fr;
  }

  .cover-grid .cover-card:first-child {
    grid-column: auto;
    min-height: 360px;
  }

  .section {
    padding: 54px 0;
  }

  .proof-band {
    padding-bottom: 36px;
  }

  .proof-band div,
  .caption,
  .store-card {
    min-height: auto;
  }

  .proof-band strong {
    font-size: 21px;
  }

  .caption {
    padding: 16px;
  }

  .store-ribbon {
    gap: 8px;
  }

  .store-ribbon span {
    font-size: 12px;
  }

  .cover-card,
  .cover-card.large {
    min-height: 360px;
  }

  .cover-card div {
    padding: 20px;
  }

  .cover-card strong {
    font-size: 24px;
  }

  .cover-mini-wall {
    grid-column: auto;
    min-height: auto;
    padding: 12px;
  }

  .cover-mini-heading {
    display: grid;
    align-items: start;
    gap: 4px;
  }

  .cover-mini-heading strong {
    max-width: none;
    font-size: 16px;
    text-align: left;
  }

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

  .mini-store-tile {
    min-height: 122px;
  }

  .commerce-section,
  .detail-demo-section,
  .review-section {
    gap: 28px;
  }

  .app-preview {
    display: grid;
    gap: 14px;
    min-height: auto;
    width: 100%;
  }

  .app-phone,
  .app-phone.main,
  .app-phone.side {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 330px);
    height: auto;
    aspect-ratio: 0.46;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }

  .store-card strong {
    margin: 16px 0 8px;
    font-size: 20px;
  }

  .info-grid span {
    min-height: 62px;
    font-size: 16px;
  }

  .help-grid article {
    min-height: auto;
  }

  .join-section {
    gap: 18px;
    padding: 30px 20px;
  }

  .intake-form fieldset {
    padding: 24px 0;
  }

  .form-footer {
    padding: 24px 0 0;
  }

  .form-footer .btn {
    width: 100%;
  }

  .site-footer {
    align-items: center;
    justify-content: flex-start;
    padding: 24px 18px;
  }

  .footer-brand-line {
    gap: 10px;
  }

  .footer-tagline {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 0 14px;
  }

  .brand {
    font-size: 15px;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 14px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

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

  .file-preview-grid {
    grid-template-columns: 1fr;
  }

  .hours-tools,
  .hours-row {
    grid-template-columns: 1fr;
  }

  .hours-row-header,
  .hours-slot {
    grid-template-columns: 1fr;
  }
}
