/* ============================================================
   SKOTB — Short King of the Beach
   Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ---- Variables (from SKOTB Logo palette) ---- */
:root {
  --cream:        #F2EDE0;
  --cream-mid:    #EAE3D2;
  --cream-dark:   #D5CCBA;
  --teal:         #1D6B6B;
  --teal-dark:    #155050;
  --teal-light:   #5BBFBF;
  --teal-pale:    #C6E8E8;
  --pink:         #E8547A;
  --pink-pale:    #F9D8E2;
  --dark:         #162828;
  --text:         #2A3A3A;
  --text-muted:   #5A7272;
  --white:        #FFFFFF;

  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --max-width:    1180px;
  --nav-height:   76px;
  --gutter:       clamp(1.5rem, 5vw, 4rem);

  --radius:       4px;
  --radius-lg:    10px;
  --shadow:       0 2px 16px rgba(22, 40, 40, 0.07);
  --shadow-lg:    0 8px 48px rgba(22, 40, 40, 0.14);
  --transition:   0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--dark);
}
h1 { font-size: clamp(3.5rem, 10vw, 7.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); }
h3 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h4 { font-size: clamp(1.4rem, 3vw, 2.1rem); }

.overline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ---- Logo Lines Motif (from logo) ---- */
.mark-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0.875rem 0 1.5rem;
}
.mark-divider span { height: 2.5px; border-radius: 2px; flex-shrink: 0; display: block; }
.mark-divider span:nth-child(1) { width: 56px; background-color: var(--pink); }
.mark-divider span:nth-child(2) { width: 36px; background-color: var(--teal-light); }
.mark-divider span:nth-child(3) { width: 20px; background-color: var(--pink); }
.mark-divider.center { justify-content: center; }
.mark-divider.light span:nth-child(1) { background-color: var(--pink); }
.mark-divider.light span:nth-child(2) { background-color: var(--teal-light); }
.mark-divider.light span:nth-child(3) { background-color: var(--pink); }

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(4.5rem, 10vw, 9rem) 0; }
.section--cream    { background-color: var(--cream); }
.section--mid      { background-color: var(--cream-mid); }
.section--dark     { background-color: var(--dark); }
.section--teal     { background-color: var(--teal); }
.section--white    { background-color: var(--white); }

.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--white); }
.section--teal h1, .section--teal h2,
.section--teal h3, .section--teal h4 { color: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }

/* ---- Section Header ---- */
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 1rem; max-width: 56ch; }
.section-head h2, .section-head h3 { margin-top: 0.25rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 1.1rem 2.75rem; font-size: 0.875rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 107, 107, 0.32);
}
.btn-outline {
  background-color: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-pink {
  background-color: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-pink:hover {
  background-color: #cf3d62;
  border-color: #cf3d62;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 84, 122, 0.35);
}
.btn-arrow::after { content: ' →'; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.transparent { background-color: transparent; }
.nav.solid {
  background-color: var(--cream);
  box-shadow: 0 1px 0 rgba(22,40,40,0.08), var(--shadow);
}
.nav.scrolled {
  background-color: var(--cream);
  box-shadow: 0 1px 0 rgba(22,40,40,0.08), var(--shadow);
}

.nav__inner {
  width: 100%;
  max-width: calc(var(--max-width) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img {
  height: 50px;
  width: auto;
  transition: opacity var(--transition);
  mix-blend-mode: multiply; /* blends cream logo bg into cream nav */
}
.nav.transparent .nav__logo img {
  mix-blend-mode: normal; /* show naturally over dark hero */
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background-color: var(--pink);
  transition: width var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--teal); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav.transparent .nav__links a { color: rgba(255,255,255,0.88); }
.nav.transparent .nav__links a:hover { color: var(--white); }
.nav.transparent .nav__links a::after { background-color: var(--teal-light); }

.nav__cta { flex-shrink: 0; }
.nav.transparent .nav__cta .btn-primary {
  background-color: var(--pink);
  border-color: var(--pink);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background-color: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav.transparent .nav__hamburger span { background-color: var(--white); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background-color: var(--cream);
  padding: 1rem var(--gutter) 2rem;
  border-bottom: 2px solid var(--cream-dark);
  flex-direction: column;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--teal); }
.nav__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22, 40, 40, 0.86) 0%,
    rgba(22, 40, 40, 0.62) 40%,
    rgba(22, 40, 40, 0.20) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  max-width: 700px;
}
.hero__content h1 {
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.hero__content h1 em {
  color: var(--teal-light);
  font-style: normal;
}
.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 46ch;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background-color: var(--teal);
  padding: 1.1rem 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3rem);
}
.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stats-bar__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--pink);
  flex-shrink: 0;
}

/* ---- Feature Cards ---- */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 46px; height: 46px;
  background-color: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.card h4 { margin-bottom: 0.625rem; font-size: 1.35rem; }
.card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Steps ---- */
.step {
  display: flex;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--teal-pale);
  flex-shrink: 0;
  width: 58px;
  text-align: right;
}
.step__body h4 { margin-bottom: 0.5rem; }
.step__body p { font-size: 0.9375rem; color: var(--text-muted); }

/* ---- Check List ---- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.check-list li .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background-color: rgba(91,191,191,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-weight: 700;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ---- Pull Quote ---- */
.pull-quote {
  background-color: var(--dark);
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -0.2em; left: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(14rem, 32vw, 26rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto;
}
.pull-quote blockquote em {
  color: var(--teal-light);
  font-style: normal;
}
.pull-quote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

/* ---- Image Utilities ---- */
.img-cover {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-portrait  { aspect-ratio: 3 / 4; }
.img-landscape { aspect-ratio: 4 / 3; }
.img-wide      { aspect-ratio: 16 / 9; }
.img-square    { aspect-ratio: 1; }
.img-tall      { aspect-ratio: 2 / 3; }
.img-rounded   { border-radius: var(--radius-lg); overflow: hidden; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,40,40,0.90) 0%,
    rgba(22,40,40,0.42) 50%,
    rgba(22,40,40,0.12) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--max-width) + var(--gutter) * 2);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) var(--gutter) 4rem;
}
.page-hero__content h1 { color: var(--white); line-height: 1.0; }
.page-hero__content .overline { color: var(--teal-light); }
.page-hero__content p {
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  max-width: 54ch;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ---- Stat Tiles (dark bg) ---- */
.stat-tile { text-align: center; padding: 2.5rem 1.5rem; }
.stat-tile__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--teal-light);
}
.stat-tile__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.625rem;
  line-height: 1.5;
}

/* ---- Partner Teaser Block ---- */
.partner-teaser {
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  background-color: var(--white);
}
.partner-teaser p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---- Bio Block (about page) ---- */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--cream-dark);
}
.bio-section:last-child { border-bottom: none; }
.bio-section.reverse .bio-section__text { order: 2; }
.bio-section.reverse .bio-section__img  { order: 1; }
.bio-section__text p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.bio-section__text p + p { margin-top: 1rem; }

/* ---- Forms ---- */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  background-color: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,107,107,0.12);
  background-color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9AADAD; }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: 0.5rem; }
.form-card .lead { margin-bottom: 2rem; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ---- Instagram Badge ---- */
.ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  padding: 0.625rem 1.25rem 0.625rem 0.75rem;
  transition: all var(--transition);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.ig-badge:hover {
  border-color: var(--pink);
  box-shadow: 0 2px 16px rgba(232, 84, 122, 0.18);
}
.ig-badge__icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ---- Coaching CTA Banner ---- */
.cta-banner {
  background-color: var(--pink);
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h3 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

/* ---- Accent Colors ---- */
.accent-teal  { color: var(--teal); }
.accent-pink  { color: var(--pink); }
.accent-light { color: var(--teal-light); }

/* ---- Footer ---- */
.footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 2.5rem;
}
.footer__inner {
  max-width: calc(var(--max-width) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  max-width: 28ch;
}
.footer__col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--teal-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.42);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--pink); }
.footer__social svg { width: 16px; height: 16px; }

/* ---- Reveal Animations ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ---- Success Message ---- */
.form-success {
  display: none;
  background-color: var(--teal-pale);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--teal-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .bio-section { grid-template-columns: 1fr; }
  .bio-section.reverse .bio-section__text { order: 0; }
  .bio-section.reverse .bio-section__img  { order: 0; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
