
:root {
  --page-width: 66.6667%;
  --text: #000;
  --muted: rgba(84,84,84,.8);
  --accent: #42726f;
  --border: rgba(84,84,84,.15);
  --cream: #f7f3ec;
  --bg: #fff;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:#fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display:block; max-width:100%; height:auto; }

.site-shell { min-height:100vh; }
.offcanvas-placeholder { display:none; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 36px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.site-branding { flex: 0 0 auto; }
.logo-main img { width: 200px; }
.logo-sticky, .logo-mobile { display:none; }
.menu-wrapper {
  display:flex;
  align-items:center;
  gap:24px;
  flex:1;
  justify-content:flex-end;
}
.main-nav ul {
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  gap: 30px;
  align-items:center;
}
.main-nav a {
  color:#fff;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
}
.site-tools {
  display:flex;
  align-items:center;
  gap:10px;
}
.tool {
  position:relative;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
}
.tool-icon { font-size:20px; line-height:1; }
.bag-count {
  position:absolute;
  top:2px;
  right:0;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-size:11px;
  line-height:18px;
  text-align:center;
  font-weight:700;
}

.boxed-page {
  width: var(--page-width);
  margin: 0 auto;
  background:#fff;
}
.hero-slider { width:100%; }
.hero-slide {
  position:relative;
  min-height: 820px;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  color:#fff;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.05) 100%);
}
.slider-content {
  position:relative;
  z-index:1;
  min-height: 820px;
  display:flex;
  align-items:center;
}
.slider-content-wrapper {
  padding-left: 280px;
  padding-top: 50px;
  max-width: 920px;
}
.slider-content h2 {
  margin:0 0 22px;
  font-size:54px;
  line-height:54px;
  font-weight:700;
  letter-spacing:-.02em;
}
.slider-content p {
  margin:0 0 26px;
  font-size:32px;
  line-height:35px;
  color:#fff;
}
.button {
  display:inline-block;
  padding: 18px 34px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.button.dark {
  background:#000;
  color:#fff;
}
.content-row {
  width:100%;
  padding: 46px 0 0;
}
.two-col {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}
.quote-block { padding: 0 8px; }
.quote-mark {
  width:53px;
  margin: 0 0 24px;
}
.quote-block h4 {
  margin:0 0 22px;
  font-size:23px;
  line-height:1.6;
  font-weight:700;
}
.quote-block h6 {
  margin:0;
  font-size:13px;
  line-height:1.6;
  font-weight:700;
  text-transform:none;
}
.three-col {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding-top: 42px;
}
.book-card {
  display:flex;
  justify-content:center;
}
.book-card img {
  width: 100%;
  max-width:280px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.logo-strip-stack {
  width:50%;
  margin: 32px auto 0;
  display:grid;
  gap: 18px;
  justify-items:center;
  padding-bottom: 32px;
}
.logo-strip-stack img { max-width:100%; }
.logo-strip-stack img:last-child { width:220px; }

.site-footer {
  border-top: 1px solid transparent;
  padding: 10px 0 26px;
}
.footer-inner {
  max-width: 1400px;
  margin:0 auto;
  text-align:center;
}
.footer-socials {
  margin-bottom: 14px;
}
.social-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
}
.social-link svg {
  width:24px;
  height:24px;
  fill:#000;
}
.copyright a {
  font-size:13px;
  color: rgba(84,84,84,.8);
}

@media (max-width: 1200px) {
  :root { --page-width: 82%; }
  .header-inner { padding:24px 24px 0; }
  .main-nav ul { gap:18px; }
  .slider-content-wrapper { padding-left:44px; }
  .logo-strip-stack { width:72%; }
}
@media (max-width: 900px) {
  :root { --page-width: 94%; }
  .site-header { position:relative; background:#fff; }
  .logo-main { display:none; }
  .logo-mobile { display:block; }
  .logo-mobile img { width:180px; }
  .header-inner {
    padding: 20px 16px;
    flex-direction:column;
    align-items:flex-start;
  }
  .menu-wrapper { width:100%; flex-direction:column; align-items:flex-start; }
  .main-nav ul { flex-wrap:wrap; }
  .main-nav a, .tool { color:#000; }
  .hero-slide, .slider-content { min-height: 520px; }
  .slider-content-wrapper { max-width:460px; padding: 10px 24px 0; }
  .slider-content h2 { font-size:40px; line-height:42px; }
  .slider-content p { font-size:24px; line-height:28px; }
  .two-col, .three-col { grid-template-columns:1fr; gap:26px; }
  .quote-block h4 { font-size:20px; }
  .logo-strip-stack { width:88%; }
}
.bio-section {
  max-width: 1250px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #222;
  line-height: 1.7;
}

/* Headings */
.bio-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
}

.bio-section h3 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Paragraphs */
.bio-section p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #444;
}

/* Highlighted text */
.bio-section strong {
  color: #000;
  font-weight: 600;
}

/* Lists */
.bio-section ul {
  margin: 20px 0 30px 0;
  padding-left: 0;
  list-style: none;
}

.bio-section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* Custom bullet */
.bio-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c8a96a; /* gold accent */
  font-size: 1.2rem;
  line-height: 1;
}

/* Link styling */
.bio-section a {
  color: #c8a96a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.bio-section a:hover {
  border-bottom: 1px solid #c8a96a;
}

/* Subtle divider */
.bio-section hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .bio-section {
    padding: 25px 20px;
  }

  .bio-section h2 {
    font-size: 1.8rem;
  }
}
.bio-image {
  float: right;
  max-width: 580px;
  width: 100%;
  margin: 0 0 20px 30px;
}

/* Clear float after section */
.bio-section::after {
  content: "";
  display: block;
  clear: both;
}

/* Mobile fix */
@media (max-width: 768px) {
  .bio-image {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
}
.bio-image {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
}
.bio-section h2 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Modern accent line */
.bio-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #c8a96a; /* gold accent */
  border-radius: 2px;
}