/* ============================================================
   CASSANDRA GOWING — UGC PORTFOLIO
   Design System & Styles
   Rebuilt from Canva original specifications
   ============================================================ */

/* --- @font-face: Exact fonts from original --- */
@font-face {
  font-family: 'Coterie';
  src: url('_assets/fonts/3580a5c6c6cacc3f51c5c4e6e82b0cbc.woff2') format('woff2'),
       url('_assets/fonts/de45c496ea545adf1cfefadbaee142ae.woff') format('woff'),
       url('_assets/fonts/443dcbc51a4b63cefcf2d0f32b46cd9e.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hero';
  src: url('_assets/fonts/9d4d692db40149b65ef695c135145fc4.woff2') format('woff2'),
       url('_assets/fonts/19af847d922fa907d4a2dafff20291c2.woff') format('woff'),
       url('_assets/fonts/cc20f64a9e2c47afa3d7e88b7be48eed.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hero';
  src: url('_assets/fonts/a95b4f33fb3a98ee61df7a7e902e3019.woff2') format('woff2'),
       url('_assets/fonts/f07710feaa1491219e3e262b8fb38ded.woff') format('woff'),
       url('_assets/fonts/b901065e4f00c430df2c334e43f032ce.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arimo';
  src: url('_assets/fonts/f8f199f09526f79e87644ed227e0f651.woff2') format('woff2'),
       url('_assets/fonts/4ff8a742aa834e35f10ead140b735c45.woff') format('woff'),
       url('_assets/fonts/daee28464eba92254cb149feea6599e3.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arimo';
  src: url('_assets/fonts/98c4d2c0223fc8474641c77f923528e9.woff2') format('woff2'),
       url('_assets/fonts/9fd726aeae98b22824f0dc8947036e77.woff') format('woff'),
       url('_assets/fonts/0bb563f2f60ffd4e62b64cb021c33776.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  --bg-primary: #f5f5ef;
  --text-navy: #162144;
  --text-black: #000000;
  --text-white: #ffffff;
  --accent-sage: #657568;
  --theme-secondary: #304254;

  --font-heading: 'Coterie', 'Georgia', serif;
  --font-body: 'Hero', 'Arimo', 'Helvetica Neue', sans-serif;
  --font-fallback: 'Arimo', 'Helvetica Neue', sans-serif;

  --section-heading-size: clamp(42px, 5.5vw, 74.667px);
  --title-size: clamp(40px, 5.4vw, 73.333px);
  --pretitle-size: clamp(14px, 1.6vw, 21.53px);
  --desc-size: clamp(18px, 2.4vw, 32px);
  --about-text-size: clamp(14px, 1.6vw, 21.99px);
  --cta-text-size: clamp(16px, 1.6vw, 21.99px);

  --max-width: 1366px;
  --section-padding: clamp(40px, 6vw, 80px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-black);
  line-height: 1.4;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Navigation (professional addition) --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.visible {
  transform: translateY(0);
}

.site-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-navy);
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.site-nav__brand:hover {
  opacity: 0.7;
}

.site-nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-black);
  opacity: 0.6;
  transition: opacity 0.3s;
  position: relative;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  opacity: 1;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--text-black);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav__links a:hover::after,
.site-nav__links a.active::after {
  width: 100%;
}

/* --- Section Base --- */
.section {
  width: 100%;
  padding: var(--section-padding) 0;
  position: relative;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- INTRO / HERO SECTION --- */
.intro {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}

.intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.75;
}

/* Gradient overlay for text readability */
.intro__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    radial-gradient(ellipse at center, rgba(245, 245, 239, 0.65) 0%, rgba(245, 245, 239, 0.35) 55%, rgba(245, 245, 239, 0.1) 100%);
}

/* Top fade */
.intro__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 1;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
}

.intro__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 32px;
}

.intro__pretitle {
  font-family: var(--font-body);
  font-size: var(--pretitle-size);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-navy);
  margin-bottom: 8px;
  text-align: right;
  text-shadow: 0 1px 8px rgba(245, 245, 239, 0.6);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
}

.intro__title {
  font-family: var(--font-heading);
  font-size: var(--title-size);
  font-weight: 400;
  color: var(--text-navy);
  line-height: 0.9;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(245, 245, 239, 0.5);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s forwards;
}

.intro__desc {
  font-family: var(--font-body);
  font-size: var(--desc-size);
  font-weight: 400;
  color: var(--text-navy);
  letter-spacing: -0.065em;
  line-height: 1.2;
  margin-bottom: 48px;
  text-shadow: 0 1px 6px rgba(245, 245, 239, 0.4);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.6s forwards;
}

/* Brand Logos Grid */
.intro__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.8s forwards;
}

.intro__logo-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.intro__logo-item:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.intro__logo-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
  padding: var(--section-padding) 0;
}

.portfolio-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.portfolio-section__heading {
  font-family: var(--font-heading);
  font-size: var(--section-heading-size);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1;
  color: var(--text-black);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-section__heading.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.15s, transform 0.6s 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #e8e8e2;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.video-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.4s;
}

.video-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card:hover .video-card__poster {
  opacity: 0;
}

.video-card__play {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: scale(1);
}

.video-card__play svg {
  width: 16px;
  height: 16px;
  fill: var(--text-black);
  margin-left: 2px;
}

/* --- ABOUT / COVER SECTION --- */
.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 239, 0.75) 0%,
    rgba(245, 245, 239, 0.4) 50%,
    rgba(245, 245, 239, 0.2) 100%
  );
}

.about__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 32px;
  text-align: center;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: var(--section-heading-size);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  color: var(--text-black);
  margin-bottom: 40px;
}

.about__card {
  background: var(--accent-sage);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}

.about__text {
  font-family: var(--font-body);
  font-size: var(--about-text-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.062em;
  line-height: 1.6;
  color: var(--text-white);
}

.about__text p + p {
  margin-top: 1.4em;
}

/* CTA Buttons */
.about__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: 2px solid var(--text-black);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: var(--cta-text-size);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--text-black);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 160px;
}

.cta-pill:hover {
  background: var(--text-black);
  color: var(--text-white);
  text-decoration-color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- FOOTER --- */
.site-footer {
  text-align: center;
  padding: 48px 32px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,0.4);
  background: var(--bg-primary);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.site-footer__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.site-footer__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-black);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.site-footer__links a:hover {
  opacity: 1;
}

.site-footer__copy {
  margin-bottom: 8px;
}

.site-footer__email a {
  color: var(--accent-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.site-footer__email a:hover {
  color: var(--text-navy);
}

/* --- SUB-PAGES: Shared Layout --- */
.page-header {
  padding: 120px 32px 60px;
  text-align: center;
  background: var(--bg-primary);
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: var(--title-size);
  font-weight: 400;
  color: var(--text-navy);
  letter-spacing: -0.065em;
  margin-bottom: 16px;
}

.page-header__subtitle {
  font-family: var(--font-body);
  font-size: var(--pretitle-size);
  color: var(--text-navy);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- ABOUT PAGE: Hero --- */
.about-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 56px;
}

.about-page-hero__bg {
  position: absolute;
  inset: 0;
}

.about-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 245, 239, 0.3) 0%,
    rgba(245, 245, 239, 0.6) 60%,
    var(--bg-primary) 100%
  );
}

.about-page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 32px;
}

.about-page-hero__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-navy);
  margin-bottom: 12px;
  opacity: 0.7;
}

.about-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  color: var(--text-navy);
  letter-spacing: -0.04em;
}

/* --- ABOUT PAGE: Bio Section --- */
.about-page {
  background: var(--bg-primary);
}

.about-bio {
  padding: 60px 0 80px;
}

.about-bio__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-bio__text p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.about-bio__lead {
  font-size: 20px !important;
  color: var(--text-navy) !important;
  font-weight: 400;
  line-height: 1.6 !important;
}

.about-bio__highlight {
  background: var(--accent-sage);
  color: var(--text-white) !important;
  padding: 24px 28px;
  border-radius: 12px;
  font-weight: 700 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.about-bio__image {
  position: sticky;
  top: 80px;
  border-radius: 16px;
  overflow: hidden;
}

.about-bio__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- ABOUT PAGE: Brands Grid --- */
.about-brands {
  padding: 60px 0;
  background: white;
}

.about-brands__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.about-brands__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-navy);
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.about-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.about-brands__item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-brands__item:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.about-brands__item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* --- ABOUT PAGE: Services --- */
.about-services {
  padding: 80px 0;
}

.about-services__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-services__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-navy);
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 48px;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-service-card {
  background: white;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.about-service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--accent-sage);
}

.about-service-card__icon svg {
  width: 100%;
  height: 100%;
}

.about-service-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-service-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.5);
}

/* --- ABOUT PAGE: CTA Section --- */
.about-cta {
  padding: 80px 0;
  background: var(--accent-sage);
}

.about-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.about-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.about-cta__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-cta .cta-pill {
  border-color: var(--text-white);
  color: var(--text-white);
}

.about-cta .cta-pill:hover {
  background: var(--text-white);
  color: var(--accent-sage);
}

/* About page responsive */
@media (max-width: 900px) {
  .about-bio__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-bio__image {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-brands__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .about-services__grid {
    grid-template-columns: 1fr;
  }
  
  .about-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- CONTACT PAGE --- */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.contact-section__email-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

.contact-section__email-label {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 12px;
}

.contact-section__email-link {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--text-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--accent-sage);
  transition: color 0.3s;
}

.contact-section__email-link:hover {
  color: var(--accent-sage);
}

.contact-section__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-navy);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: white;
  color: var(--text-black);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 3px rgba(101, 117, 104, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  align-self: center;
  margin-top: 8px;
}

.form-submit .cta-pill {
  border: none;
  background: var(--text-navy);
  color: white;
  text-decoration: none;
  padding: 16px 56px;
}

.form-submit .cta-pill:hover {
  background: var(--accent-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- PRIVACY POLICY PAGE --- */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-navy);
  margin: 40px 0 16px;
}

.privacy-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,0.7);
  margin-bottom: 16px;
}

.privacy-content a {
  color: var(--accent-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content a:hover {
  color: var(--text-navy);
}

@media (max-width: 768px) {
  .about-hero__skills {
    grid-template-columns: 1fr;
  }
  
  .site-footer__links {
    gap: 16px;
  }
}

/* --- ANIMATIONS --- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .intro__logos {
    grid-template-columns: repeat(4, 1fr);
    max-width: 400px;
  }

  .site-nav__links {
    gap: 16px;
  }

  .site-nav__links a {
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-padding: 40px;
  }

  .section__inner,
  .portfolio-section__inner {
    padding: 0 20px;
  }

  .intro__content {
    padding: 0 20px;
  }

  .intro__pretitle {
    text-align: center;
    font-size: 14px;
  }

  .intro__logos {
    grid-template-columns: repeat(4, 1fr);
    max-width: 320px;
    gap: 10px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about__content {
    padding: 40px 20px;
  }

  .about__ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-pill {
    width: 100%;
    max-width: 280px;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__inner {
    justify-content: center;
  }
}

/* --- Scroll reveal utility --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Video fullscreen modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(8px);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal__content {
  max-width: 420px;
  max-height: 90vh;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal__content {
  transform: scale(1);
}

.video-modal__content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-modal__close:hover {
  background: rgba(255,255,255,0.3);
}

.video-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}
