/* =====================================
   THE GABI LIMA — v2
   Warm, playful, magazine-energy
   ===================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --cream: #FFF8EE;
  --cream-deep: #F8EBD3;
  --cream-warm: #F4DDB8;
  --peach: #FF8E5C;
  --peach-soft: #FFCBA8;
  --coral: #F25C3F;
  --terracotta: #C8451F;
  --berry: #7E2424;
  --sage: #A8B89A;
  --sage-deep: #6B7E5D;
  --ink: #2A1810;
  --ink-soft: #4E3525;
  --ink-mute: #8A6F5C;
  --line: #EAD9BD;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;

  --max: 1400px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Wrappers */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(255, 248, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 4px 24px rgba(42, 24, 16, 0.06);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.nav__logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}
.nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--coral); }
.nav__cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--coral); color: var(--cream) !important; }

.nav__mobile-toggle { display: none; }

/* Language toggle in nav */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  border-radius: 100px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
}
.nav__lang button {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 100px;
  color: var(--ink-mute);
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
}
.nav__lang button.active {
  background: var(--ink);
  color: var(--cream);
}
.nav__lang button:not(.active):hover {
  color: var(--ink);
}

/* WhatsApp button */
.btn--whatsapp {
  background: #25D366;
  color: white;
}
.btn--whatsapp:hover {
  background: #1FAA52;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Market/language flags */
.flag-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px 4px 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
}
.flag-tag__emoji {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 780px) {
  .nav { gap: 12px; padding: 10px 12px 10px 18px; }
  .nav__links { display: none; }
  .nav__cta { font-size: 12px; padding: 8px 16px; }
  .nav__lang button { font-size: 11px; padding: 4px 8px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative blob behind hero */
.hero__blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--peach-soft) 0%, transparent 70%);
  opacity: 0.55;
  z-index: 0;
  border-radius: 50%;
  animation: blobFloat 18s ease-in-out infinite;
}
.hero__blob--2 {
  top: 40%;
  right: auto;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.35;
  animation-delay: -6s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding-top: 40px;
}

.hero__sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-deep);
  border: 1.5px solid var(--ink);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.hero__sticker-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.hero__headline em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 16%;
  background: var(--peach-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-4deg);
}

.hero__star {
  display: inline-block;
  color: var(--peach);
  font-size: 0.6em;
  vertical-align: super;
  animation: spin 14s linear infinite;
  transform-origin: center;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(.3, .8, .3, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 92, 63, 0.35);
}
.btn--ghost {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}
.btn--ghost::after {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 12px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.btn--ghost:hover::after { transform: scaleX(1); }

.hero__visual {
  position: relative;
}
.hero__photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--peach-soft);
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 12px 12px 0 var(--ink);
}
.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.05) saturate(1.15) brightness(1.02);
}
.hero__photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.hero__photo-tag span:last-child { color: var(--coral); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo-wrap { transform: rotate(1deg); max-width: 480px; margin: 0 auto; box-shadow: 8px 8px 0 var(--ink); }
}

/* ===== CREDS MARQUEE ===== */
.creds {
  background: var(--ink);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee {
  display: flex;
  gap: 64px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee__item::after {
  content: '✦';
  color: var(--peach);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEADERS ===== */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--alt {
  background: var(--cream-deep);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--coral);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 14ch;
}
.section-title em {
  font-style: italic;
  color: var(--coral);
}
.section-title em.underline {
  position: relative;
}
.section-title em.underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5%;
  background: var(--peach);
  z-index: -1;
  transform: skewX(-3deg);
}

.section-intro {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 64px;
}

/* ===== CASE CARDS (inline on homepage) ===== */
.case {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 60px 0;
  border-top: 1.5px solid var(--ink);
  position: relative;
}
.case:nth-child(even) {
  grid-template-columns: 1.1fr 1fr;
}
.case:nth-child(even) .case__media {
  order: 2;
}

.case__num {
  position: absolute;
  top: 24px;
  right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
}

.case__media {
  position: relative;
}

/* Single video media (Bonez, ALL) */
.case__videos-single {
  background: var(--ink);
  border-radius: 20px;
  padding: 20px;
  aspect-ratio: 9/16;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case__videos-single iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Video stack (Super.com, Bonez 2-up) */
.case__videos-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.case__videos-stack .case__video {
  aspect-ratio: 9/16;
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
}
.case__videos-stack .case__video:nth-child(1) { transform: rotate(-2deg); }
.case__videos-stack .case__video:nth-child(2) { transform: rotate(2deg); }
.case__videos-stack iframe {
  width: 100%; height: 100%; border: none; border-radius: 8px;
}

/* Screenshot media (SIMMARK) */
.case__screenshot {
  background: var(--ink);
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.case__screenshot img {
  width: 100%;
  border-radius: 8px;
}
.case__screenshot-tag {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--coral);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.case__copy {}
.case__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--cream-deep);
  border-radius: 100px;
}
.case__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}
.case__tags .case__tag { margin-bottom: 0; }
.case__client {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.case__pitch {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.case__metric {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 24px;
  background: var(--cream-deep);
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.case__metric-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.case__metric-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

.case__quote {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 24px;
  position: relative;
}
.case__quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--coral);
  font-weight: 400;
  line-height: 1;
}
.case__quote-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.case__quote-attr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .case, .case:nth-child(even) { grid-template-columns: 1fr; }
  .case:nth-child(even) .case__media { order: 0; }
  .case__num { position: relative; top: 0; margin-bottom: 16px; display: block; }
}

/* ===== CLIENTS ===== */
.clients-marquee {
  background: var(--cream);
  padding: 36px 0;
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.clients-marquee .marquee__item {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}
.clients-marquee .marquee__item::after { color: var(--coral); }

/* ===== MORE WORK GRID ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.work-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(.3, .8, .3, 1), box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.work-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.work-card__video {
  aspect-ratio: 9/16;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.work-card__video iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.work-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--peach-soft), var(--cream-warm));
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  padding: 24px;
}
.work-card__body {
  padding: 16px 18px 20px;
}
.work-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 10px;
}
.work-card__client {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.work-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.2;
}
.work-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.work-card__flag-emoji { font-size: 12px; }
.work-card__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.about__photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sage);
  transform: rotate(-1.5deg);
  box-shadow: 10px 10px 0 var(--ink);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.2) brightness(1.05);
}

.about__body {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.about__body p { margin-bottom: 20px; }
.about__body p strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
}
.about__body em {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}

.about__facts {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1.5px dashed var(--ink-mute);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.about__fact {}
.about__fact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.about__fact-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}

.about__gear {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--cream-deep);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
}
.about__gear-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.about__gear-title em { font-style: italic; color: var(--coral); }
.about__gear-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__gear-list li {
  list-style: none;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { position: relative; top: 0; max-width: 420px; margin: 0 auto; }
  .about__facts { grid-template-columns: 1fr; }
}

/* ===== CONTACT FORM ===== */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.contact__blob {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 7vw, 100px);
  position: relative;
  z-index: 2;
}
.contact__intro {
  position: sticky;
  top: 100px;
  align-self: start;
}
.contact__label {
  color: var(--peach);
  margin-bottom: 16px;
}
.contact__label::before { background: var(--peach); }
.contact__title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--cream);
}
.contact__title em {
  font-style: italic;
  color: var(--peach);
}
.contact__sub {
  font-size: 18px;
  color: rgba(255, 248, 238, 0.75);
  line-height: 1.55;
  margin-bottom: 32px;
}
.contact__alt {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255, 248, 238, 0.2);
  font-size: 14px;
  color: rgba(255, 248, 238, 0.6);
}
.contact__alt a {
  color: var(--peach);
  border-bottom: 1px solid var(--peach);
}

.form-card {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(32px, 4vw, 48px);
  border-radius: 28px;
  position: relative;
  border: 1.5px solid var(--ink);
}

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  align-items: center;
}
.form-progress__step {
  height: 4px;
  flex: 1;
  background: var(--cream-deep);
  border-radius: 4px;
  transition: background 0.4s ease;
}
.form-progress__step.active { background: var(--coral); }
.form-progress__step.complete { background: var(--ink); }
.form-progress__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.form-step { display: none; animation: fadeUp 0.5s cubic-bezier(.3, .8, .3, 1) both; }
.form-step.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-step__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.form-step__title em { font-style: italic; color: var(--coral); }

.field { margin-bottom: 24px; }
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field__label small {
  display: inline;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-mute);
  margin-left: 6px;
}
.field__input, .field__textarea {
  width: 100%;
  background: var(--cream-deep);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: all 0.2s ease;
}
.field__input:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--cream);
}
.field__input::placeholder, .field__textarea::placeholder {
  color: var(--ink-mute);
}
.field__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.toggle {
  border: 1.5px solid var(--line);
  background: var(--cream);
  padding: 18px;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggle:hover { border-color: var(--ink-mute); }
.toggle.active {
  border-color: var(--coral);
  background: var(--peach-soft);
}
.toggle__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.toggle__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 560px) {
  .toggle-group { grid-template-columns: 1fr; }
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream-deep);
  border: 1.5px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 15px;
}
.radio:hover { background: var(--cream-warm); }
.radio.active {
  background: var(--peach-soft);
  border-color: var(--coral);
}
.radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio__dot {
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: var(--cream);
}
.radio__dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--coral);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.radio.active .radio__dot::after { transform: scale(1); }

/* Checkbox variant — square shape signals multi-select */
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream-deep);
  border: 1.5px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 15px;
}
.checkbox:hover { background: var(--cream-warm); }
.checkbox.active {
  background: var(--peach-soft);
  border-color: var(--coral);
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  background: var(--cream);
  transition: background 0.15s ease;
}
.checkbox__box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.checkbox.active .checkbox__box {
  background: var(--coral);
  border-color: var(--coral);
}
.checkbox.active .checkbox__box::after { transform: rotate(45deg) scale(1); }

.checkbox-hint {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mute);
  margin-bottom: 14px;
  margin-top: -8px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1.5px solid var(--ink);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.faq__heading {
  position: sticky;
  top: 100px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--cream-deep);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq__item.open {
  box-shadow: 5px 5px 0 var(--ink);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  gap: 16px;
}
.faq__q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s cubic-bezier(.3, .8, .3, 1);
}
.faq__item.open .faq__q-icon {
  transform: rotate(45deg);
}

/* ===== FEATURED REELS (opening showcase) ===== */
.featured-reels {
  padding: clamp(60px, 9vw, 100px) 0 clamp(20px, 3vw, 40px);
  position: relative;
}
.featured-reels__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.featured-reels__intro-right {
  text-align: right;
  padding-bottom: 12px;
}
@media (max-width: 780px) {
  .featured-reels__intro { grid-template-columns: 1fr; gap: 16px; }
  .featured-reels__intro-right { text-align: left; padding-bottom: 0; }
}

.reels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  max-width: 880px;
  margin: 0 auto;
}
.reel-feature {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reel-feature__video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.3s cubic-bezier(.3, .8, .3, 1), box-shadow 0.3s ease;
}
.reel-feature:hover .reel-feature__video-wrap {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.reel-feature--right .reel-feature__video-wrap {
  transform: rotate(1.5deg);
}
.reel-feature--right:hover .reel-feature__video-wrap {
  transform: rotate(1.5deg) translate(-3px, -3px);
}
.reel-feature--left .reel-feature__video-wrap {
  transform: rotate(-1.5deg);
}
.reel-feature--left:hover .reel-feature__video-wrap {
  transform: rotate(-1.5deg) translate(-3px, -3px);
}
.reel-feature__video-wrap video,
.reel-feature__video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.reel-feature__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 2;
}
.reel-feature__badge--alt {
  background: var(--ink);
  color: var(--peach);
}
.reel-feature__meta {
  padding: 20px 4px 0;
  max-width: 320px;
  margin: 0 auto;
}
.reel-feature__client {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.reel-feature__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.reel-feature__tag-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}
.reel-feature__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Capability row - video types I make (categorized) */
.capabilities {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--cream-deep);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
}
.capabilities__intro {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.capabilities__intro em {
  font-style: italic;
  color: var(--coral);
}
.capabilities__sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}
@media (max-width: 980px) {
  .capabilities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .capabilities__grid { grid-template-columns: 1fr; }
}
.capabilities__cat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capabilities__cat-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.capabilities__cat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--coral);
  font-weight: 500;
}
.capabilities__cat-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.capabilities__cat-desc {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mute);
  line-height: 1.4;
  margin-bottom: 6px;
}
.capabilities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.capabilities__list li {
  background: var(--cream);
  border: 1px solid var(--ink);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}
.capabilities__list li:hover {
  background: var(--peach-soft);
  transform: translateY(-1px);
}
.capabilities__list li::before {
  content: '✦';
  color: var(--coral);
  font-size: 9px;
}

.featured-reels__transition {
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1.5px dashed var(--ink-mute);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.featured-reels__transition-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 700px;
}
.featured-reels__transition-text em {
  color: var(--coral);
  font-style: italic;
}
.featured-reels__transition-arrow {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--coral);
  font-style: italic;
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .reels-grid { grid-template-columns: 1fr; gap: 36px; }
  .reel-feature--right .reel-feature__video-wrap,
  .reel-feature--left .reel-feature__video-wrap { transform: rotate(0); }
  .reel-feature--right:hover .reel-feature__video-wrap,
  .reel-feature--left:hover .reel-feature__video-wrap {
    transform: translate(-3px, -3px);
  }
}

/* Now Booking Banner */
.booking-banner {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.booking-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.booking-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}
.booking-banner__dot {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.booking-banner__items {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255, 248, 238, 0.85);
}
.booking-banner__items span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.booking-banner__items span::after {
  content: '✦';
  color: var(--peach);
  font-size: 10px;
}
.booking-banner__items span:last-child::after { display: none; }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.15);
  transition: all 0.3s cubic-bezier(.3, .8, .3, 1);
  text-decoration: none;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.2);
  animation: none;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.whatsapp-float__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-family: var(--sans);
}
.whatsapp-float__label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}
.whatsapp-float:hover .whatsapp-float__label {
  opacity: 1;
}

@keyframes floatPulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.15);
  }
  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

@media (max-width: 780px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float__label { display: none; }
}

/* ===== HOW IT WORKS (next to DJI) ===== */
.featured-with-process {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.process-card {
  background: var(--cream-deep);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 6px 6px 0 var(--ink);
}
.process-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.process-card__label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--coral);
}
.process-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--ink);
}
.process-card__title em {
  font-style: italic;
  color: var(--coral);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--ink-mute);
}
.process-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.process-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  width: 36px;
}
.process-step__body {
  flex: 1;
}
.process-step__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.process-step__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.process-step__time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--line);
  white-space: nowrap;
  margin-top: 2px;
}
.process-card__footer {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  padding-top: 18px;
  border-top: 1.5px dashed var(--ink);
}
.process-card__footer strong {
  font-style: normal;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 780px) {
  .featured-with-process {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== RETAINER CARD ===== */
.retainer-card {
  background: var(--peach-soft);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 52px);
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  margin: clamp(60px, 8vw, 100px) 0 0;
}
.retainer-card__live {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--coral);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 3px 3px 0 var(--ink);
}
.retainer-card__live-dot {
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.retainer-card__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.retainer-card__copy {}
.retainer-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.retainer-card__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.retainer-card__title em {
  font-style: italic;
  color: var(--coral);
}
.retainer-card__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.retainer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1.5px dashed var(--ink);
}
.retainer-card__meta-item {
  font-size: 13px;
}
.retainer-card__meta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.retainer-card__meta-value {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.retainer-card__videos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.retainer-card__video {
  aspect-ratio: 9/16;
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  padding: 6px;
  transition: transform 0.25s ease;
}
.retainer-card__video:hover {
  transform: translateY(-3px);
}
.retainer-card__video iframe {
  width: 100%; height: 100%;
  border: none;
  border-radius: 8px;
}
@media (max-width: 780px) {
  .retainer-card__grid { grid-template-columns: 1fr; gap: 28px; }
  .retainer-card__live { left: 24px; }
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.3, .8, .3, 1);
}
.faq__a-inner {
  padding: 0 26px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq__a-inner p { margin-bottom: 12px; }
.faq__a-inner p:last-child { margin-bottom: 0; }
.faq__a-inner em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--coral);
}
@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq__heading { position: relative; top: 0; }
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.form-actions__back {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.form-actions__back:hover { color: var(--coral); }
.form-actions__back:disabled { opacity: 0; pointer-events: none; }

.form-next, .form-submit {
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.form-next:hover, .form-submit:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 92, 63, 0.3);
}
.form-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.form-thanks {
  text-align: center;
  padding: 24px 0;
}
.form-thanks__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  animation: bounce 1s cubic-bezier(.3, .8, .3, 1.4);
}
@keyframes bounce {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
.form-thanks__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.form-thanks__title em { font-style: italic; color: var(--coral); }
.form-thanks__text {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__intro { position: relative; top: 0; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 248, 238, 0.1);
  font-size: 13px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__inner span { color: rgba(255, 248, 238, 0.6); }
.footer__inner a {
  color: var(--peach);
  transition: opacity 0.2s;
}
.footer__inner a:hover { opacity: 0.7; }

/* ===== UTILITY ===== */
.reveal { opacity: 1; }
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.3, .8, .3, 1);
}
.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
