:root {
  --ink: #0f1e36; --navy: #142f58; --navy-soft: #1e4d87; --sky: #2aa3dd; --saffron: #f97316; --saffron-deep: #ea5a0c;
  --paper: #f7f5f0; --paper-deep: #efece5; --white: #ffffff; --text: #263247; --muted: #6b7587; --rule: rgba(15,30,54,.14);
  --on-dark: rgba(255,255,255,.78); --rule-dark: rgba(255,255,255,.14);
  --serif: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --sans: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --gutter: clamp(20px, 4.5vw, 96px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--text); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--saffron); color: #fff; }
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.025em; }
h1 { font-size: clamp(2.4rem, 4.8vw, 4.7rem); line-height: 1.06; }
h2 { font-size: clamp(1.8rem, 3vw, 2.9rem); line-height: 1.12; }
h3 { font-size: 1.15rem; line-height: 1.35; font-weight: 600; }
h1 em, h2 em { font-style: normal; font-weight: 500; color: var(--saffron); }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark h1 em, .dark h2 em { color: #ffb27a; }
p { margin: 0; }
.eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--saffron-deep); }
.dark .eyebrow { color: #ffb27a; }
.lead { font-size: clamp(1.1rem, 1.25vw, 1.35rem); line-height: 1.65; color: var(--text); max-width: 760px; }
.dark .lead, .dark p { color: var(--on-dark); }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 1px solid transparent; transition: transform .15s, background .15s, border-color .15s; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn.saffron { background: var(--saffron); color: #fff; }
.btn.saffron:hover { background: var(--saffron-deep); }
.btn.ink { background: var(--ink); color: #fff; }
.btn.line { background: transparent; color: inherit; border-color: var(--rule); }
.dark .btn.line { border-color: rgba(255,255,255,.3); color: #fff; }
.btn.paper { background: #fff; color: var(--ink); }
.btn.sm { padding: 10px 18px; font-size: .85rem; }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.dark .rule { border-top-color: var(--rule-dark); }

/* header */
header.site { position: sticky; top: 0; z-index: 60; transition: background .25s, box-shadow .25s; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
header.site .logo img { height: 34px; width: auto; }
header.site .logo .dark-logo { display: none; }
header.site nav { display: none; gap: 2px; }
header.site nav a { padding: 8px 12px; font-size: .9rem; font-weight: 500; text-decoration: none; color: var(--text); border-radius: 999px; transition: background .15s, color .15s; }
header.site nav a:hover { background: rgba(15,30,54,.06); color: var(--ink); }
header.site nav a.active { color: var(--ink); box-shadow: inset 0 -2px 0 var(--saffron); border-radius: 0; }
header.site .cta { display: none; }
header.site .burger { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--rule); background: transparent; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
header.site .burger span { display: block; width: 16px; height: 2px; background: currentColor; box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor; }
header.site .mobile { display: none; background: var(--white); border-top: 1px solid var(--rule); }
header.site .mobile.open { display: block; }
header.site .mobile nav { display: flex; flex-direction: column; gap: 2px; padding: 12px var(--gutter) 20px; }
header.site .mobile nav a { padding: 12px; font-size: 1rem; border-radius: 12px; color: var(--text); }
header.site .mobile nav a.active { background: var(--paper-deep); box-shadow: none; }
header.site.on-dark { color: #fff; }
header.site.on-dark nav a { color: var(--on-dark); } header.site.on-dark nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
header.site.on-dark nav a.active { color: #fff; }
header.site.on-dark .burger { color: #fff; border-color: rgba(255,255,255,.3); }
header.site.on-dark .logo .light-logo { display: none; } header.site.on-dark .logo .dark-logo { display: block; }
header.site.scrolled { background: rgba(247,245,240,.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--rule); color: var(--text); }
header.site.scrolled nav a { color: var(--text); } header.site.scrolled nav a.active { color: var(--ink); }
header.site.scrolled .burger { color: var(--ink); border-color: var(--rule); }
header.site.scrolled .logo .light-logo { display: block; } header.site.scrolled .logo .dark-logo { display: none; }
@media (min-width: 1100px) { header.site nav { display: flex; } header.site .cta { display: inline-flex; } header.site .burger { display: none; } }

/* dark surfaces */
.dark { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.dark.mesh::before { content: ""; position: absolute; inset: -30% -10%; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 15% 20%, rgba(42,163,221,.32), transparent 65%), radial-gradient(45% 45% at 88% 85%, rgba(249,115,22,.26), transparent 60%), radial-gradient(50% 50% at 60% 40%, rgba(30,77,135,.55), transparent 65%);
  filter: blur(40px); animation: drift 26s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translate3d(3%, -2%, 0) scale(1.06); } }
.dark > .wrap { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .dark.mesh::before { animation: none; } }

/* hero */
.hero { margin-top: -72px; padding: calc(clamp(40px, 6vh, 72px) + 72px) 0 clamp(40px, 6vh, 64px); }
.hero .grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1100px) { .hero .grid { grid-template-columns: .88fr 1.12fr; gap: 48px; } }
.hero h1 { margin-top: 22px; max-width: 12ch; }
.hero .lead { margin-top: 26px; max-width: 640px; }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .ledger { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid var(--rule-dark); }
.hero .ledger div { padding: 18px 18px 18px 0; border-right: 1px solid var(--rule-dark); }
.hero .ledger div:last-child { border-right: 0; } .hero .ledger div + div { padding-left: 18px; }
.hero .ledger b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 2.4vw, 2.4rem); color: #fff; line-height: 1.05; }
.hero .ledger span { display: block; margin-top: 6px; font-size: 12.5px; color: var(--on-dark); }
@media (max-width: 640px) { .hero .ledger { grid-template-columns: 1fr; } .hero .ledger div { border-right: 0; border-bottom: 1px solid var(--rule-dark); padding-left: 0 !important; } .hero .ledger div:last-child { border-bottom: 0; } }
.page-hero { margin-top: -72px; padding: calc(clamp(44px, 7vh, 80px) + 72px) 0 clamp(36px, 6vh, 56px); }
.page-hero .grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 1000px) { .page-hero .grid { grid-template-columns: .95fr 1.05fr; gap: 48px; } }
.page-hero h1 { margin-top: 14px; max-width: 16ch; font-size: clamp(2.1rem, 3.6vw, 3.4rem); }
.page-hero .lead { margin-top: 22px; }
.page-hero .crumbs { font-size: 12.5px; color: var(--on-dark); margin-top: 20px; }
.page-hero .crumbs a { color: #fff; text-decoration: none; }

/* the "today" board (HTML mock) */
.board { background: #fff; color: var(--text); border-radius: 22px; padding: 22px; box-shadow: 0 40px 90px -40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08); }
.board .top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--rule); padding-bottom: 14px; }
.board .top b { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--ink); }
.board .top span { font-size: 12px; color: var(--muted); }
.board .tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.board .tile { border: 1px solid var(--rule); border-radius: 14px; padding: 12px; }
.board .tile b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.board .tile span { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.board .tile.warn b { color: var(--saffron-deep); } .board .tile.good b { color: #0f7a52; }
.board .rows { margin-top: 14px; }
.board .row { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 10px; align-items: center; padding: 10px 0; border-top: 1px solid var(--rule); font-size: 13px; }
.board .row b { font-weight: 600; color: var(--ink); } .board .row span { color: var(--muted); }
.board .row .st { justify-self: end; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: #e6f5ee; color: #0f7a52; }
.board .row .st.late { background: #fdf1e0; color: #a55b00; } .board .row .st.leave { background: #e8edf6; color: var(--navy); }
.board .foot { margin-top: 12px; font-size: 11.5px; color: var(--muted); }
@media (max-width: 560px) { .board .tiles { grid-template-columns: 1fr 1fr; } .board .row { grid-template-columns: 1fr auto; } .board .row span:nth-child(2), .board .row span:nth-child(3) { display: none; } }
.hero .stack { position: relative; }
.hero .stack .phone { position: absolute; right: -18px; bottom: -34px; width: 168px; }
@media (max-width: 1100px) { .hero .stack .phone { display: none; } }

/* frames */
.shot { border-radius: 14px; overflow: hidden; background: #0b1a33; box-shadow: 0 34px 70px -34px rgba(8,18,40,.55), 0 0 0 1px rgba(15,30,54,.08); }
.shot .bar { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px; background: #13223d; }
.shot .bar i { width: 9px; height: 9px; border-radius: 50%; background: #34497a; }
.shot .bar i:nth-child(1) { background: var(--saffron); } .shot .bar i:nth-child(2) { background: #f3c34e; } .shot .bar i:nth-child(3) { background: #3ccf7a; }
.shot .bar span { margin-left: 10px; flex: 1; height: 16px; border-radius: 6px; background: rgba(255,255,255,.08); font-size: 10.5px; line-height: 16px; padding: 0 10px; color: rgba(255,255,255,.55); white-space: nowrap; overflow: hidden; }
.shot img { display: block; width: 100%; height: auto; }
.shots { display: grid; gap: 22px; margin-top: 26px; }
@media (min-width: 900px) { .shots { grid-template-columns: 1fr 1fr; } }
.shots figure { margin: 0; }
.shots figcaption { margin-top: 12px; font-size: .92rem; color: var(--text); }
.shots figcaption b { display: block; color: var(--ink); font-weight: 600; }
.phone { position: relative; width: 250px; margin: 0 auto; border-radius: 2.2rem; border: 9px solid #0b1a33; background: #0b1a33; box-shadow: 0 30px 60px -22px rgba(15,23,42,.55); }
.phone::before { content: ""; position: absolute; left: 50%; top: 4px; transform: translateX(-50%); z-index: 2; width: 92px; height: 18px; border-radius: 0 0 14px 14px; background: #0b1a33; }
.phone img { border-radius: 1.55rem; }
.phone.lg { width: 300px; }
.mock { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 18px; color: var(--text); font-size: 13.5px; }
.mock .h { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--ink); }
.mock .h span { font-size: 11px; color: var(--muted); font-weight: 500; }
.mock ol, .mock ul { margin: 10px 0 0; padding: 0; list-style: none; }
.mock li { display: flex; gap: 10px; padding: 8px 0; border-top: 1px solid var(--rule); }
.mock li i { font-style: normal; width: 22px; height: 22px; border-radius: 50%; background: var(--paper-deep); color: var(--ink); font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.mock li.done { color: var(--muted); text-decoration: line-through; }
.mock .line { display: flex; justify-content: space-between; padding: 7px 0; border-top: 1px solid var(--rule); }
.mock .line.total { font-weight: 700; color: var(--ink); }
.mock .chain { display: grid; gap: 8px; margin-top: 10px; }
.mock .chain div { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; background: var(--paper); }
.mock .chain div i { font-style: normal; width: 8px; height: 8px; border-radius: 50%; background: #0f7a52; }
.mock .chain div.wait i { background: var(--saffron); }

/* sections */
section.s { padding: clamp(44px, 7vh, 72px) 0; }
section.s.white { background: var(--white); }
section.s.deep { background: var(--paper-deep); }
.head { max-width: 900px; }
.head h2 { margin-top: 16px; }
.head .lead { margin-top: 20px; }
.head.row { display: grid; gap: 16px; max-width: none; align-items: end; }
@media (min-width: 1100px) { .head.row { grid-template-columns: 1.2fr .8fr; gap: 56px; } }
.n { font-family: var(--serif); font-size: 13px; letter-spacing: .12em; color: var(--muted); }
.dark .n { color: var(--on-dark); }

/* ledger strip */
.strip { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (min-width: 900px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip div { padding: 20px 22px 20px 0; border-right: 1px solid var(--rule); }
.strip div + div { padding-left: 22px; } .strip div:last-child { border-right: 0; }
.strip b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 4vw, 4rem); color: var(--ink); line-height: 1; }
.strip b i { font-style: normal; color: var(--saffron); }
.strip span { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); max-width: 24ch; }
@media (max-width: 900px) { .strip div:nth-child(2) { border-right: 0; } .strip div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); } .strip div:nth-child(3) { padding-left: 0; } }

/* the day */
.day { margin-top: 28px; border-top: 1px solid var(--rule); }
.moment { display: grid; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--rule); align-items: center; }
@media (min-width: 1000px) { .moment { grid-template-columns: 110px .9fr 1.3fr; gap: 32px; } .moment > * { grid-row: 1; } .moment.flip > .t { grid-column: 1; } .moment.flip > .art { grid-column: 2; } .moment.flip > div:nth-child(2) { grid-column: 3; } }
.moment .t { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.2rem); color: var(--ink); line-height: 1; }
.moment .t small { display: block; font-family: var(--sans); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.moment h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.15; }
.moment p { margin-top: 12px; color: var(--text); max-width: 52ch; }
.moment .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; font-size: .9rem; text-decoration: none; color: var(--ink); }
.moment .more:hover { color: var(--saffron-deep); } .moment .more svg { width: 16px; height: 16px; }
.moment .art { display: flex; justify-content: center; }
.moment .art .shot { width: 100%; max-width: 640px; }
.moment .art .phone { width: 220px; }

/* index of modules */
.index { display: grid; margin-top: 26px; border-top: 1px solid var(--rule); }
@media (min-width: 900px) { .index { grid-template-columns: 1fr 1fr; column-gap: 64px; } }
.index a { display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--rule); text-decoration: none; color: inherit; transition: padding-left .2s; }
.index a:hover { padding-left: 8px; }
.index a .i { font-family: var(--serif); font-size: 1.1rem; color: var(--saffron-deep); }
.index a b { display: block; color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.index a span span { display: block; font-size: .9rem; color: var(--muted); margin-top: 2px; }
.index a svg { width: 16px; height: 16px; color: var(--muted); }

/* stamps */
.stamps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.stamp { border: 1px solid rgba(255,255,255,.35); border-radius: 8px; padding: 10px 14px; font-family: var(--serif); font-size: 1.05rem; color: #fff; letter-spacing: .02em; transform: rotate(-1deg); }
.stamp:nth-child(2n) { transform: rotate(1.2deg); border-color: rgba(255,178,122,.6); color: #ffb27a; }

/* Q and A */
.qa { display: grid; margin-top: 26px; border-top: 1px solid var(--rule-dark); }
.qa > div { display: grid; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--rule-dark); }
@media (min-width: 900px) { .qa > div { grid-template-columns: 1fr 1.4fr; gap: 40px; } }
.qa b { font-family: var(--serif); font-weight: 500; font-size: clamp(1.35rem, 2vw, 1.8rem); color: #fff; line-height: 1.2; }
.qa p { color: var(--on-dark); }
.qa p strong { color: #fff; }

/* sheets (cards) */
.sheets { display: grid; gap: 16px; margin-top: 26px; }
@media (min-width: 720px) { .sheets.c2, .sheets.c3, .sheets.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .sheets.c3 { grid-template-columns: repeat(3, 1fr); } .sheets.c4 { grid-template-columns: repeat(4, 1fr); } }
.sheet { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 26px; }
.sheet .k { font-family: var(--serif); font-size: 1.1rem; color: var(--saffron-deep); }
.sheet h3 { margin-top: 8px; }
.sheet p { margin-top: 10px; font-size: .95rem; color: var(--text); line-height: 1.65; }
.sheet ul { margin: 12px 0 0; padding: 0; list-style: none; }
.sheet li { padding: 8px 0 8px 18px; border-top: 1px solid var(--rule); font-size: .92rem; position: relative; }
.sheet li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 1px; background: var(--saffron); }
.sheet .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; font-size: .9rem; text-decoration: none; color: var(--ink); }
.sheet .more svg { width: 16px; height: 16px; } .sheet .more:hover { color: var(--saffron-deep); }
.dark .sheet { background: rgba(255,255,255,.05); border-color: var(--rule-dark); }
.dark .sheet h3 { color: #fff; } .dark .sheet p, .dark .sheet li { color: var(--on-dark); } .dark .sheet li { border-top-color: var(--rule-dark); }

/* split */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1000px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.flip > :first-child { order: 2; } }
.split h2 { margin-top: 14px; }
.checks { margin: 26px 0 0; padding: 0; list-style: none; display: grid; border-top: 1px solid var(--rule); }
.checks li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 1rem; line-height: 1.55; }
.checks li b { color: var(--ink); }
.checks li i { font-style: normal; font-family: var(--serif); color: var(--saffron-deep); }
.dark .checks { border-top-color: var(--rule-dark); } .dark .checks li { border-bottom-color: var(--rule-dark); } .dark .checks li b { color: #fff; }

/* every screen */
.devices { display: grid; gap: 28px; align-items: end; margin-top: 30px; }
@media (min-width: 1000px) { .devices { grid-template-columns: 1.5fr .7fr .45fr; gap: 32px; } }
.laptop { width: 100%; }
.laptop .screen { border: 10px solid #0b1a33; border-bottom-width: 14px; border-radius: 16px 16px 4px 4px; background: #0b1a33; overflow: hidden; }
.laptop .base { height: 14px; margin: 0 -3%; border-radius: 0 0 14px 14px; background: linear-gradient(#1a2b47, #0b1a33); }
.laptop .screen img { display: block; width: 100%; height: auto; }
.tablet { width: 100%; max-width: 360px; margin: 0 auto; }
.tablet .screen { border: 10px solid #0b1a33; border-radius: 22px; background: #fff; overflow: hidden; }
.tablet .screen img { display: block; width: 100%; height: auto; }
.devices .phone { width: 100%; max-width: 190px; }
.devices-legend { display: grid; gap: 10px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--rule); font-size: .9rem; color: var(--muted); }
@media (min-width: 900px) { .devices-legend { grid-template-columns: repeat(3, 1fr); } }
.devices-legend b { color: var(--ink); }

/* before and after */
.beforeafter { margin-top: 26px; border-top: 1px solid var(--rule); }
.ba-head, .ba { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rule); align-items: start; }
.ba-head { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding: 12px 0; }
.ba b { display: block; color: var(--ink); font-weight: 600; } .ba small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.ba .b { font-family: var(--serif); font-size: 1.3rem; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(249,115,22,.6); text-decoration-thickness: 1px; }
.ba .a { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.ba .a small { font-family: var(--sans); }
@media (max-width: 700px) { .ba-head { display: none; } .ba { grid-template-columns: 1fr; gap: 6px; } .ba .b::before { content: "Before: "; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); } .ba .a::before { content: "After: "; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron-deep); } }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 18px; margin-top: 30px; }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; text-align: center; }
.gallery .phone { width: 100%; max-width: 236px; }
.gallery figcaption { margin-top: 14px; font-size: .9rem; color: var(--text); }
.gallery figcaption b { display: block; color: var(--ink); font-weight: 600; }

/* cta */
.cta { display: grid; gap: 28px; align-items: center; padding: 20px 0; }
@media (min-width: 1000px) { .cta { grid-template-columns: 1.2fr .8fr; gap: 64px; } }
.cta .rows { display: grid; gap: 10px; }
.cta .rows a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border: 1px solid var(--rule); border-radius: 14px; background: #fff; text-decoration: none; transition: border-color .15s, transform .15s; }
.cta .rows a:hover { border-color: var(--ink); transform: translateX(3px); }
.cta .rows b { display: block; color: var(--ink); } .cta .rows small { color: var(--muted); font-size: 12.5px; }
.cta .rows svg { width: 18px; height: 18px; color: var(--ink); flex: none; }
.prose { max-width: 900px; } .prose h2 { font-family: var(--sans); font-size: 1.35rem; font-weight: 600; margin-top: 40px; } .prose p, .prose li { font-size: 1rem; line-height: 1.7; margin-top: 10px; }
.prose table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: .95rem; } .prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; } .prose th { color: var(--ink); background: #fff; }

/* footer */
footer.site { background: var(--ink); color: var(--on-dark); }
footer.site .cols { display: grid; gap: 36px; padding: 64px 0 40px; border-bottom: 1px solid var(--rule-dark); }
@media (min-width: 1000px) { footer.site .cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }
footer.site img { height: 32px; width: auto; }
footer.site .blurb { margin-top: 18px; max-width: 380px; font-size: .9rem; line-height: 1.7; }
footer.site .tag { margin-top: 18px; font-family: var(--serif); font-weight: 500; font-size: 1rem; color: #ffb27a; }
footer.site .h { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); }
footer.site ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; font-size: .9rem; }
footer.site ul a { color: var(--on-dark); text-decoration: none; } footer.site ul a:hover { color: #fff; }
footer.site .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding: 22px 0; font-size: 12px; color: rgba(255,255,255,.5); }
footer.site .bottom a { color: rgba(255,255,255,.7); text-decoration: none; margin-left: 16px; }
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
