/* OnMyMenu product site styles — namespaced with omm- prefix.
   Self-contained: does not import or depend on other OmniSaver stylesheets.
   Visual language mirrors the iOS app: warm paper, terracotta accent,
   Noto/Georgia serif headings, 4:5 Polaroid cards, continuous rounded rects. */

:root {
  --omm-bg: #f7f4ee;
  --omm-paper: #fffcf6;
  --omm-paper-2: #fdfbf5;
  --omm-text: #201c19;
  --omm-text-muted: #776f68;
  --omm-text-light: #9b928a;
  --omm-accent: #d85b3f;
  --omm-accent-hover: #c44a31;
  --omm-accent-soft: #e8d8cb;
  --omm-border: #e6ded4;
  --omm-border-strong: #d9cfc3;
  --omm-dark: #2b211d;
  --omm-dark-2: #3d2f29;
  --omm-white: #ffffff;

  --omm-serif: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --omm-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;

  --omm-page-width: 1200px;
  --omm-content-width: 1080px;
  --omm-text-width: 680px;

  --omm-radius-xs: 5px;
  --omm-radius-sm: 10px;
  --omm-radius-md: 18px;
  --omm-radius-lg: 24px;
  --omm-radius-xl: 32px;
  --omm-radius-pill: 999px;

  --omm-shadow-xs: 0 2px 8px rgba(43, 33, 29, 0.06);
  --omm-shadow-sm: 0 6px 18px rgba(43, 33, 29, 0.08);
  --omm-shadow-md: 0 16px 40px rgba(43, 33, 29, 0.1);
  --omm-shadow-lg: 0 28px 80px rgba(43, 33, 29, 0.12);
  --omm-shadow-polaroid: 0 14px 34px rgba(43, 33, 29, 0.12), 0 4px 10px rgba(43, 33, 29, 0.06);

  --omm-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --omm-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset within OnMyMenu pages only */
.omm-root *,
.omm-root *::before,
.omm-root *::after { box-sizing: border-box; margin: 0; padding: 0; }

.omm-root {
  font-family: var(--omm-sans);
  background: var(--omm-bg);
  color: var(--omm-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.omm-root html { scroll-behavior: smooth; }
html.omm-root { scroll-behavior: smooth; }
.omm-root body { min-height: 100vh; }

.omm-root a { color: inherit; text-decoration: none; }
.omm-root img { max-width: 100%; height: auto; display: block; }
.omm-root button { font-family: inherit; cursor: pointer; border: none; background: none; }
.omm-root :focus-visible { outline: 2.5px solid var(--omm-accent); outline-offset: 2.5px; border-radius: 4px; }

/* Paper grain texture */
.omm-page {
  overflow-x: hidden;
  position: relative;
}
.omm-page::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: multiply;
}

/* Skip link */
.omm-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--omm-dark); color: var(--omm-paper);
  padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.omm-skip-link:focus { left: 0; }

/* Layout */
.omm-container {
  width: 100%; max-width: var(--omm-page-width); margin: 0 auto; padding: 0 28px;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) { .omm-container { padding: 0 40px; } }
.omm-content { max-width: var(--omm-content-width); margin: 0 auto; }
.omm-text-col { max-width: var(--omm-text-width); }

/* ============ Header ============ */
.omm-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.omm-header.omm-is-scrolled {
  background: rgba(247, 244, 238, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--omm-border);
}
.omm-header-inner {
  max-width: var(--omm-page-width); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 20px;
}
@media (min-width: 1024px) { .omm-header-inner { padding: 16px 40px; } }

.omm-brand { display: inline-flex; align-items: center; gap: 10px; }
.omm-brand-icon { width: 32px; height: 32px; border-radius: 8px; box-shadow: var(--omm-shadow-xs); }
.omm-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.omm-brand-name { font-family: var(--omm-serif); font-size: 20px; font-weight: 700; color: var(--omm-text); letter-spacing: 0; }
.omm-brand-sub { font-size: 10.5px; color: var(--omm-text-muted); font-weight: 500; letter-spacing: 0.04em; margin-top: 2px; }

.omm-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.omm-nav a { font-size: 14.5px; color: var(--omm-text); font-weight: 500; transition: color .2s; position: relative; }
.omm-nav a:not(.omm-btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--omm-accent); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--omm-ease-out);
}
.omm-nav a:hover { color: var(--omm-accent); }
.omm-nav a:not(.omm-btn):hover::after { transform: scaleX(1); }

.omm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--omm-sans); font-weight: 600; font-size: 15px; line-height: 1;
  border-radius: var(--omm-radius-pill); padding: 13px 24px;
  border: 1.5px solid transparent; transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  min-height: 48px; text-align: center;
}
.omm-root .omm-btn-primary { background: var(--omm-accent); color: var(--omm-white); box-shadow: 0 4px 14px rgba(216, 91, 63, 0.28); }
.omm-root .omm-btn-primary:hover { background: var(--omm-accent-hover); color: var(--omm-white); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(216, 91, 63, 0.34); }
.omm-root .omm-btn-primary:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; transform: none; }
.omm-root .omm-btn-ghost { background: rgba(255, 252, 246, 0.7); color: var(--omm-text); border-color: var(--omm-border-strong); }
.omm-root .omm-btn-ghost:hover { background: var(--omm-white); border-color: var(--omm-text-muted); color: var(--omm-text); }
.omm-root .omm-btn-light { background: var(--omm-paper); color: var(--omm-dark); }
.omm-root .omm-btn-light:hover { background: var(--omm-white); }
.omm-btn-lg { padding: 16px 28px; font-size: 16px; }
.omm-btn-sm { padding: 10px 18px; font-size: 14px; }
.omm-status-pill { cursor: default; user-select: none; }
.omm-status-pill:hover { transform: none; }

.omm-menu-toggle {
  display: none; background: var(--omm-paper); border: 1px solid var(--omm-border); padding: 8px;
  color: var(--omm-text); border-radius: var(--omm-radius-sm); box-shadow: var(--omm-shadow-xs);
}
.omm-menu-toggle svg { width: 24px; height: 24px; }

.omm-mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 8px 20px 22px;
  background: rgba(247, 244, 238, 0.96); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--omm-border);
}
.omm-mobile-nav a { padding: 14px 8px; font-size: 17px; color: var(--omm-text); border-bottom: 1px solid var(--omm-border); font-weight: 500; }
.omm-mobile-nav a:last-of-type { border-bottom: none; }
.omm-mobile-nav .omm-btn { margin-top: 12px; }

/* ============ Typography ============ */
.omm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--omm-accent); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.omm-eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: var(--omm-accent); opacity: .5;
}
.omm-h1 {
  font-family: var(--omm-serif); font-weight: 700; color: var(--omm-text);
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02; letter-spacing: 0; margin-bottom: 24px;
}
.omm-h2 {
  font-family: var(--omm-serif); font-weight: 700; color: var(--omm-text);
  font-size: clamp(30px, 3.6vw, 52px); line-height: 1.05; letter-spacing: 0; margin-bottom: 20px;
}
.omm-h3 { font-family: var(--omm-serif); font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.15; color: var(--omm-text); margin-bottom: 10px; }
.omm-lead { font-size: clamp(18px, 1.55vw, 22px); color: var(--omm-text-muted); line-height: 1.55; max-width: 560px; margin-bottom: 34px; }
.omm-section-label { font-size: 12px; font-weight: 700; color: var(--omm-accent); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 14px; }
.omm-section-lead { font-size: clamp(17px, 1.35vw, 20px); color: var(--omm-text-muted); line-height: 1.6; }

/* ============ Hero ============ */
.omm-hero { padding: 150px 0 90px; position: relative; scroll-margin-top: 84px; }
.omm-section[id], .omm-final-cta[id] { scroll-margin-top: 84px; }
.omm-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.omm-hero .omm-lead { max-width: 520px; }
.omm-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }
.omm-hero-note { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--omm-text-muted); }
.omm-hero-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #647f57; }

/* Hero visual — real screenshot + floating polaroid + result card */
.omm-hero-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: visible; }
.omm-hero-shot {
  position: relative; z-index: 2; width: auto; height: 520px; max-height: 72vh; border-radius: 28px;
  box-shadow: var(--omm-shadow-lg), 0 0 0 7px var(--omm-paper), 0 0 0 8px var(--omm-border);
  object-fit: cover;
}

/* Floating polaroid + result card in hero */
.omm-polaroid-float {
  position: absolute; width: 160px; background: var(--omm-paper); padding: 9px 9px 12px;
  border-radius: var(--omm-radius-xs); box-shadow: var(--omm-shadow-polaroid); z-index: 3;
}
.omm-polaroid-float .omm-photo { aspect-ratio: 4/5; border-radius: 2px; margin-bottom: 7px; }
.omm-polaroid-float .omm-mini-name { font-family: var(--omm-serif); font-size: 14px; color: var(--omm-text); font-weight: 700; text-align: center; }
.omm-polaroid-float.omm-float-a { top: 30px; right: 0; transform: rotate(5deg); }

.omm-result-card {
  position: absolute; bottom: 14px; right: 0; width: 190px; z-index: 4;
  background: var(--omm-dark-2); color: var(--omm-paper); border-radius: var(--omm-radius-md);
  padding: 16px; box-shadow: var(--omm-shadow-lg); transform: rotate(-2deg);
}
.omm-result-card .omm-result-title { font-size: 10px; color: var(--omm-accent-soft); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.omm-result-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-bottom: 1px solid rgba(255,252,246,.08); }
.omm-result-row:last-child { border-bottom: none; }
.omm-result-row b { font-family: var(--omm-serif); font-weight: 600; }

/* ============ Food photos ============ */
.omm-photo {
  width: 100%; height: 100%; display: block; object-fit: cover;
}

/* ============ Sections ============ */
.omm-section { padding: 100px 0; position: relative; z-index: 1; scroll-margin-top: 84px; }
.omm-section-head { max-width: var(--omm-text-width); margin-bottom: 56px; }
.omm-section-head.omm-center { margin-left: auto; margin-right: auto; text-align: center; }

/* How it works */
.omm-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; max-width: 940px; }
.omm-step { position: relative; padding-top: 8px; }
.omm-step-num {
  font-family: var(--omm-serif); font-size: 13px; color: var(--omm-accent); font-weight: 700;
  margin-bottom: 14px; display: inline-block; padding-bottom: 4px; border-bottom: 1.5px solid var(--omm-accent-soft);
}
.omm-step h3 { font-family: var(--omm-serif); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.omm-step p { font-size: 15px; color: var(--omm-text-muted); line-height: 1.65; margin-bottom: 18px; }
.omm-step-shot { width: 100%; max-width: 240px; border-radius: var(--omm-radius-sm); box-shadow: var(--omm-shadow-sm); aspect-ratio: 4/5; object-fit: cover; }
.omm-step:nth-child(3) .omm-step-shot { max-width: 160px; aspect-ratio: auto; height: auto; }

/* Your menu */
.omm-menu-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 24px auto 0; max-width: 860px; }
.omm-card-polaroid {
  background: var(--omm-paper); padding: 10px 10px 0; border-radius: var(--omm-radius-xs);
  box-shadow: var(--omm-shadow-polaroid); transition: transform .35s var(--omm-ease-out), box-shadow .35s ease;
  max-width: 260px; margin: 0 auto; width: 100%;
}
.omm-card-polaroid:hover { transform: translateY(-6px) rotate(0deg); box-shadow: var(--omm-shadow-md); }
.omm-card-polaroid .omm-photo { aspect-ratio: 4/5; border-radius: 2px; }
.omm-card-caption { min-height: 72px; padding: 14px 2px 18px; }
.omm-card-polaroid .omm-polaroid-name { font-family: var(--omm-serif); font-size: 19px; font-weight: 700; color: var(--omm-text); letter-spacing: 0; }
.omm-card-polaroid .omm-polaroid-note { font-size: 13px; color: var(--omm-text-muted); margin-top: 2px; }
.omm-menu-wall .omm-card-polaroid:nth-child(odd) { transform: rotate(-1.2deg); }
.omm-menu-wall .omm-card-polaroid:nth-child(even) { transform: rotate(0.8deg); }
.omm-menu-wall .omm-card-polaroid:nth-child(3n) { transform: rotate(-0.5deg); }
.omm-menu-wall .omm-card-polaroid:hover { transform: translateY(-6px) rotate(0deg); }

.omm-menu-points { list-style: none; max-width: var(--omm-text-width); margin-top: 52px; }
.omm-menu-points li { font-family: var(--omm-serif); font-size: clamp(20px, 2vw, 26px); color: var(--omm-text); padding: 22px 0; border-bottom: 1px solid var(--omm-border); }
.omm-menu-points li:last-child { border-bottom: none; }

/* Picking — dark section */
.omm-picking { background: var(--omm-dark); color: var(--omm-paper); }
.omm-picking .omm-h2 { color: var(--omm-paper); }
.omm-picking .omm-section-lead { color: rgba(255,252,246,0.72); }
.omm-picking .omm-section-label { color: var(--omm-accent); }
/* Picking flow screenshots */
.omm-pick-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 52px 0; }
.omm-pick-step { background: rgba(255,252,246,0.04); border: 1px solid rgba(255,252,246,0.1); border-radius: var(--omm-radius-md); padding: 28px; }
.omm-pick-step h3 { color: var(--omm-paper); font-family: var(--omm-serif); font-size: 22px; margin-bottom: 8px; }
.omm-pick-step p { color: rgba(255,252,246,0.68); font-size: 15px; line-height: 1.6; }
.omm-pick-step .omm-pick-tag { font-size: 11.5px; color: var(--omm-accent); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 14px; }
.omm-pick-shot { width: 100%; height: 360px; object-fit: cover; object-position: top center; border-radius: var(--omm-radius-sm); margin-top: 20px; box-shadow: var(--omm-shadow-md); }

.omm-pick-demo {
  background: var(--omm-paper); color: var(--omm-text); border-radius: var(--omm-radius-lg);
  padding: 32px; margin-top: 28px; box-shadow: var(--omm-shadow-lg);
}
.omm-pick-demo-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--omm-border); }
.omm-pick-demo-title-wrap { display: flex; align-items: center; gap: 12px; }
.omm-pick-demo-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--omm-accent); color: var(--omm-white);
  display: grid; place-items: center;
}
.omm-pick-demo-icon svg { width: 20px; height: 20px; }
.omm-pick-demo-title { font-family: var(--omm-serif); font-size: 22px; font-weight: 700; }
.omm-pick-demo-note { font-size: 12px; color: var(--omm-text-muted); font-weight: 500; }
.omm-pick-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.omm-pick-item {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--omm-bg); border: 1.5px solid var(--omm-border); border-radius: var(--omm-radius-md);
  padding: 12px 14px; transition: border-color .2s, background .2s, transform .1s;
}
.omm-pick-item:hover { border-color: var(--omm-accent); }
.omm-pick-item:active { transform: scale(0.99); }
.omm-pick-item[aria-pressed="true"] { border-color: var(--omm-accent); background: rgba(232, 216, 203, 0.55); }
.omm-pick-thumb { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(43,33,29,.1); }
.omm-pick-item-name { font-weight: 600; font-size: 15px; }
.omm-pick-item-state { margin-left: auto; font-size: 13px; color: var(--omm-text-muted); font-weight: 500; }
.omm-pick-item[aria-pressed="true"] .omm-pick-item-state { color: var(--omm-accent); font-weight: 700; }
.omm-pick-demo-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.omm-pick-count { font-size: 15px; color: var(--omm-text-muted); font-weight: 500; }
.omm-pick-done { display: none; align-items: center; gap: 8px; font-weight: 600; color: var(--omm-dark); }
.omm-pick-done.omm-show { display: flex; }
.omm-pick-done svg { width: 20px; height: 20px; color: #647f57; }

/* Demo results panel + try again */
.omm-pick-results { margin-top: 22px; padding: 22px; background: var(--omm-bg); border: 1px solid var(--omm-border); border-radius: var(--omm-radius-md); }
.omm-pick-results-title { font-family: var(--omm-serif); font-size: 18px; font-weight: 700; color: var(--omm-text); margin-bottom: 14px; }
.omm-pick-results-meta { margin-top: 12px; font-size: 13px; color: var(--omm-text-muted); }
.omm-pick-again-wrap { margin-top: 16px; }

.omm-pick-example { margin-top: 32px; padding: 26px; border: 1px solid rgba(255,252,246,0.12); border-radius: var(--omm-radius-md); }
.omm-pick-example-title { font-size: 11px; color: var(--omm-accent); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 16px; }
.omm-pick-result-row { display: flex; align-items: center; gap: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,252,246,0.08); }
.omm-pick-result-row:last-child { border-bottom: none; }
.omm-pick-result-name { font-family: var(--omm-serif); flex: 1; font-size: 16px; }
.omm-pick-result-track { flex: 1.2; height: 8px; border-radius: 4px; background: rgba(255,252,246,0.1); overflow: hidden; }
.omm-pick-result-bar { height: 100%; border-radius: 4px; background: var(--omm-accent); }
.omm-pick-result-count { font-family: var(--omm-serif); font-size: 16px; font-weight: 700; min-width: 28px; text-align: right; }

/* Sharing */
.omm-share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.omm-share-grid > div:last-child { max-width: 480px; }
.omm-share-cards { position: relative; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; align-items: flex-end; }
.omm-share-card { border-radius: var(--omm-radius-xs); box-shadow: var(--omm-shadow-polaroid); height: auto; }
.omm-share-card.omm-square { width: 220px; }
.omm-share-card.omm-portrait { width: 200px; transform: rotate(4deg); }

.omm-share-menu-mock { border-radius: var(--omm-radius-md); box-shadow: var(--omm-shadow-md); max-width: 360px; width: 100%; height: auto; }
.omm-share-points { list-style: none; margin-top: 32px; }
.omm-share-points li { font-family: var(--omm-serif); font-size: clamp(18px, 1.7vw, 24px); color: var(--omm-text); padding: 18px 0; border-bottom: 1px solid var(--omm-border); }
.omm-share-points li:last-child { border-bottom: none; }

/* Privacy section */
.omm-privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.omm-privacy-col { background: var(--omm-paper); border: 1px solid var(--omm-border); border-radius: var(--omm-radius-lg); padding: 36px; box-shadow: var(--omm-shadow-sm); }
.omm-privacy-col h3 { font-family: var(--omm-serif); font-size: 24px; margin-bottom: 18px; }
.omm-privacy-col ul { list-style: none; }
.omm-privacy-col li { font-size: 16px; color: var(--omm-text); padding: 11px 0; border-bottom: 1px solid var(--omm-border); display: flex; align-items: center; gap: 11px; }
.omm-privacy-col li:last-child { border-bottom: none; }
.omm-privacy-col li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--omm-accent); flex-shrink: 0; }
.omm-privacy-foot { font-size: 16px; color: var(--omm-text-muted); }

/* Philosophy */
.omm-philosophy { text-align: center; padding: 112px 0; }
.omm-philosophy .omm-text-col { margin: 0 auto; }
.omm-philosophy h2 { margin-bottom: 40px; }
.omm-philosophy p { font-family: var(--omm-serif); font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4; color: var(--omm-text); margin-bottom: 14px; }
.omm-philosophy p.omm-philosophy-muted { color: var(--omm-text-muted); }
.omm-philosophy-photo { margin: 48px auto 0; border-radius: var(--omm-radius-md); box-shadow: var(--omm-shadow-md); max-width: 100%; width: 800px; height: auto; }

/* FAQ */
.omm-faq { max-width: var(--omm-text-width); margin: 0 auto; }
.omm-faq details { border-bottom: 1px solid var(--omm-border); }
.omm-faq summary {
  list-style: none; cursor: pointer; padding: 26px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--omm-serif); font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; color: var(--omm-text);
}
.omm-faq summary::-webkit-details-marker { display: none; }
.omm-faq summary::after { content: "+"; font-family: var(--omm-sans); font-size: 22px; color: var(--omm-accent); transition: transform .2s; }
.omm-faq details[open] summary::after { content: "−"; }
.omm-faq .omm-faq-a { padding: 0 4px 26px; font-size: 16.5px; color: var(--omm-text-muted); line-height: 1.65; max-width: 620px; }

/* Contextual links support the decision a visitor is already making. */
.omm-reading { max-width: var(--omm-content-width); margin: 72px auto 0; padding: 28px 0; border-top: 1px solid var(--omm-border); border-bottom: 1px solid var(--omm-border); display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: end; gap: 36px; }
.omm-reading .omm-section-label { display: block; }
.omm-reading .omm-h3 { margin: 0; max-width: 420px; }
.omm-reading-links { display: grid; }
.omm-reading-links a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--omm-border); font-family: var(--omm-serif); font-size: 18px; font-weight: 700; transition: color .2s; }
.omm-reading-links a:first-child { border-top: 1px solid var(--omm-border); }
.omm-reading-links a:hover { color: var(--omm-accent); }
.omm-reading-links span { color: var(--omm-accent); font-family: var(--omm-sans); }

/* Final CTA */
.omm-final-cta { text-align: center; padding: 112px 0; background: var(--omm-paper); border-top: 1px solid var(--omm-border); border-bottom: 1px solid var(--omm-border); scroll-margin-top: 84px; }
.omm-final-cta h2 { margin-bottom: 36px; }
.omm-final-cta .omm-btn { margin-bottom: 28px; }
.omm-final-cta .omm-final-sub { font-size: 14.5px; color: var(--omm-text-muted); }
.omm-final-cta .omm-final-sub strong { color: var(--omm-text); font-weight: 600; }

/* ============ Footer ============ */
.omm-footer { background: var(--omm-bg); border-top: 1px solid var(--omm-border); padding: 64px 0 36px; position: relative; z-index: 1; }
.omm-footer-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; max-width: var(--omm-content-width); margin: 0 auto; padding: 0 32px; }
.omm-footer-brand .omm-brand { margin-bottom: 10px; }
.omm-footer-brand .omm-brand-icon { width: 38px; height: 38px; }
.omm-footer-brand .omm-brand-name { font-size: 20px; }
.omm-footer-brand .omm-brand-sub { font-size: 10px; }
.omm-footer-brand p { font-size: 14.5px; color: var(--omm-text-muted); max-width: 360px; line-height: 1.6; }
.omm-footer-links { display: flex; gap: 32px; justify-content: flex-end; flex-wrap: wrap; align-items: flex-start; }
.omm-footer-links a { font-size: 15px; color: var(--omm-text); font-weight: 500; }
.omm-footer-links a:hover { color: var(--omm-accent); }
.omm-footer-bottom { max-width: var(--omm-content-width); margin: 44px auto 0; padding: 20px 32px 0; border-top: 1px solid var(--omm-border); font-size: 13px; color: var(--omm-text-muted); }

/* ============ Legal pages ============ */
.omm-legal { padding: 150px 0 90px; }
.omm-legal .omm-text-col { margin: 0 auto; }
.omm-legal h1 { font-family: var(--omm-serif); font-size: clamp(34px, 4vw, 52px); margin-bottom: 16px; }
.omm-legal h2 { font-family: var(--omm-serif); font-size: 26px; margin: 44px 0 12px; }
.omm-legal p { font-size: 17px; color: var(--omm-text-muted); line-height: 1.7; margin-bottom: 16px; }
.omm-legal ul { list-style: none; margin-bottom: 24px; }
.omm-legal li { font-size: 17px; color: var(--omm-text-muted); padding: 6px 0; }
.omm-legal a { color: var(--omm-accent); font-weight: 600; }
.omm-legal a:hover { text-decoration: underline; }
.omm-legal .omm-back { display: inline-block; margin-top: 44px; font-size: 15px; color: var(--omm-text); font-weight: 500; }
.omm-legal .omm-back:hover { color: var(--omm-accent); }

/* ============ Reveal animation (graceful: visible without JS) ============ */
.omm-reveal { opacity: 1; transform: none; }
html.omm-js .omm-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--omm-ease-out), transform .8s var(--omm-ease-out); }
html.omm-js .omm-reveal.omm-in { opacity: 1; transform: none; }
.omm-hidden { display: none !important; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .omm-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .omm-hero-visual { min-height: 480px; margin-top: 8px; }
  .omm-steps { grid-template-columns: repeat(2, 1fr); }
  .omm-menu-wall { grid-template-columns: repeat(2, 1fr); }
  .omm-pick-flow { grid-template-columns: 1fr; }
  .omm-share-grid { grid-template-columns: 1fr; }
  .omm-privacy-grid { grid-template-columns: 1fr; }
  .omm-reading { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 768px) {
  .omm-container, .omm-header-inner { padding-left: 20px; padding-right: 20px; }
  .omm-nav { display: none; }
  .omm-menu-toggle { display: inline-flex; }
  .omm-mobile-nav.omm-open { display: flex; }
  .omm-hero { padding: 106px 0 48px; }
  .omm-h1 { font-size: 38px; line-height: 1.04; }
  .omm-lead { font-size: 18px; line-height: 1.5; margin-bottom: 28px; }
  .omm-hero-visual { min-height: 420px; }
  .omm-phone { width: 230px; height: 470px; border-radius: 40px; }
  .omm-phone-screen { border-radius: 30px; padding-top: 30px; }
  .omm-phone::before { width: 80px; height: 22px; }
.omm-polaroid-float { display: none; }
  .omm-result-card { display: none; }
  .omm-hero-shot { height: 420px; border-radius: 22px; }
  .omm-section { padding: 60px 0; }
  .omm-steps { grid-template-columns: 1fr; gap: 28px; }
  .omm-step-shot { max-width: 200px; }
  .omm-step:nth-child(3) .omm-step-shot { max-width: 140px; }
  /* mobile: polaroid wall + sharing become horizontal scroll-snap */
  .omm-menu-wall, .omm-share-cards {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 16px; max-width: 100%;
    padding-bottom: 8px; margin: 24px 0 0; grid-template-columns: none;
  }
  .omm-menu-wall .omm-card-polaroid { flex: 0 0 72vw; max-width: 280px; scroll-snap-align: center; margin: 0; }
  .omm-share-cards .omm-share-card { flex: 0 0 70vw; max-width: 240px; scroll-snap-align: center; height: auto; }
  .omm-share-card.omm-square { width: 70vw; max-width: 220px; }
  .omm-share-card.omm-portrait { width: 70vw; max-width: 200px; transform: rotate(3deg); }
  .omm-pick-list { grid-template-columns: 1fr; }
  .omm-pick-demo { padding: 22px; }
  .omm-pick-shot { height: 410px; }
  .omm-footer-inner { grid-template-columns: 1fr; }
  .omm-footer-links { justify-content: flex-start; }
  .omm-philosophy { padding: 72px 0; }
  .omm-final-cta { padding: 72px 0; }
  .omm-reading { margin-top: 56px; gap: 24px; }
}

@media (max-width: 480px) {
  .omm-hero-actions { flex-direction: column; align-items: stretch; }
  .omm-hero-actions .omm-btn { width: 100%; }
  .omm-pick-demo-head { flex-direction: column; align-items: flex-start; }
  .omm-menu-wall .omm-card-polaroid { flex: 0 0 78vw; }
  .omm-pick-step { padding: 22px; }
  .omm-pick-shot { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  html.omm-root { scroll-behavior: auto; }
  html.omm-js .omm-reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .omm-card-polaroid, .omm-share-card, .omm-polaroid-float, .omm-result-card { transition: none !important; }
}
