/* ============================================================
   MotionMade — style.css
   ============================================================ */

/* --- Google Fonts loaded in HTML --- */

/* --- Custom Properties --- */
:root {
  --cream:   #F5F0E8;
  --cream-2: #EDE7D9;
  --dark:    #1C1915;
  --mid:     #4A4540;
  --warm:    #B8956A;
  --warm-lt: #D4B896;
  --white:   #FDFAF5;

  --nav-h: 68px;
  --section-pad: 6rem;
  --max-w: 1240px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* --- Grain overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  filter: url(#grain);
  width: 100%;
  height: 100%;
}

/* --- Typography helpers --- */
.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group > *:nth-child(1) { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.4s; }

/* Hero specific load animation — starts hidden */
.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background 0.25s ease;
}
.btn-primary:hover { background: var(--warm); }

.btn-ghost {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--warm); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245, 240, 232, 0.85);
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta .btn-primary {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

/* Burger button — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 2rem;
  background: rgba(245, 240, 232, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,149,106,0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.nav-mobile-menu.is-open {
  max-height: 400px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(184,149,106,0.15);
}
.nav-mobile-links a {
  display: block;
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  transition: color 0.2s ease;
}
.nav-mobile-links a:hover { color: var(--warm); }
.nav-mobile-cta {
  width: 100%;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 4rem 0 0;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top row */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-2);
  line-height: 1.4;
}
.footer-col-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.1rem;
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a,
.footer-contact a,
.footer-contact span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-lt);
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--cream); }

/* Big wordmark */
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 13vw, 14rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  user-select: none;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ============================================================
   IMAGE & VIDEO PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-lt);
  user-select: none;
}
.video-placeholder {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.video-placeholder .play-icon {
  width: 56px;
  height: 56px;
  opacity: 0.75;
}
.video-placeholder .video-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  margin: 0;
}

/* ============================================================
   SECTION: HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  border: 1px solid var(--warm);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--warm);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Right column */
.hero-images {
  position: relative;
  padding-bottom: 2rem;
}
.hero-img-main {
  width: 72%;
  margin-left: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.hero-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  aspect-ratio: 3 / 4;
  border: 5px solid var(--white);
  box-shadow: 0 4px 24px rgba(28, 25, 21, 0.1);
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  right: -1rem;
  top: 40%;
  transform: translateY(-50%);
  background: var(--white);
  border-left: 3px solid var(--warm);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 20px rgba(28, 25, 21, 0.12);
  min-width: 110px;
}
.hero-badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  display: block;
}
.hero-badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: 0.25rem;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 4rem;
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(184, 149, 106, 0.3);
}
.section-divider-mark {
  color: var(--warm);
  font-size: 0.65rem;
}

/* ============================================================
   SECTION: TICKER
   ============================================================ */
.ticker {
  background: var(--dark);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.ticker-item {
  white-space: nowrap;
  padding: 0 2.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.ticker-item .star {
  color: var(--warm);
  margin-right: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============================================================
   SECTION: SERVICES
   ============================================================ */
.services {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.services-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.services-header-left .section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 0;
}
.services-header-left .section-h2 em {
  font-style: italic;
  color: var(--warm);
}
.services-header-right p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.service-card:hover {
  background: #F0EBE0;
}
.service-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img .img-placeholder {
  transform: scale(1.03);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.03);
}
.service-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 1.5rem;
}
.service-number {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 0.6rem;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   SECTION: PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-preview {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.portfolio-preview-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}
.section-h2 em {
  font-style: italic;
  color: var(--warm);
}

.portfolio-preview-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}
.portfolio-tile {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
}
.portfolio-tile .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.portfolio-tile:hover .img-placeholder {
  transform: scale(1.04);
}
.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-tile:hover img {
  transform: scale(1.04);
}
.portfolio-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,21,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}
.portfolio-tile-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}
.portfolio-tile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
}
.portfolio-tile-arrow {
  color: var(--warm-lt);
  font-size: 1.1rem;
}
.portfolio-preview-cta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* ============================================================
   SECTION: TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--dark);
  padding: var(--section-pad) 0;
}
.testimonials-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.testimonials-header .label { color: var(--warm-lt); }
.testimonials-header .section-h2 { color: var(--cream); }
.testimonials-header .section-h2 em { color: var(--warm); }

.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}
.testimonial-card {
  background: #26221E;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-deco {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--warm);
  opacity: 0.12;
  user-select: none;
  pointer-events: none;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm);
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
}
.author-name {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.author-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--warm-lt);
  margin-top: 0.15rem;
}

/* ============================================================
   SECTION: CONTACT
   ============================================================ */
.contact {
  background: var(--cream-2);
  padding: var(--section-pad) 0;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: start;
}
.contact-left { max-width: 560px; }
.contact-inner .section-h2 { margin-bottom: 1rem; }
.contact-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4rem;
}
.contact-info-box {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(184,149,106,0.2);
}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
}

/* Form */
.contact-form {
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1.75rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--warm-lt);
  background: transparent;
  padding: 0.6rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--warm);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-lt);
  font-weight: 300;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  margin-top: 0.5rem;
}
.form-submit:hover:not(:disabled) { background: var(--warm); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  font-size: 0.8rem;
  color: var(--warm);
  margin-top: 0.75rem;
  text-align: center;
}
.form-success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  padding: 2rem 0;
  line-height: 1.5;
}

/* ============================================================
   PORTFOLIO PAGE — HERO MINIMAL
   ============================================================ */
.portfolio-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  background: var(--cream);
}
.portfolio-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.portfolio-hero-inner .page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1rem;
}
.portfolio-hero-inner .hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
}

/* ============================================================
   PORTFOLIO PAGE — CLIENT SECTIONS
   ============================================================ */
.clients {
  background: var(--cream);
}
.client-section {
  padding: var(--section-pad) 0;
}
.client-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.client-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.client-index {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--warm);
}
.client-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}
.client-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── Client image grids ──────────────────────────────────────
   4-col, 2-row editorial layout (identical for all clients):

   [ hero lifestyle · col 1-2 · row 1 ][ accent · col 3 ][ video · col 4 · rows 1-2 ]
   [ small · col 1  ][ small · col 2  ][ small  · col 3 ][ video cont.              ]

   HTML order: hero, accent, small×3, video
   ──────────────────────────────────────────────────────────── */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "hero hero accent video"
    "sm1  sm2  sm3    video";
  grid-template-rows: 420px 230px;
  gap: 3px;
  margin-bottom: 3rem;
}

.client-grid > :nth-child(1) { grid-area: hero; }
.client-grid > :nth-child(2) { grid-area: accent; }
.client-grid > :nth-child(3) { grid-area: sm1; }
.client-grid > :nth-child(4) { grid-area: sm2; }
.client-grid > :nth-child(5) { grid-area: sm3; }
.client-grid > :nth-child(6) { grid-area: video; }

.client-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inline testimonial on portfolio page */
.inline-testimonial {
  margin-top: 3rem;
  max-width: 680px;
}
.inline-testimonial .testimonial-card {
  background: #26221E;
}

/* ============================================================
   PORTFOLIO PAGE — CLOSING CTA
   ============================================================ */
.portfolio-cta {
  background: var(--cream-2);
  padding: var(--section-pad) 0;
  text-align: center;
}
.portfolio-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}
.portfolio-cta-inner .section-h2 {
  margin-bottom: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

  :root { --section-pad: 4rem; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-menu { display: flex; }

  /* Hero */
  .hero {
    align-items: stretch;
    padding-top: var(--nav-h);
    min-height: 100vh;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 0;
    padding: 2.5rem 1.5rem 0;
    height: calc(100vh - var(--nav-h));
  }
  .hero-left {
    flex: 0 0 auto;
    padding-bottom: 2rem;
  }
  .hero-images {
    flex: 1;
    min-height: 0;
    padding-bottom: 0;
    position: relative;
  }
  .hero-img-main {
    width: 100%;
    height: 100%;
    margin-left: 0;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: 50% 20%;
  }
  .hero-img-secondary {
    width: 38%;
  }
  .hero-badge {
    right: 0;
    top: 50%;
  }

  /* Services */
  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .services-grid { grid-template-columns: 1fr; }

  /* Portfolio preview */
  .portfolio-preview-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-right { margin-top: 0; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }

  /* Portfolio client grids — 2-col flow on mobile */
  .client-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: none;
    grid-template-rows: unset;
    gap: 3px;
  }
  .client-grid > :nth-child(1),
  .client-grid > :nth-child(2),
  .client-grid > :nth-child(3),
  .client-grid > :nth-child(4),
  .client-grid > :nth-child(5),
  .client-grid > :nth-child(6) { grid-area: unset; }
  .client-grid img {
    width: 100%;
    height: unset;
    aspect-ratio: 4 / 5;
  }
  .client-grid video {
    grid-column: 1 / -1;
    width: 100%;
    height: unset;
    aspect-ratio: 4 / 5;
    max-width: unset;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); }
  .testimonial-card { padding: 2rem; }
}
