/* ==========================================================================
   Faith Morgan Films — Design System
   ========================================================================== */

:root {
  --bg: #F7F3EE;
  --surface: #FFFFFF;
  --text: #1C1A18;
  --text-secondary: #6B6560;
  --accent: #B87755;
  --border: #E5DDD5;
  --hero-overlay: rgba(28, 26, 24, 0.6);
  --placeholder-bg: #2A2825;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --max-width: 1200px;
  --pad-section: 80px;
  --pad-section-mobile: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

section {
  padding: var(--pad-section) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--pad-section-mobile) 0;
  }
  .container {
    padding: 0 20px;
  }
}

.no-pad-top {
  padding-top: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-headline {
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.15;
}

.hero-headline .handwritten {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  font-size: 0.7em;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.section-headline {
  font-size: 40px;
  font-weight: 500;
}

.sub-headline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  color: var(--text-secondary);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-headline { font-size: 44px; }
  .section-headline { font-size: 28px; }
  .quote { font-size: 26px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background: #A2643F;
  border-color: #A2643F;
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: #FFFFFF;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links > li {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  border-bottom-color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
}

/* Homepage hero nav overlay — transparent, sits on the video, scrolls away after the hero */
.nav.nav-overlay {
  position: absolute;
  background: transparent;
  border-bottom: none;
}

.nav.nav-overlay .nav-inner {
  height: 96px;
}

.nav.nav-overlay .wordmark {
  font-size: 27px;
  color: #FFFFFF;
}

.nav.nav-overlay .nav-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.nav.nav-overlay .nav-link:hover,
.nav.nav-overlay .nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav.nav-overlay .hamburger span {
  background: #FFFFFF;
}

/* Work dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
  background: var(--bg);
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-overlay.open {
  transform: translateY(0);
}

.mobile-overlay a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.mobile-overlay .mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: -6px;
}

.mobile-overlay .mobile-sub a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   Hero / Page headers
   ========================================================================== */

.hero {
  min-height: 100vh;
  background: var(--placeholder-bg);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 56px 90px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,24,0.15) 0%, rgba(28,26,24,0.55) 65%, rgba(28,26,24,0.92) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: left;
  color: #FFFFFF;
  animation: heroFadeInUp 1s ease-out both;
}

@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content .hero-headline {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-content .eyebrow {
  display: block;
  margin-bottom: 22px;
}

.hero .scroll-cue {
  position: absolute;
  z-index: 2;
  right: 56px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 800px) {
  .hero { padding: 0 24px 60px; }
  .hero .scroll-cue { display: none; }
}

.hero-content .sub-headline {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.page-header.header-short {
  min-height: 40vh;
}

.page-header {
  min-height: 50vh;
  background: var(--placeholder-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 60px;
}

.page-header .section-headline {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 16px;
}

.page-header .sub-headline {
  color: rgba(255, 255, 255, 0.75);
}

.page-header.has-image {
  background-size: cover;
  background-position: center;
}

.page-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
}

@media (max-width: 768px) {
  .page-header .section-headline { font-size: 34px; }
}

/* ==========================================================================
   Media placeholders
   ========================================================================== */

.media-placeholder {
  background: var(--placeholder-bg);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  width: 100%;
  height: 100%;
}

.ratio-16-9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ratio-9-16 {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.ratio-4-5 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ratio-16-9 iframe,
.ratio-16-9 .media-placeholder,
.ratio-9-16 iframe,
.ratio-9-16 .media-placeholder,
.ratio-4-5 iframe,
.ratio-4-5 .media-placeholder,
.ratio-16-9 video,
.ratio-9-16 video,
.ratio-4-5 video,
.ratio-16-9 img,
.ratio-9-16 img,
.ratio-4-5 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  background: var(--placeholder-bg);
}

/* ==========================================================================
   Featured work — equal tile grid (homepage)
   ========================================================================== */

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tile-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.tile-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tile-item:hover img {
  transform: scale(1.04);
}

.tile-item .fs-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(28, 26, 24, 0.75), transparent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .tiles-grid { gap: 12px; }
  .tile-item { aspect-ratio: 1/1; }
}

/* ==========================================================================
   Positioning strip
   ========================================================================== */

.intro-quote {
  padding-bottom: 24px;
}

.intro-quote .positioning-strip .quote {
  color: var(--text);
  font-style: normal;
  font-size: 22px;
}

@media (max-width: 768px) {
  .intro-quote .positioning-strip .quote {
    font-size: 18px;
  }
}

.intro-quote .positioning-strip p:not(.quote) {
  color: var(--text-secondary);
}

.intro-quote + section {
  padding-top: 24px;
}

@media (max-width: 768px) {
  .intro-quote {
    padding-bottom: 16px;
  }

  .intro-quote + section {
    padding-top: 16px;
  }
}

.quote-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 24, 0.5);
  z-index: 1;
}

.positioning-strip {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.positioning-strip .quote {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.positioning-strip p {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Contact CTA strip
   ========================================================================== */

.cta-strip {
  position: relative;
  overflow: hidden;
  background: var(--placeholder-bg);
  text-align: center;
  color: #FFFFFF;
}

.cta-strip .container {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

/* ==========================================================================
   Editorial horizontal cards (signature element — travel.html)
   ========================================================================== */

.project-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.project-card {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: stretch;
}

.project-card-media {
  border-radius: 4px;
  overflow: hidden;
}

.project-card-body {
  padding: 24px 0 24px 40px;
  border-left: 1px solid transparent;
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card:hover .project-card-body {
  border-left-color: var(--accent);
}

.project-card-body .eyebrow {
  margin-bottom: 10px;
}

.project-card-body h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.project-card-body .location {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
}

.project-card-body .desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}

.project-card-body .deliverables {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-card.portrait-media {
  grid-template-columns: 30% 70%;
}

.project-card-media.dual-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.project-card-media.dual-media .ratio-16-9,
.project-card-media.dual-media .ratio-9-16 {
  border-radius: 0;
}

.project-card.muted {
  opacity: 0.55;
}

.project-card.muted .project-card-media .media-placeholder {
  background: #45423E;
}

@media (max-width: 768px) {
  .project-card,
  .project-card.portrait-media {
    grid-template-columns: 1fr;
  }
  .project-card-body {
    padding: 20px 0 0;
    border-left: none;
    border-top: 1px solid transparent;
  }
  .project-card:hover .project-card-body {
    border-left-color: transparent;
    border-top-color: var(--accent);
  }
}

/* Paired vertical video rows (two 9:16 clips per row) */

.project-pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pair-item .ratio-9-16 {
  max-width: 420px;
  margin: 0 auto 18px;
  border-radius: 4px;
  overflow: hidden;
}

.pair-item .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.pair-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.pair-item .location {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 10px;
}

.pair-item .desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.pair-item .deliverables {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .project-pair-row {
    grid-template-columns: 1fr;
  }
}

/* Services callout */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.services-grid h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.services-grid p {
  color: var(--text-secondary);
  font-size: 14px;
}

.services-callout {
  text-align: center;
}

.services-cta-line {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Vertical video grid (ugc.html)
   ========================================================================== */

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

.vertical-card .ratio-9-16 {
  border: 1px solid var(--border);
  border-radius: 4px;
}

.vertical-card .card-meta {
  margin-top: 12px;
}

.vertical-card .brand-name {
  font-weight: 500;
  font-size: 14px;
}

.vertical-card .content-type {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 2px;
}

.vertical-card.empty-slot .ratio-9-16 {
  border-style: dashed;
}

.vertical-card.empty-slot .media-placeholder {
  flex-direction: column;
  gap: 8px;
}

.vertical-card.empty-slot .plus-icon {
  font-size: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vertical-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Brands grid
   ========================================================================== */

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.brand-card .ratio-16-9,
.brand-card .ratio-9-16,
.brand-card .ratio-4-5 {
  border-radius: 4px;
  margin-bottom: 16px;
}

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

@media (max-width: 768px) {
  .brands-trio { grid-template-columns: 1fr; }
}

.brand-card .card-meta {
  margin-top: 12px;
}

.brand-card .brand-name {
  font-weight: 500;
  font-size: 14px;
}

.brand-card .content-type {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 2px;
}

.concept-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .brands-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Photography masonry
   ========================================================================== */

.masonry {
  column-count: 3;
  column-gap: 24px;
  margin-bottom: 64px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.photo-section-title {
  font-size: 24px;
  margin-top: 16px;
  margin-bottom: 28px;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--placeholder-bg);
}

@media (max-width: 900px) {
  .masonry { column-count: 2; }
}

@media (max-width: 600px) {
  .masonry { column-count: 1; }
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.photo-row .masonry-item {
  margin-bottom: 0;
  aspect-ratio: 2/3;
}

@media (max-width: 900px) {
  .photo-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .photo-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

.about-contact {
  max-width: 640px;
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.about-bio p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.about-bio .intro-greeting {
  color: var(--text);
  font-size: 20px;
}

.about-bio .intro-greeting .handwritten {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  font-size: 1.25em;
  color: var(--accent);
  display: inline-block;
  padding: 0 6px;
}

.about-bio .positioning {
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
}

.social-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.social-row a {
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.social-row a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 4px;
}

.contact-intro {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-form-wrap .sub-headline {
  font-size: 15px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.direct-email {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 900px) {
  .about-profile { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { width: 320px; max-width: 100%; margin-left: auto; margin-bottom: 8px; }
}

/* ==========================================================================
   Success page
   ========================================================================== */

.success-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px;
  text-align: center;
}

.success-content {
  max-width: 640px;
  margin: 0 auto;
}

.success-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
  margin-bottom: 28px;
}

.success-signature {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 36px;
}

.success-signature .handwritten {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  font-size: 1.7em;
  color: var(--accent);
  margin-left: 12px;
}

.success-back {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.success-back:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 600px) {
  .success-section { padding: 100px 20px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.site-footer .footer-social a {
  font-size: 13px;
  color: var(--text-secondary);
}

.site-footer .footer-social a:hover {
  color: var(--accent);
}

.site-footer .footer-note {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ==========================================================================
   Scroll fade-in
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Video block — 3 vertical videos in a row, 1 horizontal below
   ========================================================================== */

.video-block {
  margin-bottom: 90px;
}

.video-block:last-child {
  margin-bottom: 0;
}

.vb-verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.vb-item .ratio-9-16 {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.vb-item .eyebrow {
  display: block;
  margin-bottom: 8px;
  text-transform: none;
}

.vb-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 6px;
}

.vb-item .location {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.vb-item .desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.vb-item .deliverables {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.vb-item.empty-slot .ratio-9-16 {
  border: 1px dashed var(--border);
  border-radius: 4px;
}

.vb-item.empty-slot .media-placeholder {
  flex-direction: column;
  gap: 8px;
}

.vb-item.empty-slot .plus-icon {
  font-size: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

.vb-horizontal .ratio-16-9 {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.vb-horizontal-body {
  max-width: 640px;
}

.vb-horizontal-body .eyebrow {
  display: block;
  margin-bottom: 10px;
  text-transform: none;
}

.vb-horizontal-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 10px;
}

.vb-horizontal-body .location {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
}

.vb-horizontal-body .desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.vb-horizontal-body .deliverables {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .vb-verticals {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vb-verticals {
    grid-template-columns: 1fr;
  }
  .video-block {
    margin-bottom: 64px;
  }
}

/* ==========================================================================
   Stats strip (homepage)
   ========================================================================== */

.stats-strip {
  padding: 24px 32px 48px;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.1;
}

.stat-caption {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .stats-strip-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number {
    font-size: 40px;
  }
}

/* ==========================================================================
   Social proof bar — quote + clients row (homepage)
   ========================================================================== */

.social-proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-bar .positioning-strip {
  padding: 40px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-bar .positioning-strip .quote {
  color: var(--text);
  margin-bottom: 12px;
}

.social-proof-bar .positioning-strip .quote-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.plane-icon {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  color: var(--accent);
  opacity: 0.8;
  transform: rotate(45deg);
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.clients-row {
  text-align: center;
}

.clients-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
}

.clients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.clients-list span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: var(--text);
  padding: 0 28px;
  border-left: 1px solid var(--border);
}

.clients-list span:first-child {
  border-left: none;
}

@media (max-width: 768px) {
  .social-proof-bar .positioning-strip { padding: 28px 0; }
  .clients-list span { border-left: none; padding: 4px 16px; }
}

/* ==========================================================================
   Stat callout (about page)
   ========================================================================== */

.stat-callout-section {
  padding-top: 0;
}

.stat-callout {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 28px 40px;
}

.stat-callout p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 600px) {
  .stat-callout { padding: 24px 28px; }
  .stat-callout p { font-size: 19px; }
}

/* ==========================================================================
   Testimonials slider
   ========================================================================== */

.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: testimonialFadeIn 0.6s ease;
}

@keyframes testimonialFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 22px;
}

.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}

.testimonial-dot.active {
  background: var(--accent);
}

@media (max-width: 600px) {
  .testimonial-quote {
    font-size: 20px;
  }
}
