/* =========================================================================
   marketing.css — Estilos para landing publica de VI (Sprint Ola 3 — Agent I)

   Layout full-width (a diferencia de public.twig que es mobile-only de 640px).
   Tipografia: Cormorant Garamond (serif) para titulos, DM Sans (sans) para body.

   Convenciones:
     - Todas las clases con prefijo `mkt-` para no chocar con tokens.css /
       components.css existentes.
     - Brand VI: navy oscuro #0E2747 + gold #C8A35A + cream/ivory para superficies.
     - Mobile-first; media query >= 768px sube a layout de columnas.
     - Sin emojis, todos los iconos vienen via _components/icon.twig (SVG).
   ========================================================================= */

:root {
  --mkt-navy:        #0E2747;
  --mkt-navy-deep:   #07172C;
  --mkt-navy-soft:   #1A3859;
  --mkt-gold:        #C8A35A;
  --mkt-gold-deep:   #A8843E;
  --mkt-cream:       #FAF6EE;
  --mkt-cream-deep:  #F0E9D8;
  --mkt-ink:         #1A1F2E;
  --mkt-ink-soft:    #4A5468;
  --mkt-muted:       #7B8398;
  --mkt-line:        #E5E0D2;
  --mkt-line-soft:   rgba(14, 39, 71, 0.08);
  --mkt-white:       #FFFFFF;

  --mkt-font-serif:  'Cormorant Garamond', Georgia, serif;
  --mkt-font-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --mkt-radius:      8px;
  --mkt-radius-lg:   16px;
  --mkt-max-width:   1200px;
  --mkt-max-narrow:  760px;

  --mkt-shadow-sm:   0 1px 2px rgba(14, 39, 71, 0.06);
  --mkt-shadow-md:   0 4px 12px rgba(14, 39, 71, 0.08);
  --mkt-shadow-lg:   0 16px 48px rgba(14, 39, 71, 0.12);
}

/* =========================================================================
   Reset / Base layout-marketing
   ========================================================================= */

body.layout-marketing {
  margin: 0;
  font-family: var(--mkt-font-sans);
  color: var(--mkt-ink);
  background: var(--mkt-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

body.layout-marketing * {
  box-sizing: border-box;
}

body.layout-marketing h1,
body.layout-marketing h2,
body.layout-marketing h3 {
  font-family: var(--mkt-font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--mkt-navy);
}

body.layout-marketing p {
  margin: 0;
}

body.layout-marketing a {
  color: var(--mkt-navy);
  text-decoration: none;
  transition: color 0.15s ease;
}

body.layout-marketing a:hover {
  color: var(--mkt-gold-deep);
}

body.layout-marketing img {
  max-width: 100%;
  display: block;
}

.mkt-skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  background: var(--mkt-navy);
  color: var(--mkt-white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.mkt-skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* =========================================================================
   Container
   ========================================================================= */

.mkt-container {
  width: 100%;
  max-width: var(--mkt-max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.mkt-container--narrow {
  max-width: var(--mkt-max-narrow);
}

@media (min-width: 768px) {
  .mkt-container {
    padding: 0 2rem;
  }
}

/* =========================================================================
   Header
   ========================================================================= */

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--mkt-line-soft);
}

.mkt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--mkt-max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.mkt-header__brand {
  display: inline-flex;
  align-items: center;
}

.mkt-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 0.5rem;
  color: var(--mkt-navy);
  cursor: pointer;
}

.mkt-header__nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--mkt-white);
  border-bottom: 1px solid var(--mkt-line);
  box-shadow: var(--mkt-shadow-md);
}

.mkt-header__nav.is-open {
  display: block;
}

.mkt-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mkt-header__nav a {
  display: block;
  padding: 0.6rem 0.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--mkt-line-soft);
}

.mkt-header__nav a.is-active {
  color: var(--mkt-gold-deep);
}

@media (min-width: 900px) {
  .mkt-header__toggle {
    display: none;
  }

  .mkt-header__inner {
    padding: 1.25rem 2rem;
  }

  .mkt-header__nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .mkt-header__nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
  }

  .mkt-header__nav a {
    padding: 0.5rem 0.85rem;
    border: none;
    font-size: 0.95rem;
    border-radius: var(--mkt-radius);
  }

  .mkt-header__nav a:hover {
    background: var(--mkt-cream);
    color: var(--mkt-navy);
  }

  .mkt-cta--header {
    background: var(--mkt-navy);
    color: var(--mkt-white) !important;
    padding: 0.55rem 1rem !important;
  }

  .mkt-cta--header:hover {
    background: var(--mkt-navy-soft) !important;
    color: var(--mkt-white) !important;
  }

  .mkt-cta--header.is-active {
    background: var(--mkt-gold) !important;
    color: var(--mkt-navy) !important;
  }
}

/* =========================================================================
   Main
   ========================================================================= */

.mkt-main {
  min-height: 60vh;
}

/* =========================================================================
   Hero (home)
   ========================================================================= */

.mkt-hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--mkt-white);
  overflow: hidden;
}

.mkt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 25% 25%, rgba(200, 163, 90, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(26, 56, 89, 0.65) 0%, transparent 55%),
    linear-gradient(135deg, var(--mkt-navy-deep) 0%, var(--mkt-navy) 60%, var(--mkt-navy-soft) 100%);
}

.mkt-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 23, 44, 0.6) 100%);
}

.mkt-hero__inner {
  max-width: var(--mkt-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
}

.mkt-hero__title {
  font-family: var(--mkt-font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--mkt-white);
  max-width: 18ch;
  margin-top: 1rem;
}

.mkt-hero__title em {
  font-style: italic;
  color: var(--mkt-gold);
}

.mkt-hero__lead {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.mkt-hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .mkt-hero__inner {
    padding: 7rem 2rem 6rem;
  }
}

/* =========================================================================
   Page hero (sub-pages)
   ========================================================================= */

.mkt-page-hero {
  padding: 4rem 0 3rem;
  background: var(--mkt-cream);
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-page-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-top: 0.75rem;
  max-width: 22ch;
}

.mkt-page-hero__title em {
  font-style: italic;
  color: var(--mkt-gold-deep);
}

.mkt-page-hero__lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  max-width: 60ch;
  color: var(--mkt-ink-soft);
}

.mkt-page-hero--photo {
  position: relative;
  isolation: isolate;
  background: var(--mkt-navy);
  color: var(--mkt-white);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.mkt-page-hero--weddings {
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 163, 90, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #2C1A3F 0%, #4A2B5E 50%, #6B3E7D 100%);
}

.mkt-page-hero--corporate {
  background:
    radial-gradient(circle at 70% 40%, rgba(200, 163, 90, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #07172C 0%, #0E2747 50%, #1A3859 100%);
}

.mkt-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 23, 44, 0.5) 100%);
}

.mkt-page-hero__title--light {
  color: var(--mkt-white);
}

.mkt-page-hero__lead--light {
  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================================
   Sections
   ========================================================================= */

.mkt-section {
  padding: 4rem 0;
  background: var(--mkt-white);
}

.mkt-section--alt {
  background: var(--mkt-cream);
}

.mkt-section--dark {
  background: var(--mkt-navy);
  color: var(--mkt-white);
}

.mkt-section--dark h2,
.mkt-section--dark h3 {
  color: var(--mkt-white);
}

.mkt-section__header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.mkt-section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mkt-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-top: 0.5rem;
  font-style: italic;
}

.mkt-section__title--light {
  color: var(--mkt-white);
}

.mkt-section__lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--mkt-ink-soft);
}

.mkt-section--dark .mkt-section__lead {
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 768px) {
  .mkt-section {
    padding: 5.5rem 0;
  }
}

/* =========================================================================
   Eyebrow label
   ========================================================================= */

.mkt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mkt-gold-deep);
  margin: 0;
}

.mkt-eyebrow--light {
  color: var(--mkt-gold);
}

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

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--mkt-font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.mkt-btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.mkt-btn--gold {
  background: var(--mkt-gold);
  color: var(--mkt-navy);
}

.mkt-btn--gold:hover {
  background: var(--mkt-gold-deep);
  color: var(--mkt-white);
}

.mkt-btn--primary {
  background: var(--mkt-navy);
  color: var(--mkt-white);
}

.mkt-btn--primary:hover {
  background: var(--mkt-navy-soft);
  color: var(--mkt-white);
}

.mkt-btn--ghost {
  background: transparent;
  color: var(--mkt-navy);
  border-color: var(--mkt-navy);
}

.mkt-btn--ghost:hover {
  background: var(--mkt-navy);
  color: var(--mkt-white);
}

.mkt-btn--ghost-light {
  background: transparent;
  color: var(--mkt-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.mkt-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--mkt-white);
  border-color: var(--mkt-white);
}

.mkt-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--mkt-gold-deep);
  font-size: 0.92rem;
}

.mkt-link-arrow:hover {
  color: var(--mkt-navy);
}

/* =========================================================================
   Grids
   ========================================================================= */

.mkt-grid {
  display: grid;
  gap: 1.5rem;
}

.mkt-grid--2 { grid-template-columns: 1fr; }
.mkt-grid--3 { grid-template-columns: 1fr; }
.mkt-grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .mkt-grid--2,
  .mkt-grid--3,
  .mkt-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .mkt-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .mkt-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.mkt-grid--gap-lg { gap: 2.5rem; }

.mkt-grid--bordered > * {
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .mkt-grid--bordered > *:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* =========================================================================
   Service cards (home)
   ========================================================================= */

.mkt-card-service {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mkt-card-service:hover {
  transform: translateY(-3px);
  box-shadow: var(--mkt-shadow-lg);
  border-color: var(--mkt-gold);
}

.mkt-card-service__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--mkt-cream);
  color: var(--mkt-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mkt-card-service__title {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.mkt-card-service p {
  color: var(--mkt-ink-soft);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* =========================================================================
   Service block (services page)
   ========================================================================= */

.mkt-service-block {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  padding: 2.5rem;
}

.mkt-service-block__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--mkt-radius-lg);
  background: var(--mkt-cream);
  color: var(--mkt-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mkt-service-block h2 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.85rem;
}

.mkt-service-block > p {
  color: var(--mkt-ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* =========================================================================
   Checklist
   ========================================================================= */

.mkt-checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mkt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--mkt-ink);
  font-size: 0.95rem;
}

.mkt-checklist li > svg {
  color: var(--mkt-gold-deep);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.mkt-checklist--lg li {
  font-size: 1rem;
}

/* =========================================================================
   Card type (corporate page small)
   ========================================================================= */

.mkt-card-type {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  transition: border-color 0.15s ease;
}

.mkt-card-type:hover {
  border-color: var(--mkt-gold);
}

.mkt-card-type__icon {
  color: var(--mkt-gold-deep);
  margin-bottom: 0.75rem;
}

.mkt-card-type h3 {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.mkt-card-type p {
  color: var(--mkt-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* =========================================================================
   Card space
   ========================================================================= */

.mkt-card-space {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mkt-card-space__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--mkt-cream) 0%, var(--mkt-cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-card-space__placeholder {
  color: var(--mkt-gold-deep);
  opacity: 0.6;
}

.mkt-card-space__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mkt-card-space__body h3 {
  font-size: 1.35rem;
  font-style: italic;
}

.mkt-card-space__body p {
  color: var(--mkt-ink-soft);
  font-size: 0.95rem;
}

.mkt-card-space__meta {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--mkt-muted);
}

.mkt-card-space__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* =========================================================================
   Card package (weddings page)
   ========================================================================= */

.mkt-card-package {
  display: block;
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  padding: 1.75rem;
  color: var(--mkt-ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkt-card-package:hover {
  transform: translateY(-3px);
  border-color: var(--mkt-gold);
  box-shadow: var(--mkt-shadow-md);
}

.mkt-card-package__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--mkt-cream);
  color: var(--mkt-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mkt-card-package h3 {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.mkt-card-package p {
  color: var(--mkt-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* =========================================================================
   Value cards (home + about)
   ========================================================================= */

.mkt-value {
  text-align: center;
}

.mkt-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(200, 163, 90, 0.15);
  color: var(--mkt-gold);
  margin-bottom: 1.25rem;
}

.mkt-section--dark .mkt-value__icon {
  background: rgba(200, 163, 90, 0.15);
  color: var(--mkt-gold);
}

.mkt-section:not(.mkt-section--dark) .mkt-value__icon {
  background: var(--mkt-cream);
  color: var(--mkt-gold-deep);
}

.mkt-value h3 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.mkt-value p {
  color: var(--mkt-ink-soft);
  font-size: 0.95rem;
}

.mkt-section--dark .mkt-value p {
  color: rgba(255, 255, 255, 0.78);
}

/* =========================================================================
   Stats (about)
   ========================================================================= */

.mkt-grid--stats {
  text-align: center;
}

.mkt-stat__number {
  font-family: var(--mkt-font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--mkt-gold);
  font-style: italic;
  line-height: 1;
}

.mkt-stat__label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================================
   Prose (about article)
   ========================================================================= */

.mkt-prose h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.mkt-prose h2:first-child {
  margin-top: 0;
}

.mkt-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mkt-ink-soft);
  margin-bottom: 1.25rem;
}

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

/* Borde 1px completo + fondo tintado (regla dura: nada de border-left
   grueso como acento decorativo). */
.mkt-testimonial {
  background: var(--mkt-cream);
  border-radius: var(--mkt-radius-lg);
  padding: 2rem;
  margin: 0;
  border: 1px solid var(--mkt-gold);
}

.mkt-testimonial p {
  font-family: var(--mkt-font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--mkt-navy);
  margin-bottom: 1.25rem;
}

.mkt-testimonial footer {
  font-size: 0.85rem;
  color: var(--mkt-muted);
  letter-spacing: 0.04em;
}

/* =========================================================================
   Gallery (weddings)
   ========================================================================= */

.mkt-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .mkt-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.mkt-gallery__tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--mkt-radius);
  background: linear-gradient(135deg, var(--mkt-cream) 0%, var(--mkt-cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mkt-gallery__tile--1,
.mkt-gallery__tile--5 {
  background: linear-gradient(135deg, #E9DEC5 0%, #C8A35A 100%);
}

.mkt-gallery__tile--3 {
  background: linear-gradient(135deg, #5F7488 0%, #0E2747 100%);
}

.mkt-gallery__placeholder {
  color: rgba(14, 39, 71, 0.4);
}

/* =========================================================================
   CTA band
   ========================================================================= */

.mkt-cta-band {
  background: var(--mkt-navy);
  color: var(--mkt-white);
  padding: 4rem 0;
  text-align: center;
}

.mkt-cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mkt-cta-band__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--mkt-white);
}

.mkt-cta-band__lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
}

.mkt-cta-band .mkt-btn {
  margin-top: 0.75rem;
}

/* =========================================================================
   Contact form
   ========================================================================= */

.mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .mkt-contact-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
  }
}

.mkt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mkt-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mkt-form__grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .mkt-form__grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.mkt-form__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mkt-navy);
}

.mkt-form__input {
  font-family: var(--mkt-font-sans);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--mkt-radius);
  border: 1px solid var(--mkt-line);
  background: var(--mkt-white);
  color: var(--mkt-ink);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mkt-form__input:focus {
  outline: none;
  border-color: var(--mkt-gold);
  box-shadow: 0 0 0 3px rgba(200, 163, 90, 0.2);
}

.mkt-form__input.has-error {
  border-color: #C0392B;
}

.mkt-form__textarea {
  resize: vertical;
  min-height: 8rem;
  font-family: var(--mkt-font-sans);
}

.mkt-form__error {
  color: #C0392B;
  font-size: 0.85rem;
}

.mkt-form__hint {
  color: var(--mkt-muted);
  font-size: 0.85rem;
  margin: 0;
}

.mkt-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--mkt-ink-soft);
  margin-top: 0.5rem;
  cursor: pointer;
}

.mkt-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.mkt-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.mkt-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-radius: var(--mkt-radius);
  margin-bottom: 1.5rem;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
}

.mkt-alert--error {
  color: #8B2517;
}

.mkt-alert > svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.mkt-alert p {
  font-size: 0.95rem;
}

/* Contact side panel */
.mkt-contact-side {
  background: var(--mkt-cream);
  border-radius: var(--mkt-radius-lg);
  padding: 2rem;
}

.mkt-contact-side__title {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.mkt-contact-side__block {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-contact-side__block:last-of-type {
  border-bottom: none;
}

.mkt-contact-side__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--mkt-white);
  color: var(--mkt-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mkt-contact-side__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mkt-muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.mkt-contact-side p {
  color: var(--mkt-ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.mkt-contact-side__note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mkt-line);
  font-size: 0.9rem;
  color: var(--mkt-ink-soft);
  font-style: italic;
  line-height: 1.6;
}

/* Thanks page */
.mkt-thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: var(--mkt-cream);
  color: var(--mkt-gold-deep);
}

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

.mkt-footer {
  background: var(--mkt-navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.mkt-footer__inner {
  max-width: var(--mkt-max-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .mkt-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 0 2rem 3rem;
  }
}

.mkt-footer__col h3 {
  color: var(--mkt-white);
}

.mkt-footer__title {
  font-family: var(--mkt-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.mkt-footer__tagline {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 38ch;
}

.mkt-footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}

.mkt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
}

.mkt-footer__col a {
  color: rgba(255, 255, 255, 0.78);
}

.mkt-footer__col a:hover {
  color: var(--mkt-gold);
}

.mkt-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .mkt-footer__bottom {
    padding: 1.5rem 2rem;
  }
}
