/* ============================================================
   DESIGN TOKENS — COLOURS ONLY
   All font-sizes, spacing, and layout values are written
   directly in each rule below for maximum readability.
============================================================ */
:root {
  --blue: #006aff;
  --orange: #ff5500;
  --yellow: #ffe100;
  --white: #ffffff;
  --black: #0d0d0d;
  --blue-hover: #0055d4;
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   SECTION 1
============================================================ */
#section-1 {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

/* ── PART A: HERO TYPOGRAPHY ── */

.s1-hero {
  width: 100%;
  background: var(--white);
}

/* Row 1 — Me + Transforming */
.s1-row-1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px clamp(16px, 3.6vw, 54px) 0 clamp(16px, 3.6vw, 54px);
}

/* Row 2 — into | blue-box | We */
.s1-row-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 26px);
  padding: 0 clamp(16px, 3.6vw, 54px) 40px clamp(16px, 3.6vw, 54px);
  margin-top: -12px;
}

/* Giant display words */
.s1-word {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 13.5vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--black);
  display: inline-block;
  cursor: default;
  user-select: none;
  will-change: transform, opacity;
  white-space: nowrap;
}

/* Blue description box */
.s1-blue-box {
  background: var(--blue);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.45vw, 19px);
  line-height: 1.65;
  padding: clamp(16px, 2.6vw, 40px) clamp(18px, 2.8vw, 46px);
  flex: 1;
  min-width: 0;
  will-change: transform, opacity;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.s1-blue-box:hover {
  background: var(--blue-hover);
  transform: scale(1.012);
}

/* ── PART B: COMMUNITY SPLIT ── */

.s1-community {
  width: 100%;
  height: clamp(320px, 46vw, 420px);
  display: grid;
  grid-template-columns: 50% 50%;
}

/* Photo cell */
.s1-photo {
  overflow: hidden;
  position: relative;
  will-change: opacity;
}

.s1-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  will-change: transform;
}

/* Dark panel */
.s1-dark-panel {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6.5vw, 100px) clamp(28px, 5.5vw, 84px);
  will-change: transform, opacity;
}

.s1-dark-panel h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5.5vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: clamp(14px, 2vw, 30px);
}

.s1-dark-panel p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
}

/* ── INITIAL HIDDEN STATES (GSAP animates in) ── */
.s1-word,
.s1-blue-box,
.s1-photo,
.s1-dark-panel,
.s1-dark-panel h2,
.s1-dark-panel p {
  opacity: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .s1-community {
    height: clamp(300px, 50vw, 560px);
  }
}

@media (max-width: 900px) {
  .s1-community {
    grid-template-columns: 1fr;
    grid-template-rows: 52vw auto;
    height: auto;
  }

  .s1-photo {
    height: auto;
  }

  .s1-photo img {
    height: auto;
    object-position: center;
  }

  .s1-dark-panel {
    padding: 44px 36px;
  }

  .s1-dark-panel p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .s1-row-2 {
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 28px;
    margin-top: -6px;
  }

  #w-into {
    order: 1;
  }
  #w-we {
    order: 2;
  }

  .s1-blue-box {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
  }

  .s1-photo {
    height: auto;
  }

  .s1-dark-panel {
    padding: 36px 22px;
  }
}

@media (max-width: 480px) {
  .s1-row-1 {
    padding-top: 18px;
  }

  .s1-row-2 {
    padding-bottom: 22px;
  }

  .s1-photo {
    height: auto;
  }

  .s1-dark-panel {
    padding: 30px 18px;
  }

  .s1-dark-panel p {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .s1-row-1,
  .s1-row-2 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .s1-blue-box {
    padding: 14px;
  }

  .s1-photo {
    height: auto;
  }

  .s1-dark-panel {
    padding: 26px 16px;
  }
}

/* ============================================================
   SECTION 2
============================================================ */
#section-2 {
  width: 100%;
  background: var(--white);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}

/* ── PART A: BLUE BANNER ── */

.s2-blue-banner {
  width: 100%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.6vw, 36px) clamp(16px, 3.6vw, 54px);
  text-align: center;
}

.s2-blue-banner h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  white-space: nowrap;
}

/* ── PART B: DARK CONTENT BLOCK ── */

.s2-content {
  width: 100%;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr clamp(340px, 44%, 640px);
  min-height: clamp(340px, 46vw, 560px);
  gap: 0;
}

/* Left: text panel */
.s2-text-panel {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.s2-main-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5.5vw, 62px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.s2-not-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vw, 6px);
}

.s2-not-list li {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.35vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.s2-subheading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.3;
  color: var(--white);
  margin-top: clamp(6px, 1vw, 12px);
}

.s2-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.6vw, 10px);
}

.s2-bullet-list li {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.35vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.s2-bullet-list li::before {
  content: "•";
  color: var(--white);
  flex-shrink: 0;
  line-height: 1.7;
  font-size: 1em;
}

/* Right: photo */
.s2-photo {
  overflow: hidden;
  position: relative;
}

.s2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── PART C: ORANGE BANNER ── */

.s2-orange-banner {
  width: 100%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 44px) clamp(16px, 3.6vw, 54px);
  text-align: center;
}

.s2-orange-banner h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

/* ── INITIAL HIDDEN STATES (GSAP animates in) ── */
.s2-blue-banner h2,
.s2-main-heading,
.s2-not-list,
.s2-subheading,
.s2-bullet-list,
.s2-photo,
.s2-orange-banner h2 {
  opacity: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .s2-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto clamp(260px, 55vw, 420px);
    min-height: unset;
  }

  .s2-photo {
    order: 2;
    height: clamp(260px, 55vw, 420px);
  }

  .s2-text-panel {
    order: 1;
  }

  .s2-blue-banner h2,
  .s2-orange-banner h2 {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .s2-text-panel {
    padding: 32px 20px;
  }

  .s2-blue-banner h2,
  .s2-orange-banner h2 {
    white-space: normal;
    font-size: clamp(20px, 6vw, 30px);
  }
}

@media (max-width: 380px) {
  .s2-blue-banner,
  .s2-orange-banner {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ============================================================
   SECTION 3
============================================================ */
#section-3 {
  width: 100%;
  overflow-x: hidden;
}

/* ── PART A: WHITE BLOCK ── */

.s3-white-block {
  width: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(48px, 7vw, 100px) clamp(16px, 3vw, 48px);
  gap: clamp(18px, 2.6vw, 36px);
}

.s3-promise-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 36px);
  flex-wrap: nowrap;
  line-height: 1;
}

/* "A  SMALL" */
.s3-plain-words {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(60px, 11.5vw, 100px);
  letter-spacing: 0.02em;
  color: var(--black);
  white-space: nowrap;
}

/* "PROMISE" yellow box */
.s3-yellow-box {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(60px, 11.5vw, 100px);
  letter-spacing: 0.02em;
  color: var(--black);
  background: var(--yellow);
  padding: 0 clamp(10px, 1.2vw, 22px);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.05;
  cursor: default;
}

.s3-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--black);
  max-width: 920px;
  text-align: center;
}

/* ── PART B: DARK BLOCK ── */

.s3-dark-block {
  width: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 5vw, 80px);
}

.s3-tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 6.5vw, 60px);
  line-height: 1.55;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.s3-tagline-plain {
  color: var(--white);
}

/* "collaborating to deliver" — blue inline highlight */
.s3-blue-highlight {
  background: var(--blue);
  color: var(--white);
  padding: 0.08em clamp(6px, 1vw, 18px);
  display: inline;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ── INITIAL HIDDEN STATES (GSAP animates in) ── */
.s3-promise-heading,
.s3-subtitle,
.s3-tagline {
  opacity: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .s3-promise-heading {
    flex-wrap: wrap;
    gap: clamp(8px, 1.5vw, 18px);
  }
}

@media (max-width: 600px) {
  .s3-plain-words,
  .s3-yellow-box {
    font-size: clamp(40px, 10vw, 72px);
  }

  .s3-tagline {
    /* On small screens: purely vw-based so it scales with the container */
    font-size: clamp(22px, 7.5vw, 44px);
    text-align: center;
  }

  .s3-subtitle {
    font-size: clamp(14px, 3.5vw, 17px);
    max-width: 100%;
  }

  .s3-promise-heading {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .s3-subtitle br {
    display: none;
  }
}

@media (max-width: 380px) {
  .s3-white-block,
  .s3-dark-block {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* ============================================================
   SECTION 4 — Services + Courses
   Add this to the bottom of your index.css
   Uses same color variables: --blue, --black, --white
============================================================ */

#section-4 {
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

/* ── PART A: SPLIT — Blue services panel + Photo ── */

.s4-split {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: clamp(260px, 46vw, 560px);
}

/* Left: Blue panel */
.s4-services-panel {
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5.5vw, 70px);
}

.s4-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vw, 22px);
}

.s4-services-list li {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Right: Photo */
.s4-photo {
  overflow: hidden;
  position: relative;
}

.s4-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── PART B: WHITE GAP STRIP ── */

.s4-white-gap {
  width: 100%;
  height: clamp(24px, 3.5vw, 48px);
  background: var(--white);
}

/* ── PART C: BLUE COURSES BANNER ── */

.s4-courses-banner {
  width: 100%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(36px, 5.5vw, 72px) clamp(24px, 5vw, 80px);
}

.s4-courses-banner h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4.2vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* ── PART D: DARK COURSES LIST ── */

.s4-courses-dark {
  width: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(10px, 1.6vw, 22px);
  padding: clamp(40px, 5.5vw, 72px) clamp(24px, 5vw, 80px);
}

.s4-courses-dark p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 2vw, 30px);
  line-height: 1.5;
  color: var(--white);
  letter-spacing: 0;
}

/* ── INITIAL HIDDEN STATES (GSAP animates in) ── */
.s4-services-panel,
.s4-photo,
.s4-courses-banner h2,
#s4-courses-list,
#s4-courses-list-2 {
  opacity: 0;
}

/* ── RESPONSIVE ── */

/* Tablet portrait */
@media (max-width: 900px) {
  .s4-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto clamp(260px, 55vw, 420px);
    min-height: unset;
  }

  .s4-services-panel {
    order: 1;
  }

  .s4-photo {
    order: 2;
    height: clamp(260px, 55vw, 420px);
  }
}

/* Mobile large */
@media (max-width: 600px) {
  .s4-services-panel {
    padding: 36px 24px;
  }

  .s4-courses-banner h2 {
    font-size: clamp(22px, 6.5vw, 36px);
  }

  .s4-courses-dark p {
    font-size: clamp(12px, 4vw, 12px);
  }
}

/* Mobile small */
@media (max-width: 380px) {
  .s4-services-panel {
    padding: 28px 16px;
  }

  .s4-courses-banner,
  .s4-courses-dark {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* ============================================================
   SECTION 5 — Master Real Skills Banner
   Add this to the bottom of your index.css
============================================================ */

#section-5 {
  width: 100%;
  overflow: hidden;
}

/* ── Full-width banner with image as background ── */
.s5-banner {
  width: 100%;
  aspect-ratio: 1600 / 1000;
  background-image: url("img/banner\ 5.jpg.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/* ── Enroll Now button — % based so it scales with banner at all sizes ── */
/* In the original image the button is ~88% down, ~6% from the right */
.s5-enroll-area {
  position: absolute;
  bottom: 140px;
  left: 81%;
  opacity: 0; /* GSAP animates this in */
}

.s5-enroll-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1.4vw, 20px);
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: clamp(9px, 1vw, 16px) clamp(22px, 2.8vw, 48px);
  border-radius: 999px;
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.s5-enroll-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 106, 255, 0.35);
}

.s5-enroll-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── RESPONSIVE ── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .s5-banner {
    aspect-ratio: 4 / 3;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .s5-banner {
    aspect-ratio: 4 / 3;
  }

  .s5-enroll-area {
    bottom: 12%;
    left: 73%;
  }
}

/* Mobile — keep landscape ratio, button stays bottom-right matching image */
@media (max-width: 600px) {
  .s5-banner {
    aspect-ratio: 6 / 4;
    background-position: 30% center;
  }

  .s5-enroll-area {
    bottom: 5%;
    right: 4%;
    transform: none;
  }

  .s5-enroll-btn {
    font-size: clamp(10px, 3vw, 14px);
    padding: clamp(7px, 1.8vw, 11px) clamp(16px, 4.5vw, 28px);
  }
}

/* Mobile small */
@media (max-width: 380px) {
  .s5-enroll-btn {
    font-size: 11px;
    padding: 8px 18px;
  }
}

/* ============================================================
   SECTION 6 — Quote + Footer
   Add this to the bottom of your index.css

   Required font — add to <head> in index.html:
   <link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap" rel="stylesheet" />
============================================================ */

#section-6 {
  width: 100%;
  overflow-x: hidden;
}

/* ============================================================
   PART A — WHITE QUOTE BLOCK
============================================================ */

.s6-quote-block {
  width: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 7vw, 100px) clamp(24px, 8vw, 120px);
}

/* Handwriting-style quote — uses Caveat font */
.s6-quote {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 90px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--black);
}

/* ============================================================
   PART B — DARK FOOTER BLOCK
============================================================ */

.s6-dark-block {
  width: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 5.5vw, 72px) clamp(32px, 4.5vw, 64px)
    clamp(48px, 7vw, 96px);
  gap: clamp(48px, 8vw, 110px);
}

/* ── TOP ROW: Lets Talk (left) + Nav (right) ── */

.s6-top-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
}

/* Lets Talk button — white outlined pill with arrow */
.s6-lets-talk {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  background: var(--white);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 20px);
  text-decoration: none;
  /* Fixed width like in image ~260px at desktop */
  min-width: clamp(160px, 18vw, 260px);
  padding: clamp(14px, 1.4vw, 20px) clamp(20px, 2.4vw, 36px);
  border-radius: 0;
  letter-spacing: 0;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}

.s6-lets-talk:hover {
  background: var(--blue);
  color: var(--white);
}

.s6-btn-label {
  flex: 1;
}

.s6-btn-arrow {
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1;
}

/* Nav links */
.s6-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 56px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.s6-nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 20px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.s6-nav-link:hover {
  color: var(--blue);
}

/* ── LOGO AREA ── */

.s6-logo-area {
  width: 100%;
}

.s6-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.s6-logo.loaded + .s6-logo-fallback {
  display: none;
}

/* Text fallback (shown until real logo image is added) */
.s6-logo-fallback {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 14px);
}

.s6-logo-mark {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 10vw, 140px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.s6-logo-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 28px);
  color: var(--white);
  letter-spacing: 0.28em;
  display: block;
}

/* ── INITIAL HIDDEN STATES (GSAP animates in) ── */
.s6-quote,
.s6-top-row,
.s6-logo-area {
  opacity: 0;
}

/* ── RESPONSIVE ── */

/* Tablet portrait */
@media (max-width: 768px) {
  .s6-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 4vw, 40px);
  }

  .s6-nav {
    justify-content: flex-start;
    gap: clamp(16px, 4vw, 32px);
  }

  .s6-lets-talk {
    min-width: clamp(140px, 45vw, 220px);
  }

  /* Logo fills full width on tablet */
  .s6-logo-area {
    width: 100%;
    overflow: hidden;
  }

  .s6-logo {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile large */
@media (max-width: 600px) {
  .s6-quote {
    font-size: clamp(28px, 9vw, 52px);
  }

  .s6-dark-block {
    padding: 36px 20px 48px;
    gap: 32px;
  }

  /* Logo full width, contained, no overflow */
  .s6-logo-area {
    width: 100%;
    overflow: hidden;
  }

  .s6-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .s6-nav {
    gap: clamp(14px, 4vw, 24px);
  }

  .s6-nav-link {
    font-size: clamp(13px, 3.5vw, 16px);
  }
}

/* Mobile small */
@media (max-width: 380px) {
  .s6-quote-block {
    padding: 36px 16px;
  }

  .s6-dark-block {
    padding: 28px 16px 40px;
  }

  .s6-logo-area {
    width: 100%;
    overflow: hidden;
  }

  .s6-logo {
    width: 100%;
    max-width: 100%;
  }
}
.s6-copyright {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.s6-copyright p {
  margin: 0;
}

.s6-credit-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.s6-credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.s6-quote-block {
  width: 100%;
  background: var(--white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 7vw, 100px) clamp(24px, 8vw, 120px);
}

.s6-quote {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 90px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--black, #0d0d0d);
  opacity: 0;
}

@media (max-width: 600px) {
  .s6-quote {
    font-size: clamp(28px, 9vw, 52px);
  }
}

@media (max-width: 380px) {
  .s6-quote-block {
    padding: 36px 16px;
  }
}
