/* ============================================
   NICOLE GOSÉ — nicolegose.xyz
   Design System
   ============================================ */

/* VARIABLES */
:root {
  --bg:         #F7F7F5;
  --primary:    #0D0D0D;
  --red:        #DB0606;
  --cyan:       #06DBDB;
  --cyan-faint: rgba(6, 219, 219, 0.15);
  --cyan-mid:   rgba(6, 219, 219, 0.5);
  --grey:       #888888;
  --max-width:  860px;
  --font-sans:  'Inter', sans-serif;
  --font-mono:  'SF Mono', 'Courier New', monospace;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  position: relative;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   GRID LINES — full page vertical rails
   ============================================ */
.grid-rail {
  position: fixed;
  width: 1px;
  height: 100%;
  background: var(--cyan-mid);
  z-index: 0;
  pointer-events: none;
}

.grid-rail-left {
  top: 0;
  left: clamp(4px, calc((100vw - var(--max-width)) / 2), calc((100vw - var(--max-width)) / 2));
}

.grid-rail-right {
  position: fixed !important;
  top: auto !important;
  bottom: 0 !important;
  right: clamp(4px, calc((100vw - var(--max-width)) / 2), calc((100vw - var(--max-width)) / 2)) !important;
  height: calc(100vh - 45px) !important;
}



/* proof strip responsive */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

  .hero-dreamers {
    font-size: clamp(40px, 11vw, 64px);
    white-space: normal;
  }

  .hero-headline {
    font-size: clamp(40px, 11vw, 64px);
  }

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(11px, 2.5vw, 14px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-weight: 500;
  color: var(--primary);
  text-align: left;
  margin: 16px 0 0;
  max-width: 500px;
}
/* ============================================
   TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

.handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1.4em;
  color: var(--primary);
  display: inline-block;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.pillar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

/* ============================================
   LAYOUT
   ============================================ */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
}

/* ============================================
   DIVIDERS
   ============================================ */
.cyan-rule {
  border: none;
  border-top: 1px solid var(--cyan-mid);
  margin: 0px;
}

.cyan-rule {
  border: none;
  border-top: 1px solid var(--cyan-mid);
  margin: 0px;
}

.footer-rule {
  border: none;
  margin: 30px 32px 40px;
}

/* ============================================
   NAV FULL SCREEN
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 0px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: var(--primary);
  position: relative;
}

.wordmark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--line-left, 0px) !important;
  transform: translateY(-2px) !important;
  width: var(--line-width, 100%) !important;
  height: 1px;
  background: var(--cyan-mid);
}

.wordmark a {
  color: var(--primary);
  text-decoration: none;
  text-transform: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  text-transform: lowercase;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1;
}

.nav-menu a:hover {
  color: var(--primary);
  border-bottom-color: var(--cyan-mid);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta {
  color: var(--red) !important;
  font-weight: 700 !important;
  border-bottom: 1px solid transparent !important;
  padding-bottom: 8px !important;
}

.nav-cta:hover {
  color: var(--cyan) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-bottom-color: var(--cyan-mid) !important;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-arrow {
  height: 20px;
  width: auto;
  display: inline-block;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 32px 24px;
  overflow: visible;
}

.hero-content { position: relative; z-index: 1; }

.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 0.5;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-dreamers {
  display: block;
  position: relative;
  z-index: 1;
  line-height: 0.85;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(11px, 2.5vw, 14px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-weight: 500;
  color: var(--primary);
  text-align: left;
  margin: 0;
}




/* ============================================
   HANDWRITTEN SVG IMAGES
   ============================================ */
.hw-img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
}

.hw-the-work {
  width: clamp(200px, 70%, 600px);
  max-width: 600px;
  min-width: 280px;
  position: relative;
  margin-top: -13px;
  margin-bottom: -13px;
  z-index: 2;
}

.hw-main-event {
  width: 70%;
  max-width: 600px;
  min-width: 280px;
  position: relative;
  margin-top: -9px;
  margin-left: -1px;
  z-index: 2;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: transparent;
  padding: 12px 22px;
  text-decoration: none;
  border: 1px solid var(--cyan);
  transition: background 0.2s, color 0.2s, font-weight 0.1s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--red);
  color: #DB0606;
  font-weight: 700;
  font-family: var(--font-mono);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--cyan-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 24px;
}

.btn-secondary:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-disabled:hover {
  color: var(--primary) !important;
  border-color: var(--cyan-mid) !important;
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  padding: 24px 32px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 200px;
  white-space: pre-wrap;
}

.proof-strip .btn-primary {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  white-space: nowrap;
  width: auto;
  display: inline-block;
}

.proof-right {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
}


.my-services {
  grid-row: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: lowercase;
  text-align: left;
  display: inline-block;
  max-width: 800px;
  white-space: nowrap;
}

.accent-plus {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--red);
}


.proof-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
}

/* ============================================
   REFRAME SECTION
   ============================================ */
.reframe-body p {
  font-family: var(--font-mono);
  font-size: clamp(11px, 2vw, 14px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 640px;
}

.reframe-body p b {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reframe-statement {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 32px 0 !important;
}


/* ============================================
   PURPOSE SECTION
   ============================================ */
.purpose-body p { margin-bottom: 20px; max-width: 640px; }

.purpose-close {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-top: 32px !important;
}

/* ============================================
   THREE PILLARS
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.pillar { display: flex; flex-direction: column; }
.pillar p { margin-bottom: 16px; font-size: 15px; }

.pillar-statement {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 32px 0 !important;
}

.pillar-body p {
  font-family: var(--font-mono);
  font-size: clamp(11px, 2vw, 14px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 640px;
}

.pillar-body p b {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================
   CASE STUDIES
   
.works-title {
  font-size: 3em;
  margin-bottom: 24px;
}

.works-intro {
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 15px;
  line-height: 1.8;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.work-card { display: flex; flex-direction: column; }

.work-title {
  font-size: 2em;
  margin-bottom: 8px;
}

.work-tags {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 16px;
}

.work-card p { font-size: 14px; line-height: 1.8; }
.work-card .btn-secondary { margin-top: auto; padding-top: 24px; }

============================================ */
/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
  align-items: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 0 32px;
  align-items: center;
}

.carousel-slide blockquote {
  margin: 0 0 20px 0;
  align-items: center;
}

.carousel-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
/*
.carousel-counter {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--grey);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
*/
.carousel-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--primary);
  padding: 0;
  transition: color 0.2s;
  line-height: 1;
}

.carousel-btn:hover { color: var(--cyan); }
.carousel-btn:disabled { opacity: 0.2; cursor: default; }



.pros-quote {
  font-family: var(--font-sans);
  font-size: clamp(12px, 2vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.0008em;
  font-style: normal;
  color: var(--primary);
  max-width: 640px;
  margin: 0 0 20px 0;
}

.pros-cite {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--primary);
  font-style: normal;
  display: block;
  margin-bottom: 4px;
}

.pros-cite-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}


/* ============================================
   CLOSING CTA
   ============================================ */
.cta-close { text-align: center; }

.cta-title {
  font-size: 4em;
  margin-bottom: 24px;
  display: block;
}

.cta-close p {
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 40px 32px 60px; }

.footer-quote {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.footer-quote-mark {
  font-size: 48px;
  color: var(--primary);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
  margin-top: 32px;
}

.footer-quote p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary);
}

.footer-signoff { text-align: center; margin: 0 auto; }

.footer-from {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 8px;
}

.footer-heart {
  font-size: 16px;
  color: var(--red);
  margin-bottom: 8px;
}

.footer-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.footer-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.service-line {
  display: inline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* mobile edge margins */

   @media (max-width: 860px) {

  .grid-rail-left { left: 12px; }

  .grid-rail-right {
    right: 12px !important;
    height: calc(100vh - 45px) !important;
    top: auto !important;
    bottom: 0 !important;

  }

  .hamburger { display: flex; }

  .wordmark::after {
    left: -16px;
    width: calc(100vw - 16px - 30px);
    transform: translateY(-4px) !important;
  }

  .nav {
    padding: 24px 16px;
    max-width: 100vw;
    width: 100%;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg);
    padding: 80px 32px;
    z-index: 100;
  }

  .nav-menu a:hover {
    color: var(--primary);
    border-bottom-color: var(--cyan-mid);
  }

  .nav-cta {
    color: var(--red) !important;
    font-weight: 700 !important;
    border-bottom: 1px solid transparent !important;
  }

  .nav-cta:hover {
    border-bottom-color: var(--red) !important;
    color: var(--red) !important;
  }

  .proof-strip {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .proof-right {
    align-items: flex-start;
    padding-left: 0;
    width: 100%;
  }

  .hero-sub {
    white-space: normal;
    line-height: 1.35;
    font-size: clamp(10px, 3.5vw, 14px);
    font-weight: 500;
    text-align: left;
    max-width: 600px;
  }

  .my-services {
    display: none;
  }

  .proof-strip .btn-primary {
    grid-column: unset;
    grid-row: unset;
    width: auto;
    align-self: flex-start;
    display: inline-block;
    margin-top: 32px;
  }

  .hero-dreamers {
    font-size: clamp(28px, 10vw, 48px);
  }

  

  .nav-menu.open { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; gap: 60px; }
  .works-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 24px; }
  .section { padding: 60px 24px; }
  .footer { padding-left: 24px; padding-right: 24px; }
}