/* lizzy does ai: design system from lizzydoesai-deploy (the June 2026 Netlify deploy). Additions for new pages are at the bottom. */
:root {
    --paper: #f8f7f1;
    --ink: #111111;
    --ink-soft: #4c4c4c;
    --purple: #8b52ff;
    --purple-deep: #6f37e6;
    --red: #ff3d33;
    --lilac: #fcc2ff;
    --line: rgba(17,17,17,.16);
    --maxw: 1300px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --body: 'Inter', system-ui, sans-serif;
    --ui: 'Public Sans', system-ui, sans-serif;
    --script: 'Dancing Script', cursive;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body { font-family: var(--body); font-size: 19px; line-height: 1.5; background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; line-height: .96; }
  h1 em, h2 em, h3 em, .it { font-style: italic; }

  .eyebrow { font-family: var(--ui); font-weight: 600; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; }
  .eyebrow::before { content: "✦"; margin-right: .65em; }
  .num-lab { font-family: var(--ui); font-weight: 700; font-size: 14px; letter-spacing: .1em; }

  /* buttons */
  .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ui); font-weight: 600; font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; padding: 15px 32px; border-radius: 40px; background: var(--purple); color: var(--paper); border: 1.5px solid var(--purple); transition: .2s; cursor: pointer; }
  .btn:hover { background: var(--purple-deep); border-color: var(--purple-deep); }
  .btn-outline { background: transparent; color: var(--paper); border-color: var(--paper); }
  .btn-outline:hover { background: var(--paper); color: var(--red); }
  .btn-white { background: var(--paper); color: var(--purple); border-color: var(--paper); }
  .btn-white:hover { background: transparent; color: var(--paper); }
  .link-u { font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 4px; }

  /* photo helpers */
  .img { background-size: cover; background-position: center; }
  .polaroid { box-shadow: 0 22px 46px rgba(0,0,0,.18); }
  .polaroid .img { width: 100%; aspect-ratio: 3/4; border-radius: 48% 48% 6px 6px; }
  .blob { border-radius: 50%; aspect-ratio: 1/1; }

  /* ===== Header (red bar) ===== */
  header { position: sticky; top: 0; z-index: 200; background: var(--red); color: var(--paper); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
  .brand { font-family: var(--serif); font-size: 26px; letter-spacing: .02em; text-transform: none; text-decoration: none; color: inherit; flex: none; }
  .nav-mid { display: flex; align-items: center; gap: 22px; }
  .nav-mid a { text-decoration: none; font-family: var(--ui); font-weight: 500; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: inherit; opacity: .92; }
  .nav-mid a:hover { opacity: 1; }
  .nav-right { display: flex; align-items: center; gap: 18px; flex: none; }
  .nav-soc { display: flex; gap: 14px; }
  .nav-soc a { color: inherit; opacity: .9; }
  .nav-soc svg { width: 18px; height: 18px; }
  .nav .btn { padding: 11px 22px; }
  .nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: inherit; }

  /* ===== Hero (image + text overlay) ===== */
  .hero { position: relative; min-height: calc(100vh - 70px); background: var(--red); overflow: hidden; display: flex; align-items: flex-end; }
  .hero .bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: contrast(1.04) saturate(.9) sepia(.08); }
  .hero .bg::after { content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: overlay; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
  .hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(95deg, rgba(15,8,10,.66) 0%, rgba(15,8,10,.46) 55%, rgba(15,8,10,.22) 100%), linear-gradient(0deg, rgba(15,8,10,.5) 0%, rgba(15,8,10,0) 45%); }
  .hero .overlay { position: relative; z-index: 2; width: 100%; padding: 9vh 0; }
  .hero .inner { max-width: none; }
  .hero-eyebrow { font-family: var(--ui); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--lilac); display: inline-block; margin-bottom: 20px; }
  .hero-eyebrow::before { content: "✦"; margin-right: .6em; }
  .hero h1 { color: var(--paper); font-size: clamp(80px, 10.8vw, 164px); line-height: .94; text-shadow: 0 2px 28px rgba(0,0,0,.4); }
  .hero h1 em { font-style: italic; color: var(--lilac); }
  .hero-sub { color: rgba(248,247,241,.92); font-size: 18px; line-height: 1.55; max-width: 50ch; margin: 22px 0 30px; }
  .hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

  /* ===== Value ===== */
  .value { position: relative; background: var(--lilac); padding: 140px 0 150px; text-align: center; overflow: hidden; }
  .value h2 { color: var(--red); font-size: clamp(54px, 10vw, 150px); line-height: .92; max-width: 13ch; margin: 0 auto; }
  .value .sub2 { font-family: var(--serif); font-style: italic; color: var(--purple); font-size: clamp(24px, 3.4vw, 44px); margin-top: 34px; }
  .value .btn { margin-top: 44px; }
  .value .pp { color: var(--ink-soft); font-size: 18px; max-width: 42ch; margin: 26px auto 34px; }
  .value .flank { position: absolute; width: 161px; z-index: 1; }
  .value .flank.l { left: 36px; top: 70px; transform: rotate(-4deg); }
  .value .flank.r { right: 36px; bottom: 60px; transform: rotate(4deg); width: 147px; }
  .value .flank.chart svg { display: block; width: 100%; height: auto; border-radius: 22px; box-shadow: 0 22px 46px rgba(0,0,0,.16); }

  /* ===== About ===== */
  .about { background: var(--paper); display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .about .pic { position: relative; min-height: 100%; background-size: cover; background-position: center; aspect-ratio: 4/5; filter: contrast(1.05) saturate(.86) sepia(.12) brightness(1.02); }
  .about .pic::after { content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: overlay; opacity: .15; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
  .about .col { padding: 110px 70px; position: relative; align-self: center; }
  .about .badge { position: absolute; top: 24px; left: -64px; width: 110px; height: 110px; display: grid; place-items: center; font-size: 92px; line-height: 1; color: var(--red); animation: spin 22s linear infinite; }
  .about .hello { font-family: var(--script); font-weight: 600; color: var(--purple); font-size: clamp(56px, 8vw, 100px); line-height: .8; }
  .about h2 { font-size: clamp(34px, 4.4vw, 58px); margin: 6px 0 22px; }
  .about p { color: var(--ink-soft); font-size: 17px; margin-bottom: 16px; }
  .about p.lead { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--ink); line-height: 1.35; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ===== Services ===== */
  .services { background: var(--lilac); padding: 30px 0 90px; }
  .srow { display: grid; grid-template-columns: 60px 1fr 240px; gap: 40px; align-items: center; padding: 40px 0; border-top: 1.5px solid var(--red); }
  .services .srow:last-child { border-bottom: 1.5px solid var(--red); }
  .srow .num-lab { color: var(--ink); align-self: start; padding-top: 18px; }
  .srow h2 { color: var(--red); font-size: clamp(40px, 6.4vw, 92px); }
  .srow .img { justify-self: end; width: 200px; }

  /* ===== VIP ===== */
  .vip { background: var(--red); color: var(--paper); padding: 130px 0; text-align: center; }
  .vip h2 { color: var(--lilac); font-size: clamp(54px, 9vw, 130px); line-height: .92; max-width: 12ch; margin: 0 auto; }
  .vip .pp { font-size: 19px; color: var(--paper); max-width: 46ch; margin: 26px auto 6px; }
  .vip .polaroid { width: 280px; margin: 44px auto 0; transform: rotate(-3deg); }
  .vip .btn { margin-top: 40px; }
  .download .phone { transition: transform .3s ease; }
  .download .phone:hover { transform: translateY(-5px); }

  /* ===== Ticker ===== */
  .ticker { overflow: hidden; white-space: nowrap; padding: 22px 0; }
  .ticker-track { display: inline-block; animation: scroll 38s linear infinite; }
  .ticker-track span { font-family: var(--serif); font-weight: 400; text-transform: uppercase; font-size: clamp(44px, 8vw, 96px); }
  .ticker-track .d { margin: 0 .3em; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== Testimonials ===== */
  .testi { background: var(--red); color: var(--paper); padding: 64px 0 130px; overflow: hidden; position: relative; }
  .testi-band { position: absolute; left: 0; right: 0; top: 34px; z-index: 0; will-change: transform; }
  .testi .ticker-arc { width: 100%; line-height: 0; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%); }
  .testi .ticker-arc svg { display: block; width: 100%; height: auto; }
  .testi .arc-text { font-family: var(--serif); font-weight: 400; text-transform: uppercase; font-size: 64px; letter-spacing: -.01em; fill: var(--paper); }
  .testi .wrap { position: relative; z-index: 1; margin-top: 188px; }
  .tgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: start; }
  .tcol { display: flex; flex-direction: column; gap: 40px; }
  .tcol:nth-child(2) { margin-top: 78px; }
  .tcard { background: var(--lilac); color: var(--ink); border-radius: 22px; padding: 40px 42px 46px; box-shadow: 0 26px 52px rgba(0,0,0,.18); width: 100%; max-width: 430px; margin-inline: auto; }
  .tcard .thead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
  .tcard .avatar { width: 72px; height: 72px; border-radius: 50%; flex: none; background-size: cover; background-position: center; background-color: rgba(17,17,17,.10); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 30px; color: var(--ink); }
  .tcard .stars { color: var(--ink); letter-spacing: 3px; font-size: 16px; }
  .tcard .name { font-family: var(--ui); font-weight: 600; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
  .tcard h3 { font-style: italic; font-size: 33px; line-height: 1.04; margin-bottom: 18px; }
  .tcard p { font-size: 16px; line-height: 1.55; color: var(--ink); }

  /* ===== The Agents ===== */
  .cases { background: var(--paper); padding: 120px 0; }
  .sec-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 54px; flex-wrap: wrap; }
  .sec-top h2 { font-size: clamp(46px, 6vw, 88px); }
  .cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
  .ccard { text-decoration: none; color: inherit; }
  .ccard .ct { aspect-ratio: 4/5; overflow: hidden; background: #fffdf9; margin-bottom: 20px; border: 1px solid rgba(17,17,17,.08); }
  .ccard .ct svg { width: 100%; height: 100%; display: block; }
  .ccard .live { font-family: var(--ui); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
  .ccard .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
  .ccard .price { font-family: var(--ui); font-weight: 700; font-size: 17px; letter-spacing: .02em; color: var(--purple-deep); display: inline-block; margin-bottom: 8px; }
  .ccard h3 { font-size: 32px; margin-bottom: 6px; }
  .ccard p { color: var(--ink-soft); font-size: 15px; }

  /* ===== Blog ===== */
  .blog { background: var(--lilac); padding: 120px 0; }
  .bchips { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 44px; }
  .bchip { font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: .02em; padding: 9px 18px; border-radius: 40px; border: 1.5px solid rgba(17,17,17,.28); background: transparent; color: var(--ink); cursor: pointer; transition: .15s; }
  .bchip:hover { border-color: var(--ink); }
  .bchip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .bcard.hide { display: none; }
  .blog .sec-top h2 { color: var(--ink); }
  .bgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 24px; }
  .bcard { text-decoration: none; color: inherit; border-top: 1.5px solid rgba(17,17,17,.22); padding-top: 20px; transition: padding-left .2s; }
  .bcard:hover { padding-left: 8px; }
  .bcard .bt { display: none; }
  .bcard::before { content: ""; display: block; width: 30px; height: 30px; margin-bottom: 16px; background-repeat: no-repeat; background-position: left center; background-size: contain; }
  .bcard:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H8l-4 4z'/%3E%3C/svg%3E"); }
  .bcard:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13l2.5-8h11L20 13'/%3E%3Cpath d='M4 13v6h16v-6h-5a3 3 0 0 1-6 0z'/%3E%3C/svg%3E"); }
  .bcard:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E"); }
  .bcard:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E"); }
  .bcard:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8l-9-5-9 5 9 5 9-5z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E"); }
  .bcard:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21V4'/%3E%3Cpath d='M5 4h12l-2.5 4L17 12H5'/%3E%3C/svg%3E"); }
  .bcard:nth-child(7)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.6 5.3 5.9.9-4.2 4.1 1 5.8L12 16.9 6.7 19.2l1-5.8L3.5 9.2l5.9-.9z'/%3E%3C/svg%3E"); }
  .bcard:nth-child(8)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M3 9h18M8 2v4M16 2v4'/%3E%3C/svg%3E"); }
  .bcat { display: inline-block; font-family: var(--ui); font-weight: 700; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper); background: var(--red); border-radius: 40px; padding: 5px 12px; }
  .bcard h3 { font-size: 20px; line-height: 1.05; margin: 12px 0 6px; }
  .bcard p { color: #6a3a6c; font-size: 13.5px; line-height: 1.45; }
  .bcard .meta { font-family: var(--ui); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #6a3a6c; margin-top: 10px; }
  .bmore { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-family: var(--ui); font-weight: 600; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); border: 1.5px solid var(--red); background: transparent; border-radius: 40px; padding: 8px 16px; transition: background .15s, color .15s; }
  .bmore .ar { transition: transform .15s; }
  .bcard:hover .bmore { background: var(--red); color: var(--paper); }
  .bcard:hover .bmore .ar { transform: translateX(3px); }

  /* ===== Download (purple) ===== */
  .download { background: var(--purple); color: var(--paper); padding: 0 0 110px; position: relative; overflow: hidden; }
  .download .ticker { padding: 30px 0 0; }
  .download .ticker-track span { color: rgba(248,247,241,.92); }
  .dl-grid { display: grid; grid-template-columns: 1fr 360px 1fr; gap: 30px; align-items: center; margin-top: 10px; }
  .dl-left h2 { font-size: clamp(40px, 4.8vw, 64px); line-height: 1.0; }
  .dl-left .freeword { position: relative; display: inline-block; }
  .dl-left .freeword svg { position: absolute; left: 0; bottom: -10px; width: 100%; height: 16px; pointer-events: none; }
  .phone { width: 100%; max-width: 300px; margin: 0 auto; aspect-ratio: 9/18; background: #111; border-radius: 38px; padding: 12px; box-shadow: 0 30px 60px rgba(0,0,0,.3); }
  .phone .scr { width: 100%; height: 100%; border-radius: 26px; background-size: cover; background-position: center; }
  .dl-right { }
  .dl-right input { width: 100%; padding: 18px 22px; border: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; border-radius: 8px; }
  .dl-right input:focus { outline: 2px solid var(--lilac); }
  .dl-right .btn-white { margin-top: 18px; width: 100%; justify-content: center; }
  /* Omnisend embedded form -> match site styling */
  [id^="omnisend-embedded-v2-"] input:not([type="checkbox"]):not([type="radio"]) { width:100% !important; padding:18px 22px !important; border:0 !important; background:#f8f7f1 !important; color:#111 !important; font-family:'Inter',Arial,sans-serif !important; font-size:16px !important; border-radius:8px !important; box-shadow:none !important; }
  [id^="omnisend-embedded-v2-"] button { width:100% !important; margin-top:18px !important; padding:15px 32px !important; background:#f8f7f1 !important; color:#8b52ff !important; border:0 !important; border-radius:40px !important; font-family:'Public Sans',Arial,sans-serif !important; font-weight:700 !important; font-size:13px !important; letter-spacing:.12em !important; text-transform:uppercase !important; cursor:pointer !important; }
  [id^="omnisend-embedded-v2-"] button:hover { background:transparent !important; color:#f8f7f1 !important; box-shadow: inset 0 0 0 1.5px #f8f7f1 !important; }
  .form-msg { margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--lilac); min-height: 22px; }
  .dl-fine { margin-top: 12px; font-family: var(--ui); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(248,247,241,.7); }

  /* ===== Footer ===== */
  footer { background: var(--paper); padding: 100px 0 50px; }
  .foot-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
  .foot-top h2 { font-size: clamp(48px, 8vw, 100px); text-transform: none; }
  .insta-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
  .ig-handle { font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 3px; }
  .ig-handle:hover { color: var(--purple); border-color: var(--purple); }
  .insta { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 54px; }
  .insta .ig { display: block; aspect-ratio: 1/1; background-size: cover; background-position: center; transition: opacity .2s; }
  .insta .ig:hover { opacity: .85; }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px; }
  .foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
  .foot-links a { text-decoration: none; font-family: var(--ui); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
  .foot-links a:hover { color: var(--purple); }
  .copyright { font-family: var(--ui); font-size: 11px; letter-spacing: .14em; text-transform: none; color: var(--ink-soft); }

  /* responsive */
  @media (max-width: 1080px) { .nav-soc { display: none; } }
  @media (max-width: 860px) {
    .nav-mid { display: none; }
    .nav-toggle { display: block; }
  }
  @media (max-width: 980px) {
    .hero .bg { background-position: 68% 22%; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-photo-wrap { max-width: 420px; }
    .about { grid-template-columns: 1fr; }
    .about .pic { min-height: 0; aspect-ratio: 4/5; width: 100%; }
    .about .col { padding: 70px 36px; }
    .about .badge { left: auto; right: 24px; top: 24px; }
    .value .flank { position: static; display: inline-block; vertical-align: top; margin: 0 7px 28px; }
    .value .flank.l, .value .flank.r { width: 92px; transform: none; }
    .srow { grid-template-columns: 44px 1fr; }
    .srow .img { display: none; }
    .cgrid { grid-template-columns: 1fr; }
    .bgrid { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
    .tgrid { grid-template-columns: 1fr; gap: 0; }
    .tcard { padding: 30px 0; }
    .dl-grid { grid-template-columns: 1fr; gap: 40px; }
    .phone { max-width: 300px; margin: 0 auto; }
    .insta { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 22px; }
    .value, .vip, .cases, .blog { padding: 80px 0; }
  }
  .sig { font-family: var(--script); font-weight: 600; color: var(--purple); font-size: 44px; margin-top: 10px; }

/* ===== Additions for the design-focused site (same tokens as above) ===== */
.nav-mid a[aria-current] { opacity: 1; border-bottom: 1.5px solid var(--lilac); padding-bottom: 3px; }

/* Inner-page hero: red block, same type as the home hero */
.page-hero { background: var(--red); color: var(--paper); padding: 120px 0 110px; }
.page-hero h1 { font-size: clamp(64px, 9vw, 140px); line-height: .94; max-width: 13ch; }
.page-hero h1 em { color: var(--lilac); }
.page-hero .hero-sub { margin-bottom: 0; }
.page-hero .hero-cta { margin-top: 34px; }

/* Lesson rows (principles + tells) */
.lessons { background: var(--paper); padding: 110px 0; }
.lessons.alt { background: var(--lilac); }
.lrow { display: grid; grid-template-columns: 60px 1.1fr 1fr 1fr; gap: 36px; padding: 34px 0; border-top: 1.5px solid var(--red); }
.lrow:last-of-type { border-bottom: 1.5px solid var(--red); }
.lrow[hidden] { display: none; }
.lrow .num-lab { padding-top: 10px; }
.lrow h3 { font-size: clamp(30px, 3.2vw, 44px); color: var(--red); margin-bottom: 10px; }
.lrow p { font-size: 16px; color: var(--ink-soft); }
.lrow .k { display: block; font-family: var(--ui); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.lessons .bchips { margin-top: 0; }

/* Checklist items */
.clist { list-style: none; max-width: 780px; margin: 40px auto 0; text-align: left; }
.clist li { display: grid; grid-template-columns: 56px 1fr; gap: 10px; padding: 20px 0; border-top: 1.5px solid rgba(255,61,51,.5); font-size: 18px; }
.clist li:last-child { border-bottom: 1.5px solid rgba(255,61,51,.5); }
.clist li b { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 30px; color: var(--red); line-height: 1; }

/* Offers */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.offer { background: #fffdf9; border: 1px solid rgba(17,17,17,.08); border-radius: 22px; padding: 44px 42px; display: flex; flex-direction: column; gap: 14px; }
.offer .live { font-family: var(--ui); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 8px; }
.offer .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.offer h3 { font-size: 40px; }
.offer p { color: var(--ink-soft); font-size: 16px; }
.offer .btn { align-self: flex-start; margin-top: 12px; }
.later { max-width: 860px; margin: 70px auto 0; }
.later .eyebrow { color: var(--red); display: block; margin-bottom: 18px; }

@media (max-width: 980px) {
  .lrow { grid-template-columns: 44px 1fr; gap: 14px 20px; }
  .lrow > :nth-child(n+3) { grid-column: 2; }
  .offers { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-hero { padding: 80px 0; }
  .lessons { padding: 80px 0; }
  .offer { padding: 32px 26px; }
}

/* Guides-page design (from lizzydoesai-deploy/guides.html) */
.ghero { background: var(--red); color: var(--paper); text-align: center; padding: 80px 0 90px; }
.ghero h1 { font-size: clamp(46px, 8vw, 110px); color: var(--lilac); }
.ghero p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.6vw, 30px); margin-top: 14px; color: var(--paper); }
.ghero .btn { margin-top: 30px; }
.filters { padding: 56px 0 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--ui); font-weight: 500; font-size: 14px; padding: 10px 20px; border-radius: 40px; border: 1.5px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; transition: .15s; }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.glist { padding: 20px 0 110px; }
.glist h2.gsec { font-size: clamp(40px, 5vw, 70px); margin: 70px 0 26px; }
.glist h2.gsec:first-child { margin-top: 30px; }
.grow { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 36px 6px; border-top: 1px solid var(--line); text-decoration: none; color: inherit; transition: padding-left .2s; scroll-margin-top: 90px; }
.grow[hidden] { display: none; }
.grow:hover { padding-left: 16px; }
.grow .cat { display: inline-block; font-family: var(--ui); font-weight: 700; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); border: 1.5px solid var(--red); border-radius: 40px; padding: 5px 14px; margin-bottom: 16px; }
.grow h3 { font-size: clamp(26px, 3.4vw, 40px); }
.grow .subt { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--purple); margin-top: 6px; }
.grow p { color: var(--ink-soft); font-size: 16px; margin-top: 12px; max-width: 70ch; line-height: 1.55; }
.grow p b { color: var(--ink); font-weight: 600; }
.grow .arrow { font-family: var(--serif); font-size: 34px; color: var(--ink); transition: transform .2s, color .2s; }
.grow:hover .arrow { transform: translateX(8px); color: var(--red); }
.glist .grow:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .grow h3 { font-size: 26px; } .grow .arrow { display: none; } }

/* Principle icons on the home page cards */
.design-icons .bcard:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v16M6 20h12'/%3E%3Cpath d='M4 8h16'/%3E%3Cpath d='M4 8l-2 5h4zM20 8l-2 5h4z'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 4a8 8 0 0 1 0 16z' fill='%23ff3d33'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16M4 12h10M4 18h6'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3v18M8 7h12M8 12h8M8 17h10'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='5' height='6'/%3E%3Crect x='9.5' y='9' width='5' height='6'/%3E%3Crect x='16' y='9' width='5' height='6'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='9' r='2'/%3E%3Ccircle cx='11' cy='9' r='2'/%3E%3Ccircle cx='18' cy='16' r='2'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(7)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Crect x='10' y='10' width='4' height='4'/%3E%3C/svg%3E"); }
.design-icons .bcard:nth-child(8)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3d33' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 6h14M12 6v13M9 19h6'/%3E%3C/svg%3E"); }

/* before/after teardown cards: hover (or keyboard focus) shows the after; touch screens crossfade on their own */
.ccard .ct.ba { position: relative; aspect-ratio: 3/4; background: #fff; }
.ccard .ct.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ccard .ct.ba img.ba-after { object-fit: contain; background: #fff; opacity: 0; transition: opacity .35s ease; }
.ccard .ct.ba .batag { position: absolute; top: 14px; right: 14px; font-family: var(--ui); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 6px 10px; border-radius: 4px; color: #fff; transition: opacity .35s ease; }
.ccard .ct.ba .bt { background: var(--red); }
.ccard .ct.ba .at { background: var(--purple); opacity: 0; }
.ccard .ct.ba .hint { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); white-space: nowrap; font-family: var(--ui); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(17,17,17,.72); padding: 7px 12px; border-radius: 999px; transition: opacity .35s ease; }
@media (hover: hover) {
  .ccard:hover .ct.ba img.ba-after, .ccard:focus-visible .ct.ba img.ba-after,
  .ccard:hover .ct.ba .at, .ccard:focus-visible .ct.ba .at { opacity: 1; }
  .ccard:hover .ct.ba .bt, .ccard:focus-visible .ct.ba .bt,
  .ccard:hover .ct.ba .hint, .ccard:focus-visible .ct.ba .hint { opacity: 0; }
}
@media (hover: none) {
  .ccard .ct.ba .hint { display: none; }
  .ccard .ct.ba img.ba-after, .ccard .ct.ba .at { animation: baFade 7s ease-in-out infinite; }
  .ccard .ct.ba .bt { animation: baOut 7s ease-in-out infinite; }
}
@keyframes baFade { 0%,40% { opacity: 0; } 50%,90% { opacity: 1; } 100% { opacity: 0; } }
@keyframes baOut { 0%,40% { opacity: 1; } 50%,90% { opacity: 0; } 100% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .ccard .ct.ba img.ba-after, .ccard .ct.ba .bt, .ccard .ct.ba .at { animation: none; } }
.ba-note { margin-top: 26px; font-family: var(--ui); font-size: 13px; color: var(--ink-soft); }

.nav-mid a, header .btn, header .brand { white-space: nowrap; }

/* header fits 5 nav items: burger menu below 1240px */
@media (max-width: 1440px) { .nav-soc { display: none; } .nav-mid { gap: 18px; } } @media (max-width: 1240px) { .nav-mid { display: none; } .nav-toggle { display: block; } }

/* ===== Graphic Design Agent Helper product page ===== */
.ahero { background: var(--red); color: var(--paper); padding: 70px 0 90px; }
.ahero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.ahero h1 { font-size: clamp(48px, 6.4vw, 96px); line-height: .95; color: var(--lilac); margin: 16px 0 22px; }
.ahero .lede { font-size: 19px; line-height: 1.55; max-width: 34ch; }
.pricebox { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.pricebox .price { font-family: var(--serif); font-size: 58px; line-height: 1; color: var(--paper); }
.pricebox .price span { font-family: var(--ui); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; opacity: .85; margin-left: 4px; }
.pricebox .fine { flex-basis: 100%; font-family: var(--ui); font-size: 13px; opacity: .85; }
.ahero-img { margin: 0; background: #fff; padding: 12px; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.22); transform: rotate(1.2deg); }
.ahero-img img { width: 100%; display: block; border-radius: 4px; }
.ahero-img figcaption { font-family: var(--ui); font-size: 12.5px; color: var(--ink-soft); padding: 10px 4px 2px; }
.apitch { background: var(--paper); padding: 120px 0; text-align: center; }
.apitch h2 { font-size: clamp(44px, 6.6vw, 96px); line-height: .95; color: var(--ink); max-width: 16ch; margin: 0 auto; }
.apitch .pp { font-size: 19px; color: var(--ink-soft); max-width: 58ch; margin: 28px auto 0; line-height: 1.6; }
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; text-align: left; }
.mode { background: var(--lilac); border-radius: 18px; padding: 30px 28px 34px; }
.mode .num-lab { font-family: var(--ui); font-weight: 700; font-size: 12px; letter-spacing: .16em; color: var(--red); }
.mode h3 { font-size: 36px; margin: 10px 0 10px; }
.mode p { font-size: 16px; line-height: 1.55; color: var(--ink); }
.aproofs { background: var(--paper); padding: 110px 0; }
.aproof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 10px; }
.aproof { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.aproof img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: #fff; border: 1px solid rgba(17,17,17,.08); display: block; }
.aproof img + img { object-fit: contain; }
.aproof figcaption { grid-column: 1 / -1; font-family: var(--ui); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }
.aneed { background: var(--purple); color: var(--paper); padding: 110px 0; text-align: center; }
.aneed h2 { font-size: clamp(44px, 6.6vw, 96px); color: var(--lilac); }
.need-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 50px; text-align: left; }
.need { border-top: 1.5px solid rgba(248,247,241,.5); padding-top: 16px; }
.need h3 { font-size: 24px; margin-bottom: 8px; color: var(--paper); }
.need p { font-size: 15px; line-height: 1.5; opacity: .9; }
.afaq { background: var(--paper); padding: 110px 0; }
.afaq h2 { font-size: clamp(44px, 6.6vw, 96px); text-align: center; margin-bottom: 40px; }
.faq { max-width: 780px; margin: 0 auto; border-top: 1.5px solid rgba(17,17,17,.14); padding: 22px 0; }
.faq:last-of-type { border-bottom: 1.5px solid rgba(17,17,17,.14); }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: 28px; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-family: var(--ui); font-size: 24px; }
.faq[open] summary::after { content: "–"; }
.faq p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin-top: 12px; max-width: 64ch; }
@media (max-width: 980px) {
  .ahero-grid { grid-template-columns: 1fr; }
  .ahero-img { transform: none; }
  .modes, .aproof-grid { grid-template-columns: 1fr; }
  .need-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .need-grid { grid-template-columns: 1fr; } }

.testi-note { text-align: center; font-family: var(--ui); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); opacity: .85; margin: -40px 0 80px; }

/* Mini Design School teaser: smaller title with an italic subhead */
.vip h2.vip-title { font-size: clamp(40px, 6vw, 84px); max-width: none; }
.vip .vip-sub { font-family: var(--serif); font-style: italic; color: var(--lilac); font-size: clamp(34px, 4.6vw, 64px); line-height: 1.05; margin-top: 4px; }

/* syllabus arch inside the purple signup section */
.download .dl-arch { display: flex; justify-content: center; }
.download .dl-arch .polaroid { width: 280px; transform: rotate(-3deg); }
