/* Creative Minds Zone — website styles. Colours are the logo colours. */
:root {
  --base: #73282A;
  --deep: #5E2022;
  --deeper: #4B191B;
  --cream: #F6E4B7;
  --cream-soft: rgba(246, 228, 183, 0.82);
  --cream-faint: rgba(246, 228, 183, 0.14);
  --sky: #71A7C0;
  --line: rgba(246, 228, 183, 0.28);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
html, body { margin: 0; background: var(--base); color: var(--cream); overflow-x: clip; }
body { font: 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--cream); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 40px); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); color: var(--sky); margin: 0; line-height: 1.06; text-wrap: balance; font-weight: 700; }
h1 em, h2 em, h3 em { font-weight: 500; }
h1 { font-size: clamp(2.6rem, 7.2vw, 5.4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; line-height: 1.2; }
p { margin: 0; max-width: 62ch; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); }
.lede { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--cream-soft); }
.muted { color: var(--cream-soft); }
.small { font-size: 0.92rem; }

/* header */
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(115, 40, 42, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 18px; white-space: nowrap; }
.brand img { height: 38px; width: auto; }
.brand em { font-weight: 500; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-size: 15px; white-space: nowrap; }
.nav a:hover { text-decoration: underline; }
@media (max-width: 860px) { .nav .nav-link { display: none; } }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border-radius: 999px; background: var(--cream); color: var(--base); font-weight: 700; text-decoration: none; border: 0; font: inherit; font-weight: 700; cursor: pointer; transition: transform .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.outline { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn.small { min-height: 42px; padding: 0 18px; font-size: 15px; }
.store-badge { flex-direction: column; align-items: flex-start; gap: 0; line-height: 1.15; padding: 10px 26px; }
.store-badge small { font-weight: 500; font-size: 12px; opacity: 0.8; }

/* hero */
.hero { padding-block: clamp(40px, 8vw, 96px) clamp(56px, 8vw, 110px); }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-mark { height: clamp(70px, 9vw, 110px); width: auto; align-self: flex-start; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { font-size: 0.95rem; color: var(--cream-soft); }

/* phones */
.phones { position: relative; display: flex; justify-content: center; min-height: 560px; }
.phone { width: 250px; border-radius: 38px; padding: 10px; background: var(--deeper); box-shadow: 0 30px 60px rgba(0,0,0,.35); border: 1px solid var(--line); }
.phone img { border-radius: 30px; width: 100%; height: auto; }
.phones .phone:nth-child(1) { transform: rotate(-5deg) translateX(40px); z-index: 1; margin-top: 50px; }
.phones .phone:nth-child(2) { transform: rotate(4deg) translateX(-40px); z-index: 2; }
@media (max-width: 520px) { .phones { min-height: 0; } .phone { width: 170px; } .phones .phone:nth-child(1) { transform: rotate(-5deg) translateX(30px); } .phones .phone:nth-child(2) { transform: rotate(4deg) translateX(-30px); } }

/* skills marquee */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 18px; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slide 60s linear infinite; }
.marquee span { white-space: nowrap; border: 1.5px solid var(--cream); border-radius: 999px; padding: 8px 18px; font-weight: 700; font-size: 15px; }
.marquee span:nth-child(3n) { background: var(--cream); color: var(--base); }
.marquee span:nth-child(5n) { border-color: var(--sky); color: var(--sky); }
@keyframes slide { to { transform: translateX(-50%); } }

/* sections */
section.block { padding-block: clamp(64px, 10vw, 120px); }
section.block.deep { background: var(--deep); }
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: clamp(32px, 5vw, 56px); }

.what { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .what { grid-template-columns: 1fr; } }
.what .big { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.3; color: var(--cream); font-style: italic; font-weight: 500; }
.what-list { display: flex; flex-direction: column; gap: 18px; }
.what-list p { color: var(--cream-soft); }
.what-list strong { color: var(--cream); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.card { background: var(--deep); border-radius: 26px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.deep .card { background: var(--base); }
.card p { color: var(--cream-soft); font-size: 0.98rem; }
.step-no { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 2.4rem; line-height: 1; color: var(--sky); }
.tag { align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid var(--sky); color: var(--sky); border-radius: 999px; padding: 3px 10px; }

/* office feature */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split .phones { order: 2; } }
.checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; color: var(--cream-soft); }
.checks li::before { content: ""; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373282A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/14px no-repeat; }
.checks strong { color: var(--cream); }

/* quote band */
.quote-band { text-align: center; }
.quote-band blockquote { margin: 0 auto; max-width: 22ch; font-family: var(--display); font-weight: 500; font-style: italic; font-size: clamp(2rem, 5.4vw, 4rem); line-height: 1.12; color: var(--cream); }
.quote-band p { margin: 24px auto 0; }

/* fees */
.fee-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .fee-box { grid-template-columns: 1fr; } }
.fee-num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--sky); line-height: 1; }
.pioneer { margin-top: 20px; background: var(--cream); color: var(--base); border-radius: 26px; padding: clamp(24px, 4vw, 40px); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.pioneer h3 { color: var(--base); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.pioneer p { color: var(--base); opacity: .85; }

/* stories */
.stories { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }
@media (max-width: 860px) { .stories { grid-template-columns: 1fr; } }
.story-card { border: 2px dashed var(--line); border-radius: 26px; padding: 32px; display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; min-height: 240px; }

/* faq */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font-family: var(--display); font-size: 1.25rem; color: var(--cream); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sky); font-size: 1.6rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--cream-soft); }

/* final cta */
.final { text-align: center; }
.final .wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.final img { height: 90px; width: auto; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding-block: 40px 56px; font-size: 0.92rem; color: var(--cream-soft); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: space-between; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 22px; }

/* legal + support pages */
.doc { padding-block: 40px 80px; }
.doc h1 { font-size: clamp(2.3rem, 6vw, 3.6rem); margin-top: 24px; }
.doc h2 { font-size: 1.45rem; margin-top: 36px; margin-bottom: 8px; }
.doc p, .doc li { max-width: 68ch; color: var(--cream-soft); }
.doc p + p { margin-top: 12px; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--cream); }
.doc .lede { margin-top: 12px; }
@media (max-width: 440px) {
  .site-header .brand { font-size: 15px; gap: 8px; }
  .site-header .brand img { height: 32px; }
  .site-header .btn.small { padding: 0 14px; font-size: 14px; min-height: 38px; }
}
