/* ========================================================================
   898 CULTURE - light black & white theme (live layout + Design 1 look)
   Fonts: Anton (display), Archivo (body), Space Mono (labels)
   Brand accent is one variable (--accent) so it is easy to re-theme.
   ===================================================================== */

:root {
  --bg:        #ffffff;
  --bg-2:      #f4f4f1;
  --ink:       #111110;
  --muted:     #6b6b67;
  --line:      #e4e4df;
  --accent:    #111110;   /* monochrome by default; set to #c6ff3a for a lime pop */
  --highlight: #e9e9e3;   /* soft gray marker behind accented words */
  --radius:    14px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, iframe { display: block; max-width: 100%; }

.eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Accent word: solid black for a clean monochrome headline. */
.accent { color: inherit; }

/* Outlined headline words: 898 CULTURE logo style (solid + outline mix).
   Wrap a word in <span class="outline"> to render it as black outline only. */
.hero__title .outline,
.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
  text-stroke: 2.5px var(--ink);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-3px); background: #000; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--small { padding: 11px 20px; font-size: 0.85rem; border-radius: 999px; }

/* ---- Section scaffolding ---- */
section { padding: 110px 24px; }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-lead { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }

/* ========================= NAV ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
.nav.scrolled { background: rgba(255,255,255,0.95); border-color: var(--line); padding: 12px 24px; }

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 30px; width: auto; transition: height 0.3s; }
.nav.scrolled .nav__logo img { height: 26px; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 22px; }
.nav__login {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav__login:hover { opacity: 0.55; }

/* Menu-only items appear only inside the mobile slide-out menu */
.nav__menu-only { display: none; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ========================= HERO ========================= */
.hero {
  padding: 150px 24px 90px;
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.hero__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: #fff;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  border-radius: 6px;
}

/* ========================= INTERESTED ========================= */
.cards {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 18px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.5);
}
.card__num {
  font-family: "Space Mono", monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}
.card h3 { font-family: "Archivo", sans-serif; font-size: 1.3rem; margin: 12px 0 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; }
.card p { color: var(--muted); font-size: 0.92rem; }

.interested__cta {
  max-width: 640px;
  margin: 60px auto 0;
  text-align: center;
}
.interested__cta p { font-size: 1.2rem; margin-bottom: 24px; color: var(--muted); }
.interested__cta strong { color: var(--ink); }

/* ========================= TRANSFORMATIONS ========================= */
.transformations { background: var(--bg-2); }
.videos {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video__frame iframe,
.video__frame video { width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }
.video figcaption { margin-top: 16px; font-weight: 700; font-size: 1.05rem; text-align: center; }

/* ========================= ABOUT ========================= */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.about__body .section-title { margin-bottom: 24px; }
.about__body p { color: var(--muted); margin-bottom: 16px; }
.about__points { list-style: none; margin-top: 24px; }
.about__points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--ink);
}
.about__points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* ========================= GALLERY ========================= */
.gallery { padding-top: 0; }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 680px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

/* ========================= METHOD ========================= */
.method { background: var(--bg-2); }
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
}
.step__num {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 800; text-transform: uppercase; }
.step p { color: var(--muted); }

/* ========================= BOOK ========================= */
.book__cal {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  overflow: hidden;
}

#cal-inline {
  width: 100%;
  height: 700px;
  overflow: auto;
}

/* ========================= FOOTER ========================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 24px 32px;
  text-align: center;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__logo { display: inline-block; }
.footer__logo img { height: 86px; width: auto; }
.footer__tag { color: var(--muted); margin: 16px 0 24px; }
.footer__links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.footer__links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer__links a:hover { opacity: 0.55; }
.footer__copy { color: var(--muted); font-size: 0.82rem; margin-top: 36px; }

/* ========================= ANIMATIONS ========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Hero entrance on load (staggered) */
.hero__text > * { opacity: 0; animation: fadeUp 0.75s var(--ease) forwards; }
.hero__text .eyebrow  { animation-delay: 0.05s; }
.hero__title          { animation-delay: 0.16s; }
.hero__sub            { animation-delay: 0.30s; }
.hero__cta            { animation-delay: 0.44s; }
.hero__media { opacity: 0; animation: fadeUp 0.85s var(--ease) 0.30s forwards; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Staggered reveal inside grids */
.cards .card:nth-child(2)      { transition-delay: 0.08s; }
.cards .card:nth-child(3)      { transition-delay: 0.16s; }
.cards .card:nth-child(4)      { transition-delay: 0.24s; }
.cards .card:nth-child(5)      { transition-delay: 0.32s; }
.steps .step:nth-child(2)      { transition-delay: 0.10s; }
.steps .step:nth-child(3)      { transition-delay: 0.20s; }
.videos .video:nth-child(2)    { transition-delay: 0.12s; }
.gallery__item:nth-child(2)    { transition-delay: 0.10s; }
.gallery__item:nth-child(3)    { transition-delay: 0.20s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__text > *, .hero__media { opacity: 1; animation: none; }
  html { scroll-behavior: auto; }
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 120px; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  /* Buttons hug their text on mobile instead of stretching wide */
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn { font-size: 0.82rem; padding: 14px 22px; letter-spacing: 0.03em; }
  /* Thinner outline stroke so headers don't look heavy at small sizes */
  .hero__title .outline,
  .section-title .outline {
    -webkit-text-stroke-width: 1.5px;
    text-stroke-width: 1.5px;
  }
  .nav__links {
    position: fixed;
    top: 60px; right: 16px;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 26px;
    gap: 18px;
    transform: translateX(140%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.3);
  }
  .nav__links.open { transform: none; }
  .nav__toggle { display: flex; }
  .nav__actions { display: none; }
  .nav__menu-only { display: block; }
  .nav__menu-only::after { display: none; }
  .nav__links a.nav__menu-book {
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 13px 18px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
    margin-top: 4px;
  }
  section { padding: 80px 20px; }
}
