/* =====================================================
   Mont Media — Stylesheet
   ===================================================== */

:root {
  /* Color tokens */
  --cream: #FDF8F3;
  --cream-deep: #F7EFE6;
  --ink: #2B0E45;
  --ink-soft: #4A3160;
  --muted: #776D85;
  --violet: #7C3AED;
  --violet-deep: #5B21B6;
  --pink: #EC4899;
  --gradient: linear-gradient(100deg, #7C3AED 0%, #C026D3 55%, #EC4899 100%);
  --gradient-soft: linear-gradient(160deg, #F3E9FC 0%, #FCEBF4 100%);
  --border: #ECE1F5;
  --white: #FFFFFF;
  --shadow-pink: 0 18px 40px -14px rgba(192, 38, 211, 0.35);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-deep);
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 96px 0;
}
.section-tight { padding: 64px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(192, 38, 211, 0.45); }
.btn-outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--violet); color: var(--violet-deep); }
.btn-ghost {
  color: var(--ink);
  font-weight: 600;
  gap: 6px;
}
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  color: var(--violet-deep);
  flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge.filled {
  background: var(--gradient);
  color: var(--white);
}

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 20px;
}
.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  margin-left: 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark.no-logo {
  background: var(--gradient);
}
.brand-mark.no-logo::after {
  content: "M";
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active,
.main-nav a:hover { color: var(--ink); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 40px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero-copy p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  max-width: 420px;
  box-shadow: 0 20px 40px -28px rgba(43, 14, 69, 0.25);
}
.hero-rating .stars { color: var(--pink); display: flex; gap: 2px; }
.hero-rating .stars svg { width: 14px; height: 14px; fill: currentColor; }
.hero-rating .quote { font-size: 0.85rem; color: var(--ink-soft); margin: 4px 0 6px; }
.hero-rating .who { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.hero-rating .who span { color: var(--ink); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 70px -30px rgba(43, 14, 69, 0.45);
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}

/* Vertical (9:16, Reel-style) video — capped size so it never dominates its section */
.video-frame.vertical {
  width: clamp(200px, 32vw, 300px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 40px 0;
  text-align: center;
}
.logo-strip p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}
.logo-row span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Feature / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-copy p { color: var(--muted); margin: 18px 0 28px; }
.split-list { display: grid; gap: 18px; }
.split-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.split-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.split-list .check svg { width: 12px; height: 12px; }
.split-list strong { color: var(--ink); display: block; margin-bottom: 2px; }
.split-list span.desc { color: var(--muted); font-size: 0.92rem; }
.split-media img, .split-media .video-frame { border-radius: var(--radius-lg); }

/* ---------- Service / solution cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -26px rgba(124, 58, 237, 0.28);
  border-color: transparent;
}
.service-card h3 { font-size: 1.15rem; margin: 20px 0 10px; }
.service-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 34px 28px;
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--violet);
  margin-bottom: 14px;
  display: block;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
}
.testimonial-card .stars { color: var(--pink); display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card .stars svg { width: 15px; height: 15px; fill: currentColor; }
.testimonial-card p.quote { color: var(--ink-soft); margin-bottom: 22px; font-size: 0.98rem; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--ink); }
.testimonial-person span { font-size: 0.82rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gradient);
  border-radius: 28px;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 10px; max-width: 420px; }
.cta-banner .btn-outline { background: var(--white); color: var(--violet-deep); border-color: transparent; }

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  margin: 0 auto 56px;
}
.pricing-toggle button {
  border: none;
  background: transparent;
  padding: 11px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}
.pricing-toggle button.active {
  background: var(--gradient);
  color: var(--white);
}
.pricing-toggle .save-tag {
  background: rgba(124,58,237,0.12);
  color: var(--violet-deep);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 100px;
}
.pricing-toggle button.active .save-tag {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 1120px; }
.price-card {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: linear-gradient(165deg, #EFE1FB 0%, #FBE3F0 100%);
  border-color: transparent;
  box-shadow: var(--shadow-pink);
  position: relative;
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  right: 32px;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.price-card-head h3 { font-size: 1.35rem; }
.price-card > p.desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 26px; min-height: 44px; }
.price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.2vw, 3.1rem);
  font-weight: 700;
  color: var(--white);
  background: var(--gradient);
  padding: 14px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow-pink);
  margin-bottom: 14px;
}
.price-amount span.period { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); font-family: var(--font-body); }
.price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 26px; }
.price-includes-label { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.price-includes-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.price-features { display: grid; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.price-features .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.price-features .check svg { width: 10px; height: 10px; }

.pricing-faq { max-width: 780px; margin: 90px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform 0.25s ease; flex-shrink: 0; color: var(--violet); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item p { color: var(--muted); margin-top: 14px; font-size: 0.94rem; }

/* ---------- Our Work grid ---------- */
.work-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.work-filters button {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.work-filters button.active,
.work-filters button:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(43,14,69,0.3); }
.work-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--gradient-soft);
  overflow: hidden;
  cursor: pointer;
}
.work-thumb img,
.work-thumb video { width: 100%; height: 100%; object-fit: cover; background: var(--ink); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn span {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--violet-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 15px 30px -10px rgba(43,14,69,0.4);
  transition: transform 0.25s ease;
}
.work-card:hover .play-btn span { transform: scale(1.08); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.work-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(43,14,69,0.65);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.work-body { padding: 22px 24px 26px; }
.work-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.work-body p { color: var(--muted); font-size: 0.9rem; margin: 0 0 14px; }
.work-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}
.work-meta span { display: flex; align-items: center; gap: 6px; }
.work-meta svg { width: 14px; height: 14px; color: var(--violet); }

/* Lightbox modal for work videos */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 6, 33, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #000;
}
.lightbox-inner video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.lightbox-close {
  position: absolute;
  top: -46px; right: 0;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  margin-bottom: 16px;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 2px; }
.team-card span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Values timeline ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.value-card h3 { font-size: 1.05rem; margin: 16px 0 8px; }
.value-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Booking page ---------- */
.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
.booking-side h1 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.booking-side p.lead { color: var(--muted); margin-bottom: 34px; }
.booking-points { display: grid; gap: 20px; margin-bottom: 40px; }
.booking-points li { display: flex; gap: 14px; align-items: flex-start; }
.booking-points strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 0.95rem; }
.booking-points span.desc { color: var(--muted); font-size: 0.88rem; }
.booking-plan-note {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: none;
}
.booking-plan-note.show { display: flex; align-items: center; gap: 10px; }

.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -34px rgba(43,14,69,0.28);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #E9F9EE; color: #1E7A3B; }
.form-status.error { background: #FDEBEC; color: #B3261E; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .brand-name { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover { background: var(--gradient); border-color: transparent; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4, .steps, .stats-row, .team-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .main-nav { 
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .section { padding: 64px 0; }
  .pricing-grid, .pricing-grid.three { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .steps, .stats-row, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 26px; }
  .footer-inner { grid-template-columns: 1fr; }
}
