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

:root {
  --brand: #C4014B;
  --white: #ffffff;
  --off-white: rgba(255,255,255,0.75);
  --dim: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.18);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--brand);
  background-image:
    linear-gradient(rgba(196, 1, 75, 1.0), rgba(196, 1, 75, 1.0)),
    url('texture_background.png');
  background-repeat: repeat;
  background-size: auto;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  border: 1px solid var(--white) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  color: var(--white) !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--brand) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5vw 6rem;
  position: relative;
  background-image: url('hero-bg.jpeg');
  background-size: 100%;
  background-position: 70% 20%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  bottom: -5%;
  right: 8vw;
  transform: translateX(50%);
  width: 60vw;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 1, 75, 0.45);
  pointer-events: none;
}

.hero-body {
  max-width: 544px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-philosophy p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--off-white);
  margin-bottom: 2.4rem;
}

.hero-statement {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  letter-spacing: -0.01em;
  margin: 2rem 0 !important;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  left: 5vw;
  bottom: 4rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--dim);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--dim);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--brand);
  border: 1px solid var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* ── SECTIONS ── */
section {
  padding: 7rem 5vw;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

/* ── RHYTHMS ── */
.rhythms-section {
  border-top: 1px solid var(--border);
}

.rhythms-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.rhythms-header h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.rhythms-header p {
  color: var(--off-white);
  margin-top: 1rem;
  font-size: 0.98rem;
}

.rhythms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.rhythm-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rhythm-item:nth-child(3n) { border-right: none; }

.rhythm-item summary {
  list-style: none;
  cursor: pointer;
}

.rhythm-item summary::-webkit-details-marker { display: none; }

.rhythm-num {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 1rem;
}

.rhythm-item h3 {
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rhythm-item h3::after {
  content: '+';
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--dim);
  transition: transform 0.25s ease, color 0.2s;
  flex-shrink: 0;
}

.rhythm-item[open] h3::after {
  transform: rotate(45deg);
  color: var(--white);
}

.rhythm-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--off-white);
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ── PHRASES ── */
.phrases-section {
  border-top: 1px solid var(--border);
}

.phrases-section h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.phrase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phrase-list li {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: var(--off-white);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  transition: color 0.2s;
}

.phrase-list li:hover { color: var(--white); }

.phrase-list li::before {
  content: '—';
  color: var(--dim);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── LIFESTYLE IMAGES ── */
.lifestyle-section {
  border-top: 1px solid var(--border);
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
}

.lifestyle-section::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: rgba(196, 1, 75, 0.45);
  pointer-events: none;
}

.lifestyle-1 {
  background-image: url('lifestyle-1.png');
}

/* ── WHO IT'S FOR ── */
.who-section {
  border-top: 1px solid var(--border);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.who-left h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}

.who-right .who-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--off-white);
  font-size: 0.98rem;
  line-height: 1.75;
}

.who-right .who-item:last-child { border-bottom: none; }

.who-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.who-cta p {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.who-cta .sub {
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* ── FOUNDERS ── */
.founders-section {
  border-top: 1px solid var(--border);
  background-image: url('founders.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding: 7rem 5vw;
}

.founders-section::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: rgba(196, 1, 75, 0.45);
  pointer-events: none;
}

.founders-body {
  position: relative;
  z-index: 1;
  max-width: 320px;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 6px;
}

.founders-body .section-label {
  color: var(--brand);
}

.founders-body p:not(.section-label) {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 1.2rem;
}

.founders-body p:last-child {
  margin-bottom: 0;
}

/* ── FREE GUIDE ── */
.guide-section {
  border-top: 1px solid var(--border);
}

.guide-inner {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
}

.guide-left h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.guide-left h2 span {
  display: block;
  font-weight: 100;
}

.guide-left p {
  color: var(--off-white);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.12);
}

.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.newsletter-inner p {
  color: var(--off-white);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}

.newsletter-form input::placeholder { color: var(--dim); }

.newsletter-form input:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.newsletter-form button {
  padding: 1rem 1.8rem;
  background: var(--white);
  color: var(--brand);
  border: 1px solid var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: transparent;
  color: var(--white);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 5vw;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-icon {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-links a:hover .footer-icon { opacity: 1; }

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--brand);
  border: 1px solid var(--border);
  max-width: 460px;
  width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--dim);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

.modal-card h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

.modal-card > p {
  color: var(--off-white);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.modal-form input {
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}

.modal-form input::placeholder { color: var(--dim); }

.modal-form input:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.modal-note {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}

.modal-success { text-align: center; padding: 1rem 0 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 4vw; }
  .nav-logo img { height: 52px !important; }

  .nav-links { gap: 1.2rem; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }

  section { padding: 5rem 6vw; }

  .who-grid,
  .guide-inner { grid-template-columns: 1fr; }

  .hero-scroll { display: none; }

  .hero { padding: 8rem 6vw 5rem; min-height: auto; }

  .hero-philosophy p { margin-bottom: 1.2rem; }
  .hero-body { margin-bottom: 1.8rem; }

  .hero-actions .btn {
    font-size: 0.78rem;
    padding: 0.65rem 1.4rem;
    letter-spacing: 0.12em;
  }

  .rhythms-grid { grid-template-columns: 1fr; }
  .rhythm-item { border-right: none; padding: 1.8rem 1.2rem; }

  .founders-section { justify-content: flex-end; padding: 5rem 0 0; }
  .founders-body { width: 87.5%; max-width: none; margin: 0 auto 4vw; padding: 1rem 1.2rem; }
  .founders-body .section-label { margin-bottom: 0.5rem; }
  .founders-body p:not(.section-label) { font-size: 0.78rem; line-height: 1.5; margin-bottom: 0.6rem; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .newsletter-form button { padding: 0.9rem; }

  footer { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
}
