:root {
  --brand-primary: #5fbec4;
  --brand-deep: #245f63;
  --brand-soft: #e6f6f7;
  --ink: #172629;
  --muted: #68777a;
  --cream: #f4f7f7;
  --paper: #ffffff;
  --orange: var(--brand-primary);
  --orange-dark: var(--brand-deep);
  --green: var(--brand-deep);
  --lime: var(--brand-soft);
  --line: rgba(36, 95, 99, 0.14);
  --shadow: 0 28px 70px rgba(27, 75, 79, 0.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell { overflow: hidden; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.display, h1, h2, h3 { font-family: inherit; font-weight: 850; letter-spacing: -.055em; line-height: 1; }
.section-title { max-width: 760px; margin: 0; font-size: clamp(40px, 6vw, 72px); }
.section-subtitle { max-width: 610px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.section-head { margin-bottom: 48px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .section-subtitle { margin-left: auto; margin-right: auto; }

.nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-logo { width: auto; height: 38px; max-width: 150px; object-fit: contain; }
.brand-wordmark { display: grid; gap: 1px; }
.brand-wordmark strong { font-size: 18px; font-weight: 900; letter-spacing: -.045em; line-height: 1; }
.brand-wordmark small { color: var(--brand-deep); font-size: 8px; font-weight: 850; letter-spacing: .15em; line-height: 1; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-primary); color: white; box-shadow: 0 12px 30px rgba(95, 190, 196, .27); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 16px 34px rgba(36, 95, 99, .25); }
.btn-dark { background: var(--ink); color: white; }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.35); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 12px; }

.hero { position: relative; min-height: 760px; padding: 145px 0 85px; background: radial-gradient(circle at 78% 15%, rgba(95,190,196,.25), transparent 34%), linear-gradient(180deg, #f7fbfb, var(--cream)); }
.hero::before { content: ""; position: absolute; width: 580px; height: 580px; right: -170px; top: -190px; border: 1px solid rgba(95,190,196,.16); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.32), 0 0 0 180px rgba(255,255,255,.2); }
.hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-top: 22px; }
.hero h1 { margin: 0; max-width: 620px; font-size: clamp(58px, 7.4vw, 102px); }
.hero h1 em { color: var(--brand-deep); font-style: normal; font-weight: 850; }
.hero-text { max-width: 550px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 34px; font-size: 12px; font-weight: 700; color: var(--muted); }
.avatar-stack { display: flex; }
.avatar-stack span { display: grid; place-items: center; width: 31px; height: 31px; margin-right: -8px; border: 2px solid var(--cream); border-radius: 50%; color: white; font-size: 10px; font-weight: 800; background: var(--brand-deep); }
.avatar-stack span:nth-child(2) { background: var(--brand-primary); }
.avatar-stack span:nth-child(3) { background: #7cd2d7; }
.hero-visual { position: relative; height: 620px; }
.hero-photo { position: absolute; inset: 12px 25px 24px 80px; border: 7px solid rgba(255,255,255,.88); border-radius: 42px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(2deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; z-index: 3; padding: 13px 16px; border: 1px solid rgba(95,190,196,.18); border-radius: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 15px 34px rgba(36,95,99,.12); font-size: 12px; font-weight: 800; animation: hover 5s ease-in-out infinite; }
.float-card::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--orange); }
.float-card:nth-of-type(2) { left: 8px; top: 170px; transform: rotate(-5deg); }
.float-card:nth-of-type(3) { right: -2px; top: 80px; animation-delay: -1s; }
.float-card:nth-of-type(4) { left: 24px; bottom: 90px; animation-delay: -2s; }
.float-card:nth-of-type(5) { right: 4px; bottom: 150px; animation-delay: -3s; }
@keyframes hover { 50% { translate: 0 -8px; } }

.marquee { background: var(--ink); color: white; overflow: hidden; transform: rotate(-1deg) scale(1.02); }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; padding: 14px 0; }
.marquee-track span { padding: 0 28px; font-family: Georgia, serif; font-size: 17px; font-style: italic; }
.marquee-track span::after { content: " +"; color: var(--orange); margin-left: 28px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 118px 0; }
.section-paper { background: var(--paper); }
.section-dark { position: relative; background: var(--ink); color: white; }
.section-dark .section-subtitle, .section-dark .eyebrow { color: rgba(255,255,255,.65); }
.education-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.education-photo { position: relative; height: 640px; border-radius: var(--radius); overflow: hidden; }
.education-photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-card { position: absolute; right: -20px; bottom: -20px; max-width: 280px; padding: 26px; border-radius: 20px; background: var(--lime); color: var(--ink); box-shadow: var(--shadow); transform: rotate(-3deg); }
.quote-card strong { display: block; font-family: Georgia, serif; font-size: 25px; line-height: 1.05; letter-spacing: -.03em; }
.quote-card span { display: block; margin-top: 12px; font-size: 12px; font-weight: 800; }
.step-list { display: grid; gap: 8px; margin-top: 40px; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.step-number { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-dark); font: italic 20px Georgia, serif; }
.step h3 { margin: 0 0 6px; font-family: inherit; font-size: 16px; letter-spacing: -.01em; line-height: 1.3; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.comparison { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.comparison-head, .comparison-row { display: grid; grid-template-columns: .8fr 1fr 1fr; }
.comparison-head > div { padding: 26px; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.comparison-head > div:nth-child(3) { color: white; background: var(--green); }
.comparison-row > div { padding: 22px 26px; border-top: 1px solid var(--line); }
.comparison-row > div:first-child { font-weight: 800; }
.comparison-row > div:nth-child(2) { color: var(--muted); background: #f1f5f5; }
.comparison-row > div:nth-child(3) { color: white; background: var(--green); }

.content-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.type-card { position: relative; min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); overflow: hidden; transition: transform .25s ease, background .25s ease; }
.type-card:hover { transform: translateY(-5px); background: white; }
.type-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--brand-soft); color: var(--brand-deep); font-size: 16px; font-weight: 900; }
.type-card h3 { margin: 70px 0 8px; font-size: 31px; }
.type-card p { margin: 0; color: var(--muted); font-size: 14px; }
.type-card:nth-child(2), .type-card:nth-child(5) { background: var(--green); color: white; }
.type-card:nth-child(2) p, .type-card:nth-child(5) p { color: rgba(255,255,255,.62); }

.program { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-primary), var(--brand-deep)); color: white; text-align: center; }
.program::before, .program::after { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.program::before { left: -240px; top: -270px; }
.program::after { right: -240px; bottom: -270px; }
.program .section-title { max-width: 900px; margin: auto; }
.program .section-subtitle { color: rgba(255,255,255,.8); margin-left: auto; margin-right: auto; }
.program .btn { margin-top: 30px; }
.counter { display: inline-flex; margin-bottom: 24px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 100px; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.not-influencer { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: end; }
.not-influencer h2 { margin: 0; font-size: clamp(70px, 12vw, 150px); }
.not-influencer h2 em { display: block; color: var(--orange); font-weight: 400; }
.big-copy { max-width: 600px; font: 32px/1.3 Georgia, serif; letter-spacing: -.035em; }
.big-copy strong { color: var(--orange-dark); font-weight: 400; font-style: italic; }

.gallery { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 270px 270px; gap: 14px; }
.post-card { position: relative; border-radius: 20px; overflow: hidden; background: #ddd; }
.post-card:first-child { grid-row: 1 / 3; }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover img { transform: scale(1.04); }
.post-meta { position: absolute; inset: auto 10px 10px; display: flex; justify-content: space-between; align-items: end; padding: 14px; border-radius: 14px; color: white; background: linear-gradient(90deg, rgba(15,20,15,.75), rgba(15,20,15,.2)); backdrop-filter: blur(5px); }
.post-meta strong { display: block; font-size: 13px; }
.post-meta span { font-size: 11px; opacity: .72; }
.post-metric { font-size: 11px; font-weight: 800; }
.gallery-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--brand-deep), var(--brand-primary)); }
.gallery-placeholder.alt { background: linear-gradient(135deg, var(--brand-primary), #7cd2d7); }

.spotlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.creator-card { padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.04); }
.creator-image { position: relative; height: 310px; border-radius: 17px; overflow: hidden; }
.creator-image img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; left: 12px; top: 12px; padding: 7px 10px; border-radius: 100px; background: var(--brand-primary); color: white; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.creator-info { padding: 18px 5px 5px; }
.creator-info h3 { margin: 0; font-size: 28px; }
.creator-info p { min-height: 42px; margin: 10px 0 16px; color: rgba(255,255,255,.55); font-size: 13px; }
.creator-stats { display: flex; gap: 20px; font-size: 11px; color: rgba(255,255,255,.5); }
.creator-stats strong { color: white; }

.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.founder-photo { height: 580px; border-radius: var(--radius); overflow: hidden; background: var(--green); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.signature { margin-top: 30px; font: italic 30px Georgia, serif; color: var(--orange-dark); }

.cta-section { padding: 70px 0; }
.cta-box { position: relative; overflow: hidden; padding: 90px 30px; border-radius: 32px; color: white; background: var(--green); text-align: center; }
.cta-box::before { content: "C"; position: absolute; left: 50%; top: 47%; translate: -50% -50%; color: rgba(255,255,255,.035); font: 700 500px Georgia, serif; }
.cta-box > * { position: relative; z-index: 1; }
.store-buttons { display: flex; justify-content: center; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.store-button { display: flex; align-items: center; gap: 10px; min-width: 155px; padding: 10px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: white; color: var(--ink); text-align: left; }
.store-button small { display: block; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.store-button strong { display: block; font-size: 14px; }
.store-icon { font-size: 22px; font-weight: 900; }
.footer { padding: 45px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 22px; }

/* Admin */
.admin { min-height: 100vh; background: #f4f5f0; color: #253027; }
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 24px 16px; border-right: 1px solid #e1e5dc; background: #fbfcf8; }
.sidebar .brand { padding: 6px 8px 26px; }
.admin-nav { display: grid; gap: 5px; }
.admin-nav a { padding: 11px 12px; border-radius: 9px; color: #728074; font-size: 12px; font-weight: 750; }
.admin-nav a:hover, .admin-nav a.active { color: #203426; background: #eaf0e6; }
.sidebar-foot { position: absolute; left: 16px; right: 16px; bottom: 20px; padding: 14px; border-radius: 12px; background: #eef3e9; font-size: 11px; color: #68766b; }
.admin-main { min-width: 0; padding: 30px 34px 60px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.admin-title h1 { margin: 0; font: 700 28px/1.2 inherit; letter-spacing: -.04em; }
.admin-title p { margin: 5px 0 0; color: #7b887d; font-size: 12px; }
.admin-card { border: 1px solid #e1e5dc; border-radius: 14px; background: white; box-shadow: 0 8px 25px rgba(40,60,43,.04); }
.page-list { overflow: hidden; }
.page-row { display: grid; grid-template-columns: 1.5fr 1fr .6fr .5fr; gap: 18px; align-items: center; padding: 17px 20px; border-top: 1px solid #edf0ea; font-size: 12px; }
.page-row:first-child { border-top: 0; }
.page-row.header { background: #f8faf6; color: #7d887f; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.page-name { font-weight: 850; }
.page-slug { color: #879287; }
.status { width: max-content; padding: 5px 8px; border-radius: 100px; background: #e5f5e8; color: #397048; font-size: 9px; font-weight: 900; letter-spacing: .06em; }
.status.draft { background: #f3eee2; color: #93723d; }
.editor-grid { display: grid; grid-template-columns: minmax(360px, .75fr) minmax(440px, 1.25fr); gap: 18px; margin-top: 18px; }
.editor-panel { padding: 18px; }
.panel-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.panel-title h2 { margin: 0; font: 800 13px/1.2 inherit; letter-spacing: -.01em; }
.section-list { display: grid; gap: 7px; }
.section-item { display: grid; grid-template-columns: 25px 1fr auto; gap: 10px; align-items: center; padding: 11px; border: 1px solid #e8ece5; border-radius: 9px; background: #fbfcf9; cursor: pointer; }
.section-item:hover, .section-item.selected { border-color: #a7b8a3; background: #f3f7ef; }
.drag { color: #adb6ad; font-size: 13px; letter-spacing: -2px; }
.section-type { font-size: 11px; font-weight: 850; }
.section-type small { display: block; margin-top: 2px; color: #8a958b; font-size: 9px; font-weight: 600; }
.toggle { width: 27px; height: 15px; padding: 2px; border: 0; border-radius: 100px; background: #cfd7ce; cursor: pointer; }
.toggle::after { content: ""; display: block; width: 11px; height: 11px; border-radius: 50%; background: white; transition: margin .2s; }
.toggle.on { background: #567e5e; }
.toggle.on::after { margin-left: 12px; }
.field { display: grid; gap: 6px; margin-bottom: 13px; }
.field label { color: #78847a; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 10px 11px; border: 1px solid #dfe5dc; border-radius: 8px; outline: 0; color: #29352b; background: #fbfcfa; font-size: 11px; }
.field textarea { min-height: 78px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: #77907a; box-shadow: 0 0 0 3px #edf3eb; }
.editor-actions { display: flex; justify-content: space-between; gap: 8px; margin-top: 15px; }
.preview-frame { min-height: 620px; padding: 9px; border-radius: 18px; background: #252b26; }
.preview-window { height: 600px; border-radius: 11px; overflow: auto; background: var(--cream); }
.mini-preview { transform-origin: top left; }
.mini-hero { position: relative; min-height: 440px; padding: 80px 45px 50px; overflow: hidden; }
.mini-hero .mini-copy { position: relative; z-index: 2; width: 54%; }
.mini-hero h2 { margin: 10px 0 14px; font-size: 52px; }
.mini-hero p { color: var(--muted); font-size: 12px; }
.mini-photo { position: absolute; right: 35px; top: 50px; width: 35%; height: 330px; border-radius: 100px 100px 17px 17px; overflow: hidden; transform: rotate(3deg); }
.mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.mini-section { padding: 40px; border-top: 1px solid var(--line); }
.mini-section h3 { margin: 0; font-size: 32px; }
.mini-section p { color: var(--muted); font-size: 11px; }

.media-toolbar { display: flex; gap: 8px; margin-bottom: 18px; }
.search { flex: 1; padding: 10px 12px; border: 1px solid #e0e5dd; border-radius: 9px; background: white; font-size: 11px; }
.tag-filter { padding: 10px 12px; border: 1px solid #e0e5dd; border-radius: 9px; background: white; color: #617064; font-size: 10px; font-weight: 750; }
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.media-card { overflow: hidden; border: 1px solid #e1e5dc; border-radius: 13px; background: white; }
.media-thumb { position: relative; height: 180px; overflow: hidden; background: #e4e7df; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-kind { position: absolute; left: 8px; top: 8px; padding: 4px 7px; border-radius: 100px; background: rgba(28,37,28,.75); color: white; font-size: 8px; font-weight: 900; }
.media-info { padding: 12px; }
.media-info strong { display: block; font-size: 11px; }
.media-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 9px; }
.media-tags span { padding: 3px 6px; border-radius: 100px; background: #f0f3ed; color: #78827a; font-size: 8px; font-weight: 800; }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.metric { padding: 18px; }
.metric-label { color: #77847a; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.metric-value { margin: 10px 0 5px; font-size: 28px; font-weight: 850; letter-spacing: -.05em; }
.metric-change { color: #4e845a; font-size: 9px; font-weight: 800; }
.funnel-card { padding: 22px; }
.funnel { display: grid; gap: 9px; margin-top: 20px; }
.funnel-row { display: grid; grid-template-columns: 100px 1fr 70px; gap: 12px; align-items: center; font-size: 10px; }
.funnel-bar { height: 29px; overflow: hidden; border-radius: 6px; background: #eef2eb; }
.funnel-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #335c41, #9eb765); }
.funnel-number { text-align: right; font-weight: 850; }

/* Profiles */
.profile-hero { padding: 120px 0 55px; background: var(--paper); }
.profile-head { display: grid; grid-template-columns: 160px 1fr auto; gap: 30px; align-items: center; }
.profile-avatar { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; border: 6px solid var(--cream); }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-name h1 { margin: 0; font-size: 58px; }
.profile-name p { max-width: 540px; color: var(--muted); }
.early-badge { display: inline-flex; margin-bottom: 10px; padding: 6px 9px; border-radius: 100px; background: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.profile-stats { display: flex; gap: 25px; margin-top: 17px; color: var(--muted); font-size: 11px; }
.profile-stats strong { color: var(--ink); font-size: 15px; }
.profile-content { padding: 40px 0 90px; }
.restaurant-nav { color: white; }
.restaurant-cover { position: relative; height: 430px; overflow: hidden; background: linear-gradient(135deg, var(--brand-deep), var(--brand-primary)); }
.restaurant-cover img { width: 100%; height: 100%; object-fit: cover; }
.restaurant-cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,25,17,.12), rgba(15,25,17,.58)); }
.restaurant-profile-hero { position: relative; margin-top: -85px; padding-bottom: 30px; }
.restaurant-profile-card { display: grid; grid-template-columns: 160px 1fr auto; gap: 30px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.restaurant-avatar { border-color: var(--paper); background: var(--green); }
.restaurant-avatar-fallback { display: grid; width: 100%; height: 100%; place-items: center; color: white; font: 64px Georgia, serif; }
.restaurant-meta { margin: 8px 0 0 !important; color: var(--orange-dark) !important; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.restaurant-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.restaurant-links a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-size: 10px; font-weight: 800; }
.restaurant-sections { padding-top: 70px; }
.restaurant-menu-category + .restaurant-menu-category { margin-top: 45px; }
.restaurant-menu-category h3 { margin: 0 0 18px; font-size: 34px; }
.restaurant-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.restaurant-menu-card { display: flex; justify-content: space-between; gap: 20px; min-height: 130px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.restaurant-menu-card h4 { margin: 0; font-size: 16px; }
.restaurant-menu-card p { margin: 8px 0; color: var(--muted); font-size: 12px; }
.restaurant-menu-card small { color: var(--muted); font-size: 9px; }
.restaurant-menu-card > strong { color: var(--orange-dark); white-space: nowrap; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 20px; translate: -50% 20px; padding: 11px 15px; border-radius: 100px; background: var(--ink); color: white; opacity: 0; pointer-events: none; font-size: 11px; font-weight: 800; transition: .25s ease; }
.toast.show { translate: -50% 0; opacity: 1; }

@media (max-width: 980px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { min-height: auto; padding-bottom: 70px; }
  .hero-grid, .education-grid, .founder-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 560px; max-width: 620px; width: 100%; margin: auto; }
  .content-types, .spotlights { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .post-card:nth-child(n+4) { display: none; }
  .not-influencer { grid-template-columns: 1fr; gap: 30px; }
  .admin-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; border-right: 0; border-bottom: 1px solid #e1e5dc; }
  .admin-nav { grid-template-columns: repeat(3, 1fr); }
  .sidebar-foot { display: none; }
  .editor-grid { grid-template-columns: 1fr; }
  .media-grid, .metric-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .nav { padding: 18px 0; }
  .nav-links { gap: 8px; }
  .nav .btn { min-height: 40px; padding: 0 14px; }
  .hero { padding-top: 108px; }
  .hero h1 { font-size: 64px; }
  .hero-text { font-size: 15px; }
  .hero-visual { height: 465px; }
  .hero-photo { inset: 10px 32px 25px 40px; }
  .float-card { font-size: 10px; padding: 10px; }
  .float-card:nth-of-type(3), .float-card:nth-of-type(5) { right: 0; }
  .section-title { font-size: 46px; }
  .section-subtitle { font-size: 15px; }
  .education-photo { height: 460px; }
  .quote-card { right: 8px; bottom: 8px; max-width: 230px; }
  .comparison { overflow-x: auto; }
  .comparison-head, .comparison-row { min-width: 650px; }
  .content-types, .spotlights { grid-template-columns: 1fr; }
  .type-card { min-height: 220px; }
  .type-card h3 { margin-top: 42px; }
  .not-influencer h2 { font-size: 78px; }
  .big-copy { font-size: 25px; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 350px); }
  .gallery .post-card:first-child { grid-row: auto; }
  .founder-photo { height: 460px; }
  .footer-inner { flex-direction: column; }
  .admin-main { padding: 22px 14px 50px; }
  .admin-top { align-items: flex-start; gap: 12px; }
  .page-row { grid-template-columns: 1fr auto; }
  .page-row > *:nth-child(2), .page-row > *:nth-child(4) { display: none; }
  .media-grid, .metric-grid { grid-template-columns: 1fr; }
  .media-toolbar { flex-wrap: wrap; }
  .profile-head { grid-template-columns: 1fr; text-align: center; }
  .profile-avatar { margin: auto; }
  .profile-stats { justify-content: center; }
  .restaurant-cover { height: 300px; }
  .restaurant-profile-hero { margin-top: -45px; }
  .restaurant-profile-card { grid-template-columns: 1fr; text-align: center; padding: 22px; }
  .restaurant-links { justify-content: center; }
  .restaurant-menu-grid { grid-template-columns: 1fr; }
}
