:root {
  --ink: #111111;
  --black: #000000;
  --red: #c8102e;
  --red-soft: #ff5a5f;
  --white: #ffffff;
  --ivory: #f6f1ec;
  --muted: #6f675f;
  --line: rgba(17, 17, 17, 0.14);
  --body: "Archivo", system-ui, sans-serif;
  --heading: "Bricolage Grotesque", var(--body);
  --display: "Playfair Display", Georgia, serif;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--white); color: #232323; font-family: var(--body); line-height: 1.5; }
body.menu-open { overflow: hidden; }
body.concierge-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--red-soft); color: var(--black); }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.wrap-narrow { width: min(1000px, calc(100% - 48px)); margin-inline: auto; }
.wrap-form { width: min(900px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 100; transform: translateY(-160%); padding: 10px 14px; background: var(--black); color: #fff; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
.header-inner { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { width: 74px; height: 74px; object-fit: cover; border-radius: 2px; }
.header-actions, .site-nav, .language-switch { display: flex; align-items: center; }
.header-actions { gap: 20px; }
.site-nav { gap: 28px; }
.site-nav a { color: var(--ink); font-size: 0.92rem; font-weight: 700; transition: color 0.15s ease; }
.site-nav a:hover { color: var(--red); }
.site-nav .cta { min-height: 46px; display: inline-flex; align-items: center; padding: 0 24px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 800; }
.site-nav .cta:hover { background: var(--black); color: #fff; }
.language-switch { gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.language-switch button { min-width: 34px; min-height: 32px; padding: 0 8px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: 0.75rem; font-weight: 800; cursor: pointer; }
.language-switch button.is-active { background: var(--red); color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--black); transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.announce { padding: 16px 24px; background: var(--black); }
.announce-row { max-width: var(--wrap); margin: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.announce-row span { color: var(--red-soft); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

.hero { padding-block: 54px 84px; }
.hero-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
.hero-copy { max-width: 760px; }
.hero h1 { margin: 0; color: var(--black); font-family: var(--heading); font-size: clamp(2.65rem, 5vw, 4.6rem); font-weight: 900; line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero .lede { max-width: 620px; margin: 16px 0 0; color: var(--muted); font-size: 1.12rem; line-height: 1.55; }
.hero-actions { flex: 0 0 auto; display: flex; flex-wrap: wrap; gap: 14px; }
.btn { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; padding: 0 30px; border: 2px solid transparent; border-radius: 999px; font-size: 1.02rem; font-weight: 800; cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--black); color: #fff; }
.btn-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.hero-media { aspect-ratio: 1672 / 941; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--ivory); box-shadow: 0 24px 64px rgba(17, 17, 17, 0.12); }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.principles { padding-block: 78px 46px; }
.principles h2, .how h2 { margin: 0; color: var(--black); font-family: var(--heading); font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.01em; }
.principles-list { margin-top: 56px; }
.principle-row, .how-row { display: grid; grid-template-columns: 140px 1fr; gap: 32px; align-items: start; padding-block: 38px; border-top: 1px solid var(--line); }
.principle-row:last-child, .how-row:last-child { border-bottom: 1px solid var(--line); }
.principle-num { color: var(--red); font-family: var(--heading); font-size: 3rem; font-weight: 900; line-height: 1; }
.principle-row h3, .how-row h3 { margin: 0; color: var(--black); font-family: var(--heading); font-size: 1.4rem; font-weight: 900; }
.principle-row p, .how-row p { max-width: 620px; margin: 12px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.55; }
.focused-week-row { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(34px, 6vw, 72px); margin-top: 32px; }
.principles-cta { margin: 0; color: var(--red); font-family: var(--heading); font-size: clamp(1.3rem, 2.1vw, 1.65rem); font-weight: 900; letter-spacing: 0.01em; line-height: 1.2; }
.focused-week-calendar { width: 100%; height: auto; }

.work { padding-block: 52px 76px; }
.work h2, .pricing h2 { margin: 0; color: var(--black); font-family: var(--heading); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; letter-spacing: -0.01em; }
.work > p { max-width: 640px; margin: 14px 0 0; color: var(--muted); font-size: 1.1rem; }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 44px; }
.work-card { display: block; overflow: hidden; border-radius: 16px; background: var(--ivory); box-shadow: 0 0 0 rgba(17, 17, 17, 0); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.work-card:hover, .work-card:focus-visible { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(17, 17, 17, 0.16); }
.work-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.work-card .thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.work-card:hover .thumb img, .work-card:focus-visible .thumb img { transform: scale(1.05); }
.work-card .body { padding: 20px; }
.work-card .kind { color: var(--red); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.work-card h3 { margin: 6px 0 0; color: var(--black); font-size: 1.1rem; font-weight: 800; }
.work-card p { margin: 8px 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.work-card .visit { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--ink); font-size: 0.88rem; font-weight: 800; }
.work-card .arrow { transition: transform 0.2s ease; }
.work-card:hover .arrow, .work-card:focus-visible .arrow { transform: translate(3px, -3px); }

.how { padding-block: 78px; }
.how-list { margin-top: 52px; }
.how-row { padding-block: 34px; }
.how-num { color: var(--black); font-family: var(--heading); font-size: 1.4rem; font-weight: 900; }
.how-row h3 { font-size: 1.15rem; letter-spacing: 0.01em; text-transform: uppercase; }

.pricing { padding-block: 80px; background: var(--ivory); }
.pricing h2 { margin-bottom: 44px; }
.price-main { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 44px; border-radius: 24px; background: #fff; box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08); }
.price-main p { margin: 0; color: var(--muted); }
.price-main ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.price-main li { position: relative; padding-left: 26px; color: var(--black); font-size: 0.95rem; font-weight: 700; }
.price-main li::before { position: absolute; left: 0; top: 0.22em; width: 14px; height: 8px; content: ""; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); transform: rotate(-45deg); }
.price-label { color: var(--muted); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.price-amount { display: block; margin: 8px 0; color: var(--ink); font-family: var(--heading); font-size: clamp(3.6rem, 6vw, 5rem); font-weight: 900; line-height: 1; }
.price-bestfor-label { margin-top: 10px !important; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.price-bestfor { margin-top: 4px !important; font-size: 0.92rem; line-height: 1.5; }
.price-main .btn { margin-top: 20px; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.addon-card { position: relative; overflow: hidden; padding: 32px; border-radius: 20px; background: #fff; box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06); }
.addon-card .label, .bundle .label { color: var(--red); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.addon-card .amount { display: block; margin: 10px 0; color: var(--ink); font-family: var(--heading); font-size: 2.1rem; font-weight: 900; }
.addon-card .amount small { color: var(--muted); font-size: 1.1rem; font-weight: 700; }
.addon-card p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.addon-card .fine { margin-top: 10px; font-size: 0.82rem; }
.arch-accent { position: absolute; top: -10px; right: -6px; opacity: 0.5; pointer-events: none; }
.brand-board { margin-top: 20px; padding: 18px; border-radius: 14px; background: var(--ivory); }
.brand-board .kicker { display: block; margin-bottom: 12px; color: var(--muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.mark-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.brand-board .mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--black); color: var(--red-soft); font-family: var(--display); font-size: 1.1rem; font-style: italic; }
.brand-board .name { color: var(--black); font-family: var(--display); font-size: 1.05rem; font-style: italic; font-weight: 600; line-height: 1; }
.brand-board .tag { margin-top: 4px; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; }
.swatches { display: flex; gap: 6px; margin-bottom: 12px; }
.swatches span { width: 22px; height: 22px; border: 1px solid rgba(17, 17, 17, 0.12); border-radius: 5px; }
.type-row { display: flex; gap: 16px; color: var(--black); font-size: 0.8rem; }
.type-row .hd { font-family: var(--display); font-style: italic; }
.type-row .bd { font-family: var(--body); font-weight: 700; }
.btn-block { width: 100%; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-top: 18px; padding: 0 26px; border: 2px solid transparent; border-radius: 999px; font-size: 0.9rem; font-weight: 800; }
.btn-block.btn-outline { border-color: var(--ink); }
.bundle { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding: 26px 32px; border-radius: 20px; background: var(--black); color: #fff; }
.bundle .label { color: var(--red-soft); }
.bundle p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }
.bundle-cta-row { display: flex; align-items: center; gap: 18px; }
.bundle-price { color: #fff; font-family: var(--heading); font-size: 2rem; font-weight: 900; }
.btn-gold { background: var(--red); color: #fff; }
.btn-gold:hover { background: var(--red-soft); color: var(--black); }

.faq { padding-block: 72px; }
.faq h2 { margin: 0 0 30px; color: var(--black); font-family: var(--heading); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 900; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 4px; border: 0; background: none; text-align: left; cursor: pointer; }
.faq-q .q-text { color: var(--black); font-size: 1.08rem; font-weight: 800; }
.faq-q .symbol { flex: 0 0 auto; color: var(--red); font-size: 1.3rem; font-weight: 900; }
.faq-q:hover .q-text { color: var(--red); }
.faq-a { max-width: 680px; margin: 0 0 24px; padding: 0 4px; color: var(--muted); font-size: 0.98rem; line-height: 1.6; }
.faq-a p { margin: 0; }
.faq-a[hidden] { display: none; }

.founder { position: relative; padding-block: 70px; }
.founder-arch { position: absolute; left: 16px; top: 16px; opacity: 0.18; pointer-events: none; }
.founder-media { margin: 0; overflow: hidden; border-radius: 20px; aspect-ratio: 3 / 2; }
.founder-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-copy { max-width: 720px; margin: 22px auto 0; text-align: center; }
.founder-copy .kicker { margin: 0 0 14px; color: var(--red); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.founder-copy blockquote { margin: 0; color: var(--black); font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 2rem); font-style: italic; font-weight: 600; line-height: 1.35; }
.founder-copy .body { max-width: 580px; margin: 18px auto 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.founder-copy .sig { margin: 22px 0 0; color: var(--ink); font-weight: 800; }

.final-cta { position: relative; overflow: hidden; padding-block: 80px; background: var(--red); text-align: center; }
.final-cta-arch { position: absolute; right: -20px; bottom: -20px; opacity: 0.16; pointer-events: none; }
.final-cta h2 { position: relative; margin: 0; color: var(--black); font-family: var(--heading); font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 900; }
.final-cta .btn { position: relative; margin-top: 28px; background: var(--ink); color: #fff; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.final-cta .btn:hover { background: var(--black); }

.contact { padding-block: 90px; background: var(--ivory); }
.contact-head { text-align: center; }
.contact-head h2 { margin: 0; color: var(--black); font-family: var(--heading); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; }
.contact-head p { max-width: 540px; margin: 16px auto 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.contact-form { display: grid; gap: 18px; margin: 40px auto 0; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: var(--black); font-size: 0.88rem; font-weight: 700; }
.contact-form .form-help { color: var(--muted); font-size: 0.78rem; font-weight: 600; line-height: 1.4; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 52px; padding: 14px 16px; border: 1px solid rgba(17, 17, 17, 0.2); border-radius: 12px; background: #fff; color: var(--black); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button { min-height: 56px; justify-self: center; padding: 0 40px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-size: 1.02rem; font-weight: 800; cursor: pointer; }
.contact-form button:hover { background: var(--black); }
.hidden-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 56px 0 40px; background: var(--black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-grid img { width: 64px; height: 64px; object-fit: cover; }
.footer-brand-name { margin: 16px 0 0; color: #fff; font-family: var(--heading); font-size: 1.1rem; font-weight: 900; }
.footer-tagline { margin: 6px 0 0; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-bilingual { margin: 14px 0 0; color: var(--red-soft); font-size: 0.85rem; font-weight: 700; }
.footer-col-label { display: block; margin-bottom: 14px; color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #fff; font-size: 0.92rem; }
.footer-links a:hover { color: var(--red-soft); }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.5); font-size: 0.84rem; }

.back-to-top { position: fixed; left: 26px; bottom: 26px; z-index: 45; width: 48px; height: 48px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; box-shadow: 0 14px 30px rgba(17, 17, 17, 0.3); cursor: pointer; font-size: 1.2rem; font-weight: 900; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--red); }
.chat-launcher { position: fixed; right: 26px; bottom: 26px; z-index: 50; width: 64px; height: 64px; display: grid; place-items: center; padding: 0; border: 2px solid var(--red-soft); border-radius: 999px; background: var(--ink); color: #fff; box-shadow: 0 14px 34px rgba(17, 17, 17, 0.32); cursor: pointer; transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease; }
.chat-launcher:hover { transform: translateY(-3px); background: var(--black); }
.chat-launcher:focus-visible { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 6px var(--red), 0 14px 34px rgba(17, 17, 17, 0.32); }
.chat-launcher-icon { width: 38px; height: 38px; overflow: visible; }
.robot-antenna, .robot-head, .robot-ear, .robot-smile { fill: none; stroke: var(--ivory); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.robot-head { fill: rgba(246, 241, 236, 0.08); stroke: var(--ivory); }
.robot-eye, .robot-bow, .robot-bow-center { fill: var(--red-soft); }
.robot-smile { stroke: var(--red-soft); stroke-width: 2; }
.chat-launcher-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; width: max-content; padding: 8px 11px; border: 1px solid rgba(17, 17, 17, 0.12); border-radius: 8px; background: #fff; color: var(--black); box-shadow: 0 8px 22px rgba(17, 17, 17, 0.16); font-size: 0.78rem; font-weight: 800; line-height: 1; opacity: 0; pointer-events: none; transform: translate(6px, -50%); transition: opacity 0.16s ease, transform 0.16s ease; }
.chat-launcher:hover .chat-launcher-tooltip, .chat-launcher:focus-visible .chat-launcher-tooltip { opacity: 1; transform: translate(0, -50%); }
.chat-panel { position: fixed; right: 26px; bottom: 102px; z-index: 60; width: min(440px, calc(100vw - 40px)); max-width: calc(100vw - 40px); height: min(680px, calc(100dvh - 128px)); min-width: 0; display: none; flex-direction: column; overflow: hidden; border: 1px solid rgba(17, 17, 17, 0.14); border-radius: 24px; background: #fff; box-shadow: 0 28px 70px rgba(17, 17, 17, 0.34); }
.chat-panel.is-open { display: flex; }
.chat-header { min-width: 0; flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; background: var(--ink); color: #fff; }
.chat-header > div { min-width: 0; }
.chat-header strong { font-family: var(--heading); font-size: 1.05rem; letter-spacing: 0.01em; }
.chat-header strong, .chat-header .sub { display: block; max-width: 100%; overflow-wrap: anywhere; word-break: normal; }
.chat-header .sub { margin-top: 3px; color: var(--red-soft); font-size: 0.78rem; font-weight: 700; }
.chat-close { width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: #fff; cursor: pointer; font-size: 1.35rem; line-height: 1; }
.chat-close:hover { background: var(--red); }
.concierge-progress { height: 5px; flex: 0 0 auto; overflow: hidden; background: #e6e0da; }
.concierge-progress span { display: block; width: 16.67%; height: 100%; background: var(--red); transition: width 0.2s ease; }
.concierge-body { min-width: 0; min-height: 0; flex: 1 1 auto; overflow-y: auto; padding: 26px 24px 22px; scroll-padding-block: 28px; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.concierge-body form { min-width: 0; display: grid; gap: 18px; }
.concierge-body form > *, .concierge-choice-grid > *, .concierge-assets > *, .concierge-two-column > * { min-width: 0; }
.concierge-eyebrow { margin: 0 0 8px; color: var(--red); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.concierge-question { margin: 0; color: var(--black); font-family: var(--heading); font-size: clamp(1.45rem, 4vw, 1.9rem); font-weight: 900; line-height: 1.12; overflow-wrap: anywhere; word-break: normal; }
.concierge-question:focus { outline: none; }
.concierge-help { margin: 10px 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; overflow-wrap: anywhere; }
.concierge-language-actions, .concierge-choice-grid { display: grid; gap: 10px; margin-top: 24px; padding: 0; border: 0; }
.concierge-language-button, .concierge-choice { min-width: 0; min-height: 54px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(17, 17, 17, 0.18); border-radius: 14px; background: #fff; color: var(--black); cursor: pointer; font-weight: 800; text-align: left; white-space: normal; overflow-wrap: anywhere; word-break: normal; transition: border-color 0.15s ease, background 0.15s ease; }
.concierge-language-button:hover, .concierge-choice:hover { border-color: var(--red); background: var(--ivory); }
.concierge-choice input { width: 20px; height: 20px; flex: 0 0 auto; margin: 0; accent-color: var(--red); }
.concierge-choice:has(input:checked) { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); background: #fff7f7; }
.concierge-field { display: grid; gap: 7px; }
.concierge-field-label, .concierge-asset-name { color: var(--black); font-size: 0.86rem; font-weight: 800; }
.concierge-field input, .concierge-field textarea { width: 100%; min-width: 0; max-width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid rgba(17, 17, 17, 0.22); border-radius: 12px; background: #fff; color: var(--black); scroll-margin-block: 28px; }
.concierge-field textarea { min-height: 110px; resize: vertical; }
.concierge-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.concierge-assets { display: grid; gap: 12px; }
.concierge-asset-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; margin: 0; padding: 13px 14px; border: 1px solid rgba(17, 17, 17, 0.14); border-radius: 14px; }
.concierge-asset-name { padding: 0; }
.concierge-yes-no { display: flex; gap: 7px; }
.concierge-yes-no .concierge-choice { min-height: 40px; padding: 8px 10px; font-size: 0.82rem; }
.concierge-yes-no .concierge-choice input { width: 17px; height: 17px; }
.concierge-primary, .concierge-secondary { width: 100%; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; cursor: pointer; font-weight: 900; }
.concierge-primary { margin-top: 2px; border: 0; background: var(--ink); color: #fff; }
.concierge-primary:hover { background: var(--black); }
.concierge-secondary { margin-top: 10px; border: 2px solid var(--ink); background: transparent; color: var(--ink); }
.concierge-secondary:hover { background: var(--ivory); }
.concierge-privacy, .concierge-guidance { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.concierge-error { margin: 0; padding: 10px 12px; border-left: 4px solid var(--red); background: #fff2f3; color: var(--black); font-size: 0.85rem; font-weight: 700; }
.concierge-recommendation { margin-top: 22px; padding: 20px; border: 2px solid var(--red); border-radius: 18px; background: var(--ivory); }
.concierge-package-name { margin: 0; color: var(--black); font-family: var(--heading); font-size: 1.25rem; font-weight: 900; overflow-wrap: anywhere; }
.concierge-package-price { display: block; margin-top: 8px; color: var(--red); font-family: var(--heading); font-size: 2rem; font-weight: 900; }
.concierge-package-description, .concierge-reason { margin: 10px 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; overflow-wrap: anywhere; }
.concierge-reason { color: var(--black); font-weight: 700; }
.concierge-guidance { margin: 14px 0 18px; }
.concierge-footer { min-width: 0; min-height: 52px; flex: 0 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 14px; padding: 8px 20px; border-top: 1px solid rgba(17, 17, 17, 0.1); background: #fff; }
.concierge-link { min-height: 36px; padding: 4px 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 0.82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.concierge-link:hover { color: var(--red); }
.concierge-handoff { margin: 32px auto 0; padding: 18px 20px; border-left: 5px solid var(--red); border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06); }
.concierge-handoff strong { color: var(--black); font-family: var(--heading); font-size: 1.08rem; }
.concierge-handoff p { margin: 6px 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.concierge-review-summary { margin: 16px 0 0; padding: 16px; overflow-x: auto; border: 1px solid rgba(17, 17, 17, 0.12); border-radius: 10px; background: var(--ivory); color: var(--black); font-family: var(--body); font-size: 0.84rem; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.contact-form button:disabled { cursor: wait; opacity: 0.7; }

.thank-you-page { min-width: 0; min-height: 100svh; display: flex; flex-direction: column; overflow-x: hidden; background: var(--ivory); }
.thank-you-header { flex: 0 0 auto; border-bottom: 1px solid var(--line); background: var(--white); }
.thank-you-header-inner { min-width: 0; min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.thank-you-main { min-width: 0; flex: 1 0 auto; display: grid; place-items: center; padding: clamp(48px, 8vw, 96px) 0; }
.thank-you-section { min-width: 0; }
.thank-you-card { position: relative; width: min(760px, 100%); min-width: 0; margin-inline: auto; padding: clamp(38px, 7vw, 72px); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 18px 46px rgba(17, 17, 17, 0.1); text-align: center; }
.thank-you-card::before { position: absolute; inset: 0 0 auto; height: 7px; content: ""; background: var(--red); }
.thank-you-door { position: relative; width: 56px; height: 64px; margin: 0 auto 26px; border: 3px solid var(--black); border-radius: 28px 28px 5px 5px; background: var(--ivory); }
.thank-you-door-panel { position: absolute; inset: 11px 10px 0; border: 2px solid var(--red); border-bottom: 0; border-radius: 18px 18px 0 0; }
.thank-you-door-knob { position: absolute; right: 14px; top: 38px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.thank-you-eyebrow { margin: 0; color: var(--red); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.thank-you-card h1 { max-width: 620px; margin: 14px auto 0; color: var(--black); font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; overflow-wrap: normal; word-break: normal; }
.thank-you-message { max-width: 560px; margin: 22px auto 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.65; overflow-wrap: anywhere; }
.thank-you-home { max-width: 100%; margin-top: 32px; white-space: normal; }
.thank-you-footer { flex: 0 0 auto; padding: 22px max(16px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); background: var(--black); color: var(--white); text-align: center; }
.thank-you-footer p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }

@media (max-width: 960px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card { display: grid; grid-template-columns: minmax(240px, 0.8fr) 1fr; }
  .work-card .thumb { aspect-ratio: auto; min-height: 280px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 98px 0 auto 0; min-height: calc(100vh - 98px); display: none; align-items: stretch; align-content: start; flex-direction: column; gap: 0; padding: 32px 24px; background: #fff; border-top: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 18px 8px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .site-nav .cta { margin-top: 20px; justify-content: center; border: 0; }
}

@media (max-width: 800px) {
  .hero { padding-top: 46px; }
  .hero-intro { align-items: start; }
  .focused-week-row { grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr); gap: 28px; }
  .price-main, .addon-grid { grid-template-columns: 1fr; }
  .price-main { gap: 36px; }
}

@media (max-width: 700px) {
  .wrap, .wrap-narrow, .wrap-form { width: min(100% - 32px, var(--wrap)); }
  .header-inner { min-height: 82px; }
  .logo img { width: 60px; height: 60px; }
  .site-nav { inset-block-start: 82px; min-height: calc(100vh - 82px); }
  .announce { padding-inline: 16px; }
  .announce-row { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .announce-row::-webkit-scrollbar { display: none; }
  .principle-row, .how-row { grid-template-columns: 70px 1fr; gap: 18px; }
  .principle-num { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .bundle, .bundle-cta-row { align-items: flex-start; flex-direction: column; }
  .thank-you-header-inner { min-height: 82px; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 90px; }
  .header-actions { gap: 8px; }
  .language-switch button { min-width: 32px; padding-inline: 6px; }
  .hero { padding-block: 36px 64px; }
  .hero-intro { display: grid; gap: 24px; margin-bottom: 26px; }
  .hero-media { aspect-ratio: 960 / 941; border-radius: 18px; }
  .hero h1 { font-size: clamp(2.4rem, 11.5vw, 3.35rem); }
  .hero .lede { font-size: 1.05rem; }
  .hero-actions .btn { width: 100%; }
  .principles, .how, .faq, .founder, .contact, .pricing { padding-block: 58px; }
  .principles { padding-bottom: 38px; }
  .work { padding-block: 42px 58px; }
  .focused-week-row { grid-template-columns: 1fr; gap: 22px; margin-top: 30px; }
  .focused-week-calendar { width: 100%; }
  .principle-row, .how-row { grid-template-columns: 1fr; gap: 12px; }
  .work-card { display: block; }
  .work-card .thumb { aspect-ratio: 4 / 3; min-height: 0; }
  .price-main, .addon-card { padding: 26px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .founder-media { aspect-ratio: 4 / 3; }
  .back-to-top { left: 16px; bottom: 16px; }
  .chat-launcher { right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); width: 58px; height: 58px; }
  .chat-launcher-tooltip { display: none; }
  body.concierge-contact-visible .chat-launcher:not([aria-expanded="true"]) { opacity: 0; pointer-events: none; transform: translateY(16px); }
  .chat-panel { inset: auto max(8px, env(safe-area-inset-right)) auto max(8px, env(safe-area-inset-left)); top: calc(max(8px, env(safe-area-inset-top)) + var(--concierge-vv-top, 0px)); width: auto; max-width: none; height: calc(var(--concierge-vh, 100dvh) - max(16px, calc(env(safe-area-inset-top) + env(safe-area-inset-bottom)))); max-height: none; border-radius: 18px; }
  .chat-header { padding: 15px 16px; }
  .concierge-body { padding: 22px 18px 18px; }
  .concierge-two-column, .concierge-asset-row { grid-template-columns: 1fr; }
  .concierge-footer { padding-inline: 18px; padding-bottom: max(8px, env(safe-area-inset-bottom)); }
  .thank-you-main { padding: 32px 0; }
  .thank-you-card { padding: 38px 22px 42px; border-radius: 18px; }
  .thank-you-door { margin-bottom: 22px; }
  .thank-you-card h1 { font-size: clamp(1.95rem, 10.2vw, 3rem); }
  .thank-you-home { width: 100%; }
}

@media (max-width: 420px) {
  .concierge-body { padding-inline: 16px; }
  .concierge-question { font-size: clamp(1.35rem, 7vw, 1.6rem); }
  .concierge-yes-no .concierge-choice { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
