/* Marketing site: Home / About / Our Fees & The Process.
   Design uses a warm brown accent (#5a4a38), a light cream background,
   elegant Playfair Display serif for headings, and Inter for body copy. */

:root {
  --mk-text:       #1a1a1a;
  --mk-muted:      #5a5a5a;
  --mk-subtle:     #8a8a8a;
  --mk-bg:         #ffffff;
  --mk-bg-alt:     #faf8f4;
  --mk-bg-footer:  #e0ddd6;
  --mk-accent:     #5a4a38;   /* primary brown — buttons, CTAs */
  --mk-accent-dk:  #3f3425;   /* hover */
  --mk-accent-lt:  #9d8568;   /* hero circle tan */
  --mk-border:     #e5e0d8;
  --mk-link:       #6b5740;
}

* { box-sizing: border-box; }

.marketing-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--mk-text);
  /* Layered "color-shifting" wallpaper, inspired by the SprayFoam AI chat
     surface. Three large radial-gradient spots fade to transparent and blend
     into a soft top-to-bottom wash, so you get warm painterly fields of
     colour through every page rather than flat white. */
  background:
    radial-gradient(1000px 700px at 12% 8%,  rgba(231, 214, 185, 0.55) 0%, transparent 62%),
    radial-gradient(1100px 720px at 88% 18%, rgba(216, 222, 232, 0.50) 0%, transparent 58%),
    radial-gradient(900px  640px at 50% 95%, rgba(157, 133, 104, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, #fdfbf7 0%, #ffffff 45%, #faf8f4 100%);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fixed glow layer. Sits above the body wash, beneath content & the header.
   pointer-events:none keeps it from eating clicks. */
.marketing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(157, 133, 104, 0.10), transparent 45%),
    radial-gradient(circle at 82% 62%, rgba(176, 160, 130, 0.12), transparent 50%),
    radial-gradient(circle at 50% 92%, rgba(90,  74,  56,  0.06), transparent 45%);
  opacity: 0.85;
  animation: marketing-bg-drift 28s ease-in-out infinite alternate;
}

@keyframes marketing-bg-drift {
  0%   { transform: translate3d(0, 0, 0)         scale(1);    }
  50%  { transform: translate3d(-2%, 1.5%, 0)    scale(1.04); }
  100% { transform: translate3d(1.8%, -1.8%, 0)  scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-body::before { animation: none; }
}

/* Ensure real content (header, main, contact, footer) paints above the
   pseudo-element glow. */
.marketing-body > * { position: relative; z-index: 1; }

/* Style prose links only. Keeping this scoped to paragraphs/list-items/cells
   prevents the link color from leaking into buttons, nav, social icons, etc.
   The :not(.marketing-btn) guard is needed because CTA anchors (e.g. the
   About-page WhatsApp / Drop Us a Line buttons) sit inside <p> wrappers; the
   prose selector would otherwise repaint their text brown-on-brown. */
.marketing-body p a:not(.marketing-btn),
.marketing-body li a:not(.marketing-btn),
.marketing-body td a:not(.marketing-btn) { color: var(--mk-link); text-decoration: underline; }
.marketing-body p a:not(.marketing-btn):hover,
.marketing-body li a:not(.marketing-btn):hover,
.marketing-body td a:not(.marketing-btn):hover { color: var(--mk-accent); }
.marketing-body p  { margin: 0 0 1em; }

/* ── Serif heading utility ───────────────────────────────────────── */
.marketing-serif-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: normal;
  color: var(--mk-text);
  letter-spacing: 0;
  line-height: 1.2;
}

/* ── Uppercase small label ───────────────────────────────────────── */
.marketing-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--mk-text);
  margin: 0 0 1rem;
}
.marketing-label--tight { margin: 1.5rem 0 0.5rem; }

.marketing-muted    { color: var(--mk-muted); }
.marketing-fineprint{
  font-size: 11px;
  color: var(--mk-subtle);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── Header / primary nav ────────────────────────────────────────── */
/* Fixed, transparent header. Expanded at top of page, shrinks to a compact
   bar on scroll (JS adds `.is-scrolled`). A subtle white tint + backdrop blur
   engage only in the scrolled state so the nav stays readable over mixed
   white body content while still reading as "transparent". */
.marketing-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  /* Subtle frosted tint so the nav remains readable when it overlays the
     home banner photo (and still reads as "transparent" elsewhere). */
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: saturate(130%) blur(6px);
  backdrop-filter: saturate(130%) blur(6px);
  border-bottom: none;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.marketing-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: padding 0.25s ease;
}
.marketing-logo img {
  display: block;
  height: 64px;
  width: auto;
  transition: height 0.25s ease;
}
.marketing-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(15, 26, 51, 0.06);
}
.marketing-header.is-scrolled .marketing-header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.marketing-header.is-scrolled .marketing-logo img {
  height: 40px;
}

/* Pages without a hero need to clear the fixed header themselves. */
.marketing-body[data-page="about"] main,
.marketing-body[data-page="services"] main {
  padding-top: 112px;
}
.marketing-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.marketing-nav a {
  color: var(--mk-text);
  text-decoration: none;
  padding: 6px 0;
  font-weight: 500;
  transition: color 0.15s ease;
}
.marketing-nav a:hover,
.marketing-nav a.active {
  color: var(--mk-accent);
  border-bottom: 1px solid var(--mk-accent);
}
.marketing-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.marketing-phone {
  color: var(--mk-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.marketing-phone:hover { color: var(--mk-accent); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.marketing-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.marketing-btn--primary {
  background: var(--mk-accent);
  color: #fff;
}
.marketing-btn--primary:hover { background: var(--mk-accent-dk); }
.marketing-btn--ghost {
  background: transparent;
  color: var(--mk-accent);
  border-color: var(--mk-accent);
}
.marketing-btn--ghost:hover { background: var(--mk-accent); color: #fff; }
.marketing-btn--sm  { padding: 8px 16px; font-size: 12px; }
.marketing-btn--lg  { padding: 14px 34px; font-size: 13px; }
.marketing-btn--pill{ border-radius: 999px; }

/* ── Shared section wrapper ──────────────────────────────────────── */
.marketing-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Hero (home): slogan + Book Now, floats under the fixed header ─── */
.marketing-hero {
  position: relative;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 32px 120px;
  overflow: hidden;
  /* Transparent so the body wallpaper's color spots shine through the hero. */
  background: transparent;
}

.marketing-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--mk-text);
}
.marketing-hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: marketing-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.marketing-hero-title span:nth-child(1) { animation-delay: 0.15s; }
.marketing-hero-title span:nth-child(2) { animation-delay: 0.35s; }
.marketing-hero-title span:nth-child(3) {
  animation-delay: 0.55s;
  color: var(--mk-accent);
  font-style: italic;
}

.marketing-hero-lede {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--mk-muted);
  margin: 0 auto 44px;
  max-width: 52ch;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(24px);
  animation: marketing-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.75s forwards;
}

.marketing-hero-cta {
  padding: 16px 40px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(24px);
  animation: marketing-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.95s forwards;
}

.marketing-hero-chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--mk-muted);
  opacity: 0;
  animation:
    marketing-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 1.3s forwards,
    marketing-bounce 2s ease-in-out 2.2s infinite;
  text-decoration: none;
}
.marketing-hero-chevron:hover { color: var(--mk-accent); }

@keyframes marketing-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marketing-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* Respect users who ask for reduced motion. */
@media (prefers-reduced-motion: reduce) {
  .marketing-hero-title span,
  .marketing-hero-lede,
  .marketing-hero-cta,
  .marketing-hero-chevron {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 640px) {
  .marketing-hero { padding: 120px 20px 80px; min-height: 80vh; }
}

/* ── Hero (banner variant): full-bleed photo + CTA ───────────────── */
.marketing-hero--banner {
  /* Banner height — image reaches edge-to-edge behind the fixed header.
     Kept taller than 62vh so the 1920px hero photo isn't over-cropped. */
  min-height: 78vh;
  height: clamp(640px, 78vh, 920px);
  padding: 0;
  background: #1a1611; /* fallback while the image loads */
}
.marketing-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor the crop near the top of the photo so the subject stays in frame. */
  object-position: center 15%;
  z-index: 0;
  transform: scale(1.0);
  opacity: 0;
  /* Ken Burns reversed: initial frame is the *most* pulled back, and the
     image slowly pushes in — so first impression shows the widest view. */
  animation:
    marketing-hero-fade 1.4s ease-out 0.1s forwards,
    marketing-hero-kenburns 22s ease-out 0.1s forwards;
  will-change: transform, opacity;
}
.marketing-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Darker at top (keeps white nav readable) and bottom (button + chevron),
     lighter in the middle so the photo breathes. */
  background:
    linear-gradient(180deg,
      rgba(10, 8, 5, 0.55) 0%,
      rgba(10, 8, 5, 0.18) 28%,
      rgba(10, 8, 5, 0.10) 55%,
      rgba(10, 8, 5, 0.55) 100%);
  opacity: 0;
  animation: marketing-hero-fade 1.2s ease-out 0.25s forwards;
}
.marketing-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* Extra top padding biases the button visually downward into the image,
     away from the fixed header. */
  padding: 140px 32px 96px;
}
.marketing-hero--banner .marketing-hero-cta {
  /* Bigger, brighter on photo; replay the rise so it lands after the image settles. */
  padding: 18px 48px;
  font-size: 14px;
  letter-spacing: 0.18em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: marketing-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s forwards;
}
.marketing-hero--banner .marketing-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}
.marketing-hero-chevron--onimg {
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
  animation:
    marketing-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 1.5s forwards,
    marketing-bounce 2s ease-in-out 2.4s infinite;
}
.marketing-hero-chevron--onimg:hover { color: #fff; }

@keyframes marketing-hero-fade {
  to { opacity: 1; }
}
@keyframes marketing-hero-kenburns {
  to { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-hero-img,
  .marketing-hero-overlay {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 640px) {
  .marketing-hero--banner { min-height: 72vh; height: clamp(520px, 72vh, 720px); }
  .marketing-hero-content { padding: 110px 20px 80px; }
  .marketing-hero--banner .marketing-hero-cta { padding: 14px 36px; }
}

/* ── Generic section titles ──────────────────────────────────────── */
.marketing-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 36px;
}

/* ── Two-column feature row (home: benefits, what-we-provide) ───── */
/* Sections are transparent so the body's fixed gradient wallpaper reads
   continuously across the whole page. Hairline dividers below handle the
   visual separation that the old cream tint was providing. */
.marketing-section {
  padding: 80px 0;
  border-top: 1px solid var(--mk-border);
}
.marketing-section--alt { background: transparent; }
.marketing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .marketing-split { grid-template-columns: 1fr; gap: 32px; }
}
.marketing-split--reverse .marketing-split-visual { order: 2; }
@media (max-width: 860px) {
  .marketing-split--reverse .marketing-split-visual { order: 0; }
}
.marketing-split-visual { display: flex; justify-content: center; }
.marketing-split-img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
}

/* Stretch variant: visual column matches the height of its sibling text column.
   Pair `.marketing-split--stretch` on the row with `.marketing-split-img--fill`
   on the image so it grows to fill that height. */
.marketing-split--stretch { align-items: stretch; }
.marketing-split--stretch .marketing-split-visual { align-items: stretch; }
.marketing-split-img--fill {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}
.marketing-split-body p { color: var(--mk-text); }
.marketing-split-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1rem 0 1.25rem;
}
.marketing-split-body ul li { margin: 0.35rem 0; }
.marketing-split-body em   { font-style: italic; }

/* Image placeholder block. Replace with real <img> tags when assets land. */
.marketing-placeholder {
  border: 2px dashed var(--mk-border);
  background: #fafafa;
  color: var(--mk-subtle);
  padding: 60px 24px;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  border-radius: 6px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketing-placeholder--tall { min-height: 420px; }
.marketing-placeholder--wide { min-height: 320px; }

/* ── Exploded view gallery (home) ───────────────────────────────── */
.marketing-gallery {
  padding: 64px 0 80px;
  border-top: 1px solid var(--mk-border);
}
.marketing-gallery .marketing-section-title { margin-bottom: 32px; }
.marketing-gallery-main {
  max-width: 920px;
  margin: 0 auto;
}
.marketing-gallery-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}
.marketing-gallery-caption {
  text-align: center;
  margin-top: 12px;
  color: var(--mk-muted);
  font-size: 14px;
  font-style: italic;
}
.marketing-gallery-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.marketing-gallery-thumb {
  width: 96px;
  height: 80px;
  padding: 4px;
  border: 1px solid var(--mk-border);
  background: #f6f3ec;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.05s ease;
}
.marketing-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.marketing-gallery-thumb:hover { border-color: var(--mk-accent-lt); }
.marketing-gallery-thumb.is-active {
  border-color: var(--mk-accent);
  box-shadow: 0 0 0 1px var(--mk-accent) inset;
}

/* ── Article-style pages (about, services) ──────────────────────── */
.marketing-article {
  padding: 72px 0 40px;
}
.marketing-article-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 34px;
  margin: 0 0 48px;
  color: var(--mk-text);
}
.marketing-article-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 60px;
  align-items: start;
}
.marketing-article-layout--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.marketing-article-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .marketing-article-layout { grid-template-columns: 1fr; gap: 32px; }
}
.marketing-article-section { margin: 0 0 40px; }
.marketing-article-section h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--mk-text);
}
.marketing-article-section p {
  color: var(--mk-text);
  line-height: 1.65;
}
.marketing-article-section a { color: var(--mk-link); }
.marketing-article-rule {
  margin: 32px 0 56px;
  color: var(--mk-muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
}

/* ── Contact section ─────────────────────────────────────────────── */
.marketing-contact {
  background: transparent;
  padding: 72px 0 48px;
  border-top: 1px solid var(--mk-border);
}
.marketing-contact-heading {
  text-align: center;
  font-size: 34px;
  margin: 0 0 48px;
}
.marketing-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 860px) {
  .marketing-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.marketing-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.marketing-contact-form input,
.marketing-contact-form textarea {
  background: #f2efe8;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  color: var(--mk-text);
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.marketing-contact-form input:focus,
.marketing-contact-form textarea:focus {
  outline: none;
  border-color: var(--mk-accent);
  background: #fff;
}
.marketing-contact-form button {
  margin-top: 8px;
  align-self: stretch;
}
.marketing-field { display: flex; flex-direction: column; gap: 4px; }
.marketing-contact-form ul.errorlist {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #b42318;
  font-size: 12px;
}
.marketing-contact-status {
  padding: 10px 14px;
  border-radius: 3px;
  font-size: 14px;
  margin-bottom: 4px;
}
.marketing-contact-status--success {
  background: #e7f6ec;
  border: 1px solid #b7d9c4;
  color: #1c5b34;
}
.marketing-contact-status--error {
  background: #fef3f2;
  border: 1px solid #fda29b;
  color: #b42318;
}
.marketing-contact-address { color: var(--mk-text); margin: 0 0 0.4rem; }

.marketing-hours {
  border-collapse: collapse;
  font-size: 14px;
  color: var(--mk-text);
  margin: 0 0 1rem;
}
.marketing-hours td {
  padding: 2px 20px 2px 0;
  vertical-align: top;
}
.marketing-hours td:first-child {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mk-muted);
}
.marketing-hours tr.today td { font-weight: 600; color: var(--mk-text); }

.marketing-social { margin-top: 56px; text-align: center; }
.marketing-social-heading { font-size: 26px; margin: 0 0 16px; }
.marketing-social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.marketing-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mk-accent);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--mk-border);
  transition: background 0.15s ease, color 0.15s ease;
}
.marketing-social-icon:hover { background: var(--mk-accent); color: #fff; }

/* Map (about page). Embedded Google Map iframe with a floating
   "Get Directions" button pinned to the top. */
.marketing-map {
  position: relative;
  width: 100%;
  min-height: 600px;
  border-radius: 3px;
  overflow: hidden;
  background: #f4f2ec;
  box-shadow: 0 1px 2px rgba(15, 26, 51, 0.05);
}
/* Shift the iframe up so the info card Google stamps at the top-left scrolls
   off the visible area entirely. We extend height to match the offset so the
   pin stays roughly centered in the visible window. */
.marketing-map-frame {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  border: 0;
}
.marketing-map-directions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(15, 26, 51, 0.18);
}

/* ── About page: sliding drawer (info pane ↔ contact form) ──────── */
.marketing-about-drawer {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.marketing-about-drawer .drawer-info,
.marketing-about-drawer .drawer-form {
  position: absolute;
  inset: 0;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity   0.3s ease;
  will-change: transform, opacity;
}
.marketing-about-drawer .drawer-info {
  transform: translateX(0);
  opacity: 1;
}
.marketing-about-drawer .drawer-form {
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
}
.marketing-about-drawer.show-form .drawer-info {
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
}
.marketing-about-drawer.show-form .drawer-form {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.drawer-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--mk-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  z-index: 2;
  transition: color 0.15s ease, background 0.15s ease;
}
.drawer-close-btn:hover {
  color: var(--mk-text);
  background: rgba(90, 74, 56, 0.08);
}
@media (prefers-reduced-motion: reduce) {
  .marketing-about-drawer .drawer-info,
  .marketing-about-drawer .drawer-form { transition: opacity 0.2s ease; }
}

/* ── Footer ──────────────────────────────────────────────────────── */
.marketing-footer {
  background: var(--mk-bg-footer);
  padding: 40px 32px;
  color: var(--mk-text);
  font-size: 13px;
  text-align: center;
}
.marketing-footer-inner p { margin: 0.2rem 0; }
.marketing-footer-company { font-weight: 600; }
.marketing-footer-copyright {
  margin-top: 18px;
  color: var(--mk-muted);
  font-size: 12px;
}

/* ── Small-screen header tidy-up ─────────────────────────────────── */
@media (max-width: 860px) {
  .marketing-header-inner {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
  }
  .marketing-nav {
    grid-column: 1 / -1;
    order: 3;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
  }
  .marketing-phone { display: none; }
  .marketing-section { padding: 56px 0; }
  .marketing-section-title { font-size: 28px; }
}
