/* ================================================================
   MONA G. — GLOBAL STYLES
   Warm, minimal, confident
   ================================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #2c2420;
  --dark: #3d332c;
  --mid: #7a6e63;
  --light: #a89d93;
  --border: #e4ddd6;
  --off-white: #faf7f4;
  --warm-bg: #f5f0eb;
  --white: #ffffff;
  --accent: #b8936e;
  --accent-light: #d4b896;
  --accent-hover: #a67e5a;
  --accent-soft: rgba(184,147,110,0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITIES ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600; line-height: 1.15; margin-bottom: 16px;
}

.section-text {
  font-size: 0.95rem; color: var(--mid); line-height: 1.7; max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 0.9rem; font-weight: 500;
  padding: 14px 28px; border-radius: 8px; border: none;
  cursor: pointer; transition: all 0.2s;
}
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: var(--dark); transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--black); border: 1.5px solid var(--border); }
.btn--secondary:hover { border-color: var(--black); transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

.btn svg { width: 16px; height: 16px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,36,32,0.06); }

.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav__logo svg {
  height: 30px; width: auto;
}

.nav__links {
  display: flex; gap: 24px; list-style: none; flex-shrink: 0;
}
.nav__links a {
  font-size: 0.8rem; font-weight: 500; color: var(--mid); transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--black); }

.nav__cta {
  font-size: 0.8rem; font-weight: 500; padding: 6px 16px;
  background: var(--accent); color: var(--white); border-radius: 6px; transition: background 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.nav__cta:hover { background: var(--accent-hover); }

/* ===== SITE BRAND (big centered logo) ===== */
.site-brand {
  padding: 100px 0 40px; text-align: center;
}
.site-brand__logo svg {
  height: 88px; width: auto; color: var(--black);
}
.site-brand__name {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid); margin-top: 4px;
}
.site-brand__divider {
  width: 1px; height: 48px; background: var(--black); margin: 28px auto 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0; background: var(--off-white); border-top: 1px solid var(--border);
}
.footer__inner { display: flex; justify-content: space-between; align-items: center; }
.footer__text { font-size: 0.78rem; color: var(--light); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--light); font-size: 0.78rem; gap: 6px; background: var(--warm-bg);
}
.img-placeholder svg { width: 32px; height: 32px; opacity: 0.3; }
.img-placeholder--dark { color: var(--mid); background: #e4ddd6; }

/* ===== PAGE HERO (reusable) ===== */
.page-hero {
  padding: 20px 0 60px;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.05rem; color: var(--mid); line-height: 1.7; max-width: 560px; margin: 0 auto;
}

/* ===== BEFORE/AFTER SLIDER (home only) ===== */
.ba-slider {
  position: relative; width: 100%; overflow: hidden; cursor: ew-resize;
}
.ba-slider .ba-before,
.ba-slider .ba-after {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ba-slider .ba-before { background: var(--warm-bg); }
.ba-slider .ba-after { background: var(--border); clip-path: inset(0 0 0 50%); }
.ba-slider .ba-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); z-index: 2; pointer-events: none;
}
.ba-slider .ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; background: var(--white); border-radius: 50%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14); pointer-events: none;
}
.ba-slider .ba-handle svg { width: 22px; height: 22px; }
.ba-tag {
  position: absolute; z-index: 4;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
}
.ba-tag--before { bottom: 20px; left: 20px; background: rgba(44,36,32,0.55); color: #fff; }
.ba-tag--after { bottom: 20px; right: 20px; background: rgba(255,255,255,0.9); color: var(--black); }

/* ===== CTA BAND (warm version) ===== */
.cta-band {
  padding: 72px 0; background: var(--warm-bg); text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band__title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: 12px; color: var(--black);
}
.cta-band__sub {
  font-size: 0.95rem; color: var(--mid); margin-bottom: 32px;
}
.cta-band__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT LINKS ===== */
.contact-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 500; padding: 14px 24px; border-radius: 8px;
  border: 1.5px solid var(--border); color: var(--black); transition: all 0.2s;
}
.contact-link:hover { border-color: var(--accent); background: var(--accent-soft); }
.contact-link svg { width: 20px; height: 20px; }

/* ===== ARROW LINK ===== */
.arrow-link {
  font-size: 0.85rem; font-weight: 600; color: var(--black);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.arrow-link:hover { gap: 10px; }
.arrow-link svg { width: 16px; height: 16px; }

/* ===== LISTING LINK ===== */
.listing-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  padding: 8px 18px; border: 1.5px solid var(--accent); border-radius: 6px;
  transition: all 0.2s;
}
.listing-link:hover { background: var(--accent); color: var(--white); }
.listing-link svg { width: 14px; height: 14px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 968px) {
  .nav__inner {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 16px; height: 50px;
  }
  .nav__inner::-webkit-scrollbar { display: none; }
  .nav__logo svg { height: 24px; }
  .nav__links { gap: 14px; }
  .nav__links a { font-size: 0.74rem; }
  .nav__cta { font-size: 0.74rem; padding: 5px 12px; }
  .site-brand { padding: 80px 0 28px; }
  .site-brand__logo svg { height: 64px; }
  .site-brand__name { font-size: 0.75rem; }
  .site-brand__divider { height: 36px; margin-top: 20px; }
  .page-hero { padding: 16px 0 40px; }
}

@media (max-width: 580px) {
  .page-hero__title { font-size: 1.9rem; }
  .cta-band__buttons { flex-direction: column; align-items: center; }
  .contact-links { flex-direction: column; }
  .contact-link { justify-content: center; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
}
