/* ============================================
   MARINA MIKHAEL — MARKETING STRATEGIST
   Palette lifted from marina-mikheal-website(1).html:
     --ink            #2b1420   (onyx-magenta body text)
     --ink-soft       #5c4048
     --ivory          #faf7f5   (warm cream background)
     --ivory-dim      #f7d9e4   (soft pink surface)
     --magenta        #b41a58   (primary)
     --magenta-deep   #8c1345
     --gold           #fdc032   (accent)
     --gold-soft      #ffd873
     --stone          #93707d   (muted text)
   Display: Poppins · Body: Inter
   ============================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink:           #2b1420;
  --ink-soft:      #5c4048;
  --ivory:         #faf7f5;
  --ivory-dim:     #f7d9e4;
  --magenta:       #b41a58;
  --magenta-deep:  #8c1345;
  --gold:          #fdc032;
  --gold-soft:     #ffd873;
  --plum:          #8c1345;
  --stone:         #93707d;
  --line:          rgba(180, 26, 88, 0.14);

  --gold-soft-alt: var(--gold-soft);

  --serif: "Poppins", "Montserrat", sans-serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; position: relative; }

@media (max-width: 560px) { .wrap { padding: 0 20px; } section { padding: 64px 0; } }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 247, 245, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 247, 245, 0.96);
  box-shadow: 0 12px 28px -20px rgba(139, 19, 69, 0.35);
}

.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }

.logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--magenta);
  text-transform: lowercase;
}

.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a.is-current::after {
  right: 0;
}

.nav-links a.active,
.nav-links a.is-current { color: var(--ink); }

/* Make the active/current nav link more visible across pages */
.nav-links a.is-current { font-weight: 700; }

/* Mobile drawer — active link */
.mobile-menu a.is-current {
  color: var(--magenta);
  font-weight: 700;
  border-bottom-color: var(--magenta);
}

.nav-cta {
  border: 1px solid var(--magenta);
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--magenta);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--magenta); color: var(--ivory); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  background: var(--ivory);
  border-radius: 50%;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: absolute; left: 50%;
  transition: transform .3s ease;
}
.nav-toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before { content: ""; top: -6px; transform: translateX(-50%); }
.nav-toggle span::after  { content: ""; top:  6px; transform: translateX(-50%); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
  z-index: 60;
  display: flex; flex-direction: column;
  padding: 90px 32px 32px;
  box-shadow: -20px 0 60px -20px rgba(139, 19, 69, 0.35);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 14px 0; font-family: var(--serif); font-size: 1.3rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn-primary { margin-top: 24px; text-align: center; }
.mobile-menu__close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 50%; background: var(--ivory-dim); display: grid; place-items: center; font-size: 1.4rem; color: var(--ink); }
.scrim { position: fixed; inset: 0; background: rgba(43, 20, 32, 0.35); opacity: 0; pointer-events: none; transition: opacity .4s ease; z-index: 55; }
.scrim.is-open { opacity: 1; pointer-events: auto; }

/* ============================================
   EYEBROW
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta-deep);
  background: var(--ivory-dim);
  border: 1px solid rgba(180, 26, 88, 0.18);
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(253, 192, 50, 0.25);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  color: var(--ivory);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px -14px rgba(139, 19, 69, 0.55);
  transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -12px rgba(139, 19, 69, 0.6);
  filter: brightness(1.06);
}

.btn-text {
  text-decoration: none;
  color: var(--magenta);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.btn-text:hover { color: var(--magenta-deep); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover { background: #1ebc59; transform: translateY(-2px); }
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 480px at 88% 8%, rgba(180, 26, 88, 0.07), transparent 60%),
    radial-gradient(520px 420px at 6% 92%, rgba(253, 192, 50, 0.10), transparent 60%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-top: 76px;
  padding-bottom: 64px;
  min-height: 640px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}

.hero__title .accent {
  position: relative;
  white-space: nowrap;
}

.hero__title .accent svg {
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.3em;
  overflow: visible;
}

.hero__title .accent path {
  stroke: var(--gold);
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw 1.1s 0.5s cubic-bezier(.65,0,.35,1) forwards;
}

@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Hero figure */
.hero-figure {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 92%;
  height: 92%;
  right: -6%;
  top: 4%;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  border-radius: 14px 14px 4px 60px;
  opacity: 0.92;
}

.hero-figure::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 46%;
  height: 30%;
  left: -6%;
  bottom: -8%;
  background: var(--gold);
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.85;
}

.hero-figure .frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px 14px 4px 60px;
  overflow: hidden;
  box-shadow: 0 34px 70px -22px rgba(139, 19, 69, 0.45);
}

.hero-figure .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-figure .tag {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: -28px;
  background: var(--ink);
  color: var(--ivory);
  padding: 16px 22px;
  border-radius: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 18px 34px -12px rgba(23, 20, 15, 0.5);
  max-width: 220px;
  border: 1px solid rgba(253, 192, 50, 0.35);
}

.hero-figure .tag span {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 30px; }
  .hero-figure { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-figure .tag { left: 0; bottom: -20px; }
  .hero-ctas .btn-primary { flex: 1 1 100%; }
}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow { justify-content: center; }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-head p {
  color: var(--stone);
  font-size: 1.02rem;
  margin: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: 14px 14px 4px 60px;
  overflow: hidden;
  aspect-ratio: 5/5.4;
  box-shadow: 0 30px 60px -20px rgba(180, 26, 88, 0.28);
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--magenta);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 16px;
  line-height: 1.7;
}

.about-copy p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .about-section .wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; margin: 0 auto; }
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--ivory-dim); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid.grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid.grid-5 .service-card:nth-child(4),
.service-grid.grid-5 .service-card:nth-child(5) {
  grid-column: span 1;
}

.service-card {
  background: var(--ivory);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(180, 26, 88, 0.08);
  box-shadow: 0 18px 40px -26px rgba(139, 19, 69, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -22px rgba(139, 19, 69, 0.42);
  border-color: rgba(253, 192, 50, 0.5);
}

.service-card .num {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--magenta);
  font-size: 1.7rem;
  margin-bottom: 18px;
  display: block;
  opacity: 0.9;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--magenta-deep);
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.6;
}

.service-card .includes {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .includes li {
  font-size: 0.78rem;
  color: var(--magenta-deep);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 900px) { .service-grid, .service-grid.grid-5 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) {
  .service-grid, .service-grid.grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) { .service-grid.grid-5 { grid-template-columns: 1fr; } }

/* ============================================
   WHY
   ============================================ */
.why-section { background: var(--ivory); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 30px 28px;
  background: var(--ivory);
  border: 1px solid rgba(180, 26, 88, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 34px -26px rgba(139, 19, 69, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -22px rgba(139, 19, 69, 0.38);
}

.why-item .mark {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.why-item h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--magenta-deep);
  font-family: var(--sans);
}

.why-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================
   APPROACH
   ============================================ */
.approach-section.services { background: var(--magenta); color: var(--ivory); }
.approach-section.services .section-head h2,
.approach-section.services h2 { color: var(--ivory); }
.approach-section.services .section-head p { color: #f6d9e4; }
.approach-section.services .eyebrow {
  color: var(--gold-soft);
  background: rgba(255,255,255,0.10);
  border-color: rgba(253,192,50,0.4);
}
.approach-section.services .eyebrow::before { background: var(--gold); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 36px 26px;
  background: var(--ivory);
  border-radius: 14px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 34px -26px rgba(139, 19, 69, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -22px rgba(139, 19, 69, 0.38);
}

.step-card .step-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 2rem;
  color: var(--magenta);
  opacity: 0.35;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.step-card h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--magenta-deep);
  font-family: var(--sans);
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

@media (max-width: 960px) { .approach-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .approach-steps { grid-template-columns: 1fr; } }

/* ============================================
   BACKGROUND
   ============================================ */
.background-section { background: var(--ivory); }
.background-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.bg-block h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: var(--magenta);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}

.bg-block ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.bg-block li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.bg-block li:last-child { border-bottom: none; }

.bg-block li small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--stone);
  margin-top: 4px;
}

.bg-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 60ch;
  margin: 12px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) { .background-section .wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================
   AI BAND
   ============================================ */
.ai-band {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  color: var(--ivory);
}

.ai-band .wrap { max-width: 800px; text-align: center; }

.ai-band .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
  background: rgba(255,255,255,0.10);
  border-color: rgba(253,192,50,0.4);
}
.ai-band .eyebrow::before { background: var(--gold); }

.ai-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}

.ai-band p {
  color: #f6d9e4;
  font-size: 1.02rem;
  margin: 0 0 16px;
  line-height: 1.7;
}

.ai-band .statement {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 217, 228, 0.18);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--magenta);
  color: var(--ivory);
  text-align: center;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.15;
}

.final-cta p {
  color: #f6d9e4;
  max-width: 55ch;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.final-cta .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.final-cta .btn-primary { background: var(--gold); color: var(--magenta-deep); }
.final-cta .btn-primary:hover { background: var(--gold-soft); filter: none; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--ivory-dim); }

.contact-section .wrap { max-width: 720px; text-align: center; }

.contact-section .eyebrow { justify-content: center; }

.contact-section h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 0 0 14px;
  color: var(--magenta);
}

.contact-section p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  padding: 32px 20px;
  background: var(--ivory-dim);
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: var(--ivory);
  border-color: rgba(253, 192, 50, 0.5);
  box-shadow: 0 22px 42px -22px rgba(139, 19, 69, 0.35);
}

.contact-card .icon {
  width: 40px; height: 40px;
  margin: 0 auto 14px;
  color: var(--magenta);
}

.contact-card .icon svg { width: 100%; height: 100%; }

.contact-card h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 6px;
  font-weight: 600;
  font-family: var(--sans);
}

.contact-card span {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  word-break: break-word;
}

@media (max-width: 960px) { .contact-cards { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 56px 0 40px;
  background: var(--magenta-deep);
  color: var(--ivory);
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .logo { color: var(--ivory); }
.site-footer .logo span { color: var(--gold); }

.site-footer .foot-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .foot-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f0c9d6;
  transition: color 0.25s ease;
}

.site-footer .foot-links a:hover { color: var(--gold); }

.site-footer .copy {
  font-size: 0.85rem;
  color: #d68fa7;
}

@media (max-width: 700px) {
  .site-footer .wrap {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Stagger */
.service-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.service-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.service-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.service-grid .reveal:nth-child(5) { transition-delay: 0.32s; }

.why-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.32s; }

.approach-steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.approach-steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.approach-steps .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============================================
   STICKY WHATSAPP
   ============================================ */
.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.sticky-whatsapp:hover { transform: scale(1.08); }
.sticky-whatsapp svg { width: 28px; height: 28px; color: #fff; }

@media (max-width: 700px) {
  .sticky-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(560px 380px at 88% 12%, rgba(180, 26, 88, 0.07), transparent 60%),
    radial-gradient(440px 320px at 6% 88%, rgba(253, 192, 50, 0.08), transparent 60%),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap { max-width: 820px; }

.page-hero .eyebrow { justify-content: flex-start; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.page-hero h1 .accent { color: var(--magenta); }

.page-hero p {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 700px) { .page-hero { padding: 56px 0 40px; } }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
  list-style: none;
  padding: 0;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before {
  content: "/";
  color: var(--line);
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--magenta); transition: color 0.2s ease; }
.breadcrumbs a:hover { color: var(--magenta-deep); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 700; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
  text-align: left;
}

.contact-info-block h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--magenta);
  letter-spacing: -0.01em;
}

.contact-info-block p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 24px;
}

.contact-info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-block ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
}

.contact-info-block ul li .icon {
  width: 22px; height: 22px;
  color: var(--magenta);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-block ul li .icon svg { width: 100%; height: 100%; }

.contact-info-block ul li .label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.contact-info-block ul li a {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
}
.contact-info-block ul li a:hover { color: var(--magenta); }

.contact-form {
  background: var(--ivory-dim);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 18px 40px -28px rgba(139, 19, 69, 0.3);
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.contact-form > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 26px;
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238c1345' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
  cursor: pointer;
}

.field textarea { min-height: 130px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.field .field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--stone);
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  margin-top: 8px;
  font-family: var(--sans);
}

.form-note {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 14px;
  line-height: 1.5;
}

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(253, 192, 50, 0.18);
  border: 1px solid rgba(180, 26, 88, 0.25);
  color: var(--magenta-deep);
}
.form-status.is-error {
  display: block;
  background: rgba(180, 26, 88, 0.10);
  border: 1px solid rgba(180, 26, 88, 0.35);
  color: var(--magenta-deep);
}

@media (max-width: 960px) {
  .contact-form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 22px; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  background: var(--ivory);
}

.faq .section-head { margin-bottom: 40px; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--ivory-dim);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover { border-color: rgba(180, 26, 88, 0.25); }

.faq-item[open] {
  border-color: var(--magenta);
  box-shadow: 0 18px 36px -24px rgba(139, 19, 69, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--magenta); }

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--magenta);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--magenta);
  border-radius: 50%;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(560px 380px at 88% 12%, rgba(180, 26, 88, 0.07), transparent 60%),
    radial-gradient(440px 320px at 6% 88%, rgba(253, 192, 50, 0.08), transparent 60%),
    var(--ivory);
  padding: 120px 0;
}

.error-page .wrap { max-width: 620px; }

.error-page .error-code {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--magenta);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-page h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ink);
}

.error-page p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 32px;
}

.error-page .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PREVIEW LINK (used on Home to tease other pages)
   ============================================ */
.preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--magenta);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-top: 24px;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.preview-link::after {
  content: "→";
  transition: transform 0.25s ease;
}
.preview-link:hover { color: var(--magenta-deep); gap: 12px; }
.preview-link:hover::after { transform: translateX(3px); }

/* ============================================
   ABOUT PREVIEW (Home page)
   ============================================ */
.about-preview .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-preview .about-photo {
  position: relative;
  border-radius: 14px 14px 4px 60px;
  overflow: hidden;
  aspect-ratio: 5/5.4;
  box-shadow: 0 30px 60px -20px rgba(180, 26, 88, 0.28);
}
.about-preview .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.about-preview-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--magenta);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.about-preview-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

@media (max-width: 960px) {
  .about-preview .wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-preview .about-photo { max-width: 420px; margin: 0 auto; }
}
