/* =========================================================
   Mazel Services — Brand stylesheet
   Palette:
     --cream    #FFF6E6   main background
     --white    #FFFFFF
     --butter   #FFD76A   primary accent
     --sky      #DCEAF7
     --beige    #F2E0D6
     --warmGray #E6E0D6
     --ink      #1F1A14   warm dark text
     --inkSoft  #5B5042
   ========================================================= */

:root {
  --cream: #FFF6E6;
  --cream-2: #FBEFD8;
  --white: #FFFFFF;
  --butter: #FFD76A;
  --butter-dark: #E8B940;
  --sky: #DCEAF7;
  --beige: #F2E0D6;
  --warm-gray: #E6E0D6;
  --ink: #1F1A14;
  --ink-soft: #5B5042;
  --ink-mute: #8C8174;
  --line: rgba(31, 26, 20, 0.10);

  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(31, 26, 20, 0.05);
  --shadow: 0 12px 40px rgba(31, 26, 20, 0.08);
  --shadow-lg: 0 30px 80px rgba(31, 26, 20, 0.12);

  --container: 1200px;
  --pad: clamp(20px, 4vw, 48px);

  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "Montserrat", "Inter", sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography ---------- */
.display, h1.display, h2.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 0.4em;
  color: var(--ink);
  font-size: clamp(34px, 5.6vw, 68px);
}
.display em { font-style: italic; color: var(--butter-dark); font-weight: 500; }
.display-sm {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.55rem;
  margin: 0 0 0.4em;
  letter-spacing: -0.005em;
}
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.25em;
}
h5 {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--butter-dark);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .ico { width: 18px; height: 18px; flex: 0 0 18px; }
.btn-primary {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(255, 215, 106, 0.45);
}
.btn-primary:hover { background: var(--butter-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 26, 20, 0.22);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-lg { padding: 18px 30px; font-size: 1rem; }

.link-arrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--butter-dark);
  margin-top: 8px;
  transition: transform .15s ease, color .15s ease;
}
.link-arrow:hover { color: var(--ink); transform: translateX(2px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 230, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand-logo { height: 38px; width: auto; }
.brand-wordmark {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.site-nav a:hover { color: var(--butter-dark); }
.header-cta { flex: 0 0 auto; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  flex: 0 0 auto;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  padding: 6px 4px;
  cursor: pointer;
  transition: color .15s ease;
}
.lang-btn:hover { color: var(--butter-dark); }
.lang-btn.is-active { color: var(--ink); }
.lang-btn.is-active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--butter);
  margin-top: 2px;
  border-radius: 2px;
}
.lang-divider {
  color: var(--ink-mute);
  font-weight: 300;
  user-select: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 38px; height: 38px;
  border: 0; background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  position: absolute;
  left: 8px;
  transition: transform .2s ease;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 24px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,246,230,0.55) 0%, rgba(255,246,230,0.85) 60%, rgba(255,246,230,1) 100%),
    linear-gradient(105deg, rgba(255,246,230,0.92) 0%, rgba(255,246,230,0.55) 55%, rgba(255,246,230,0.2) 100%);
}
.hero-inner { position: relative; max-width: 820px; }
.hero h1.display { font-size: clamp(40px, 6.5vw, 84px); margin-bottom: 0.3em; }
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 56ch;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   SECTION basics
   ========================================================= */
.section {
  padding: clamp(72px, 10vw, 130px) 0;
}
.section-alt { background: var(--white); }
.section-soft { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin: 0 auto 56px; text-align: center; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--warm-gray); }
.service-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.service-card:hover .service-photo img { transform: scale(1.04); }
.service-body { padding: 28px 28px 32px; flex: 1; }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; }

.service-card--icon .service-icon {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-2), var(--beige));
}
.service-card--icon .service-icon svg {
  width: 84px; height: 84px;
  color: var(--butter-dark);
}
.service-card--cta {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  padding: 0;
  display: flex;
  align-items: stretch;
}
.service-card--cta .service-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--cta h3 { color: var(--cream); }
.service-card--cta p { color: rgba(255, 246, 230, 0.78); }
.service-card--cta .eyebrow { color: var(--butter); }
.service-card--cta .link-arrow { color: var(--butter); }
.service-card--cta .link-arrow:hover { color: var(--white); }

/* =========================================================
   TWO-COLUMN (The Mazel Standard)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.two-col-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.two-col-media img { width: 100%; height: 100%; object-fit: cover; }
.badge-bee {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--butter);
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: var(--shadow-sm);
}
.process-list { display: grid; gap: 22px; margin-top: 32px; }
.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.step-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 2rem;
  color: var(--butter-dark);
  line-height: 1;
  padding-top: 4px;
  border-top: 2px solid var(--butter);
  display: inline-block;
}
.process-list h4 { color: var(--ink); }
.process-list p { margin: 0; color: var(--ink-soft); }

/* =========================================================
   PRESS CARD
   ========================================================= */
.press-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,215,106,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.press-source {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--butter-dark);
  margin-bottom: 18px;
}
.press-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.press-excerpt { max-width: 60ch; }
.press-tag {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
}
.press-tag span {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* =========================================================
   DUAL CTA
   ========================================================= */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.cta-card--alt { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cta-card--alt p { color: rgba(255, 246, 230, 0.8); }
.cta-card--alt .eyebrow { color: var(--butter); }
.cta-card--alt .display-sm { color: var(--cream); }
.cta-card--alt .btn-dark {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(255, 215, 106, 0.18);
}
.cta-card--alt .btn-dark:hover { background: var(--white); color: var(--ink); }
.cta-phone {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.cta-card--alt .cta-phone { color: rgba(255, 246, 230, 0.72); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 246, 230, 0.78);
  padding: 80px 0 30px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  align-items: flex-start;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(1.02);
}
.footer-brand p {
  color: rgba(255, 246, 230, 0.7);
  max-width: 36ch;
  font-size: 0.95rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 { color: var(--butter); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 246, 230, 0.78);
  font-size: 0.95rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--butter); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 246, 230, 0.12);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 246, 230, 0.55);
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  z-index: 100;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  transition: transform .2s ease;
}
.wa-floating:hover { transform: scale(1.06); }
.wa-floating svg { width: 30px; height: 30px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col-media { aspect-ratio: 4/3; max-height: 480px; }
  .dual-cta { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .press-card { grid-template-columns: 1fr; }
  .press-tag { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px var(--pad);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .25s ease;
    margin: 0;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: block; }
  .hero { min-height: 84vh; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-trust { gap: 14px; }
}

@media (max-width: 480px) {
  .brand-wordmark { display: none; }
  .header-cta { padding: 10px 14px; font-size: 0.75rem; }
  .header-cta .ico { display: none; }
  .wa-floating { width: 54px; height: 54px; }
  .lang-switch { margin-left: auto; gap: 4px; }
  .lang-btn { font-size: 0.75rem; padding: 4px 2px; }
}
