/*
Theme Name: Bryan Meere Theme
Theme URI: https://homepage.studio
Author: HomePage Studio
Description: Custom website for Bryan Meere
Version: 1.0
*/

:root {
  --color-black: #0e0e10;
  --color-black-soft: #17171b;
  --color-red: #EA002A;
  --color-red-deep: #c40023;
  --color-white: #ffffff;
  --color-ice: #f6f6f7;
  --color-grey-100: #efeff1;
  --color-grey-200: #d9dadd;
  --color-grey-400: #7e8188;
  --color-grey-600: #4f5259;
  --color-text: #111216;
  --color-border: rgba(17,18,22,.10);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --container: 1320px;
  --section-space: clamp(72px, 9vw, 128px);
  --radius: 28px;
  --shadow-soft: 0 24px 70px rgba(14,14,16,.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: var(--section-space) 0; }
.section-light { background: var(--color-white); }
.section-soft { background: var(--color-ice); }
.section-dark { background: var(--color-black); color: var(--color-white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.h1, .h2, .h3, h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 400;
}
.h1, h1 { font-size: clamp(52px, 9vw, 118px); }
.h2, h2 { font-size: clamp(38px, 6vw, 74px); }
.h3, h3 { font-size: clamp(24px, 3.6vw, 36px); }
.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: var(--color-grey-600);
}
.section-dark .lead { color: rgba(255,255,255,.74); }
.body-lg {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.85;
  color: var(--color-grey-600);
}
.section-dark .body-lg { color: rgba(255,255,255,.72); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-red); color: #fff; box-shadow: 0 18px 40px rgba(234,0,42,.22); }
.btn-primary:hover { background: var(--color-red-deep); }
.btn-secondary { border-color: rgba(255,255,255,.22); color: #fff; background: transparent; }
.btn-outline-dark { border-color: var(--color-border); color: var(--color-text); background: transparent; }
.btn-outline-dark:hover { background: var(--color-black); color: #fff; border-color: var(--color-black); }
.btn-dark { background: var(--color-black); color: #fff; border-color: var(--color-black); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 88px;
  z-index: 1000;
  background: rgba(10,10,12,.12);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  border-color: rgba(17,18,22,.08);
  box-shadow: 0 10px 30px rgba(17,18,22,.06);
}
.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.site-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .06em;
}
.site-logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .04em;
  color: #fff;
  line-height: .9;
}
.site-logo-text span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.site-header.scrolled .site-logo-text strong { color: var(--color-text); }
.site-header.scrolled .site-logo-text span { color: var(--color-grey-600); }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.site-header.scrolled .site-nav a:not(.btn) { color: var(--color-text); }
.nav-mobile-actions { display: none; align-items: center; gap: 10px; }
.nav-mobile-book,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-header.scrolled .nav-mobile-book,
.site-header.scrolled .nav-toggle {
  color: var(--color-text);
  background: #fff;
  border-color: rgba(17,18,22,.10);
}
.nav-toggle { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,10,.58);
  backdrop-filter: blur(8px);
  z-index: 1200;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: #111216;
  color: #fff;
  padding: 24px;
  box-shadow: -24px 0 60px rgba(0,0,0,.35);
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
}
.mobile-menu-close {
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}
.mobile-menu-nav { display: grid; gap: 12px; }
.mobile-menu-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(10,10,12,.74) 0%, rgba(10,10,12,.56) 38%, rgba(10,10,12,.86) 100%), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1800&q=80&fit=crop') center/cover;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(234,0,42,.22), transparent 26%), linear-gradient(90deg, rgba(10,10,12,.75) 0%, rgba(10,10,12,.46) 48%, rgba(10,10,12,.18) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  gap: 40px;
  align-items: center;
  padding: 124px 0 34px;
}
.hero-copy { max-width: 760px; }
.hero-copy .lead { max-width: 600px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
  margin-bottom: 18px;
}
.hero-kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--color-red);
}
.hero-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-trust-inline span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.hero-portrait-wrap {
  justify-self: end;
  width: min(100%, 540px);
}
.hero-portrait-card {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.hero-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.hero-floating-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16,16,18,.90), rgba(16,16,18,.80));
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  backdrop-filter: blur(12px);
}
.hero-floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: .94;
  margin-bottom: 10px;
}
.hero-floating-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
}

.proof-band {
  position: relative;
  z-index: 3;
  margin-top: -86px;
}
.proof-band-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #f9f9fa);
  border: 1px solid rgba(17,18,22,.08);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
}
.proof-stat {
  padding: 28px 22px;
  background: rgba(255,255,255,.94);
}
.proof-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 60px);
  line-height: .92;
  margin-bottom: 8px;
}
.proof-stat span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-grey-600);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.soft-panel {
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.dark-panel {
  background: linear-gradient(180deg, #17171b, #111216 78%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 34px;
  color: #fff;
  box-shadow: 0 26px 80px rgba(0,0,0,.22);
}
.dark-panel p { color: rgba(255,255,255,.74); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(234,0,42,.08);
  color: var(--color-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.trust-card p { margin: 0; color: var(--color-grey-600); }

.promise-quote {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #1a1b20, #111216 72%);
  color: #fff;
}
.promise-quote strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .94;
  margin-bottom: 10px;
}
.promise-quote p { margin: 0; color: rgba(255,255,255,.74); }

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.path-card {
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 100%;
}
.path-card.dark {
  background: linear-gradient(180deg, #17171b, #111216 82%);
  color: #fff;
}
.path-card.light {
  background: #fff;
  border-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}
.path-card p { margin-bottom: 0; }
.path-card.dark p { color: rgba(255,255,255,.72); }
.path-card .btn-row { margin-top: 22px; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.area-pill {
  padding: 18px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 32px;
  align-items: center;
}
.about-portrait {
  background: linear-gradient(180deg, #ffffff, #fafafb);
  border-radius: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.cta-block {
  background: linear-gradient(135deg, #17171b, #0f1013 72%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 36px;
  padding: 50px 38px;
  box-shadow: 0 28px 80px rgba(10,10,12,.18);
}
.cta-block p { color: rgba(255,255,255,.74); max-width: 760px; }

.site-footer {
  background: #0f1013;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: end;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .site-logo-mark { width: 42px; height: 42px; font-size: 22px; }
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .04em;
  line-height: .9;
}
.footer-brand span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}
.footer-nav a { font-size: 12px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }
.footer-meta { color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s ease;
}
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-mobile-actions { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .hero-grid,
  .section-grid,
  .about-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 112px; gap: 28px; }
  .hero-portrait-wrap { justify-self: start; width: min(100%, 460px); }
  .proof-band { margin-top: -18px; }
  .proof-band-inner,
  .trust-grid,
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --section-space: 72px; }
  .container, .header-inner, .hero-grid, .proof-band-inner { width: calc(100% - 28px); }
  .site-logo-text strong { font-size: 28px; }
  .site-logo-text span { font-size: 9px; }
  .nav-mobile-book, .nav-toggle { min-height: 38px; padding: 0 12px; font-size: 9px; }
  .hero-grid { padding-top: 96px; gap: 20px; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 64px); line-height: .98; }
  .hero-copy .lead { font-size: 17px; }
  .hero-trust-inline { gap: 8px; }
  .hero-trust-inline span { width: 100%; text-align: center; }
  .hero-portrait-wrap { width: 100%; max-width: 100%; }
  .hero-floating-card { position: static; margin-top: 14px; }
  .proof-band-inner,
  .trust-grid,
  .path-grid,
  .area-grid { grid-template-columns: 1fr; }
  .soft-panel, .dark-panel, .trust-card, .path-card, .cta-block { padding: 24px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .footer-nav { justify-content: flex-start; gap: 10px; }
}
