:root {
  --ink: #1a1712;
  --charcoal: #262019;
  --gold: #c19a5b;
  --gold-lt: #d8b878;
  --cream: #f6f1e7;
  --cream-2: #efe7d7;
  --paper: #fbf8f2;
  --muted: #6f665a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --max: 1180px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; color: var(--ink); background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
em { font-style: italic; color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.35rem; }
.eyebrow { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.lede { max-width: 620px; margin: 16px auto 0; color: var(--muted); font-size: 1.05rem; }
.sec-head { text-align: center; margin-bottom: 56px; }

.btn { display: inline-block; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 30px; border-radius: 2px; border: 1px solid transparent; cursor: pointer; transition: all .25s ease; }
.btn-gold { background: var(--gold); color: #1a1712; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-dark:hover { background: #17120c; transform: translateY(-2px); }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; transition: background .3s, padding .3s; }
.nav.scrolled { background: rgba(26,23,18,0.95); backdrop-filter: blur(10px); padding: 12px 32px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.brand-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; line-height: 1; }
.brand-text span { color: var(--gold-lt); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--gold-lt); }
.nav-phone { font-weight: 600; color: #fff; border: 1px solid var(--gold); padding: 9px 18px; border-radius: 2px; font-size: 0.85rem; transition: all .2s; }
.nav-phone:hover { background: var(--gold); color: #1a1712; }

/* hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,12,8,0.85) 0%, rgba(15,12,8,0.55) 45%, rgba(15,12,8,0.35) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; color: #fff; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 500; margin-bottom: 22px; }
.hero h1 em { color: var(--gold-lt); }
.hero-sub { max-width: 540px; font-size: 1.1rem; color: rgba(255,255,255,.9); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,.6); z-index: 2; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 34px; background: rgba(255,255,255,.4); margin: 8px auto 0; }

/* trust bar */
.trustbar { background: var(--charcoal); color: var(--cream); display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 60px; padding: 34px 24px; text-align: center; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--gold-lt); font-weight: 600; }
.trust-item span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(246,241,231,.65); }

/* sections */
.section { padding: 100px 0; }
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--cream-2); border-radius: 4px; padding: 34px 26px; text-align: center; transition: transform .25s, box-shadow .25s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,23,18,.09); }
.svc-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: 0.92rem; color: var(--muted); }
.svc-cta { text-align: center; margin-top: 48px; }
.svc-cta p { color: var(--muted); margin-bottom: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* about */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 6px; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 20px 50px rgba(26,23,18,.18); }
.about-badge { position: absolute; bottom: -24px; right: -14px; background: var(--charcoal); color: var(--cream); padding: 18px 26px; border-radius: 4px; text-align: center; }
.about-badge strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold-lt); }
.about-badge span { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: .75; }
.michael-card { display: flex; align-items: center; gap: 14px; margin: 20px 0 22px; padding-bottom: 20px; border-bottom: 1px solid var(--cream-2); }
.michael-avatar { width: 58px; height: 58px; flex-shrink: 0; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 14px rgba(26,23,18,.12); }
.michael-avatar svg { width: 100%; height: 100%; display: block; }
.michael-card strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.michael-card span { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--gold); }
.about-copy p { color: var(--muted); margin-bottom: 16px; }

/* gallery band */
.gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 300px; gap: 0; }
.gal-item { position: relative; margin: 0; overflow: hidden; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-tall { grid-row: span 1; }
.gal-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: #fff; background: linear-gradient(transparent, rgba(15,12,8,0.75)); }
.about-copy blockquote { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); border-left: 3px solid var(--gold); padding: 6px 22px; margin: 24px 0; line-height: 1.5; }

/* reviews */
.reviews { background: var(--charcoal); color: var(--cream); }
.reviews .eyebrow { color: var(--gold-lt); }
.reviews h2 { color: #fff; }
.review-carousel { display: flex; align-items: center; gap: 18px; max-width: 820px; margin: 0 auto; }
.rc-track { flex: 1; overflow: hidden; position: relative; min-height: 220px; }
.rc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; text-align: center; padding: 10px; display: flex; flex-direction: column; justify-content: center; }
.rc-slide.active { opacity: 1; position: relative; }
.rc-stars { color: var(--gold-lt); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 20px; }
.rc-quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-style: italic; line-height: 1.5; color: #fff; margin-bottom: 20px; }
.rc-author { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }
.rc-arrow { background: transparent; border: 1px solid rgba(216,184,120,.4); color: var(--gold-lt); width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; flex-shrink: 0; transition: all .2s; line-height: 1; }
.rc-arrow:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }
.rc-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.rc-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(216,184,120,.35); cursor: pointer; padding: 0; }
.rc-dots button.active { background: var(--gold-lt); }

/* contact */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info p { color: var(--muted); }
.contact-list { list-style: none; margin-top: 26px; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--cream-2); display: flex; gap: 18px; align-items: baseline; }
.contact-list span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); width: 60px; flex-shrink: 0; }
.contact-list a { color: var(--ink); font-weight: 500; }
.contact-form { background: #fff; border: 1px solid var(--cream-2); border-radius: 6px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { font-family: var(--sans); font-size: 0.95rem; padding: 13px 15px; border: 1px solid var(--cream-2); border-radius: 3px; background: var(--paper); width: 100%; color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form button { margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; }
.form-note a { color: var(--gold); font-weight: 500; }

/* footer */
.footer { background: #17120c; color: rgba(246,241,231,.7); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-lt); font-weight: 600; }
.footer p { font-size: 0.82rem; margin-top: 4px; }
.footer-contact { text-align: right; }
.footer-contact a { display: block; font-size: 1.1rem; color: #fff; font-weight: 500; }
.footer-contact span { font-size: 0.72rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gal-tall { grid-column: span 2; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 14px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(15,12,8,0.6), rgba(15,12,8,0.75)); }
}
@media (max-width: 540px) {
  .svc-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-inner, .footer-contact { text-align: left; }
  .nav { padding: 14px 20px; }
  .nav-phone { display: none; }
}

/* ---- footer legal links ---- */
.footer-legal { max-width: var(--max); margin: 22px auto 0; padding: 18px 24px 0; border-top: 1px solid rgba(246,241,231,.12); display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; }
.footer-legal a { font-size: 0.74rem; letter-spacing: 0.06em; color: rgba(246,241,231,.6); transition: color .2s; }
.footer-legal a:hover { color: var(--gold-lt); }

/* ---- legal pages ---- */
.legal-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; border-bottom: 1px solid var(--cream-2); background: #fff; }
.legal-nav .nav-brand { gap: 11px; }
.legal-nav .brand-mark { width: 44px; height: 44px; background: var(--charcoal); border-radius: 50%; }
.legal-nav .brand-text { font-size: 1.3rem; }
.legal-back { font-size: 0.82rem; letter-spacing: 0.05em; color: var(--gold); }
.legal-main { padding: 70px 24px 90px; background: var(--paper); min-height: 60vh; }
.legal-container { max-width: 760px; margin: 0 auto; }
.legal-container h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 8px 0 6px; }
.legal-updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 34px; }
.legal-container h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin: 30px 0 10px; }
.legal-container p { color: var(--muted); margin-bottom: 14px; }
.legal-disclaimer { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--cream-2); font-size: 0.85rem; }

/* ---- chat widget ---- */
.mp-chat-fab { position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; border: none; background: var(--charcoal); color: var(--gold-lt); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 22px rgba(26,23,18,.32); transition: transform .2s, background .2s; }
.mp-chat-fab:hover { transform: translateY(-3px); background: #17120c; }
.mp-chat-fab svg { width: 26px; height: 26px; }
.mp-chat-fab.open { background: var(--gold); color: #17120c; }
.mp-chat-panel { position: fixed; bottom: 92px; right: 24px; z-index: 60; width: 350px; max-width: calc(100vw - 40px); height: 480px; max-height: calc(100vh - 130px); background: #fff; border-radius: 14px; box-shadow: 0 18px 50px rgba(26,23,18,.28); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--cream-2); }
.mp-chat-head { background: var(--charcoal); color: var(--cream); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.mp-chat-head strong { font-family: var(--serif); font-size: 1.15rem; display: block; }
.mp-chat-head span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); }
.mp-chat-close { background: none; border: none; color: rgba(246,241,231,.7); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.mp-chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--paper); }
.mp-msg { max-width: 84%; padding: 10px 14px; border-radius: 14px; font-size: 0.9rem; line-height: 1.5; }
.mp-bot { background: #fff; border: 1px solid var(--cream-2); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.mp-user { background: var(--charcoal); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.mp-typing { color: var(--muted); letter-spacing: 2px; }
.mp-chips { display: flex; flex-direction: column; gap: 7px; align-items: flex-start; margin-top: 2px; }
.mp-chips button { background: #fff; border: 1px solid var(--gold); color: var(--gold); font-family: var(--sans); font-size: 0.8rem; padding: 7px 13px; border-radius: 16px; cursor: pointer; transition: all .2s; text-align: left; }
.mp-chips button:hover { background: var(--gold); color: #17120c; }
.mp-chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--cream-2); background: #fff; }
.mp-chat-input input { flex: 1; border: 1px solid var(--cream-2); border-radius: 20px; padding: 10px 16px; font-family: var(--sans); font-size: 0.9rem; }
.mp-chat-input input:focus { outline: none; border-color: var(--gold); }
.mp-chat-input button { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--gold); color: #17120c; font-size: 1.1rem; cursor: pointer; flex-shrink: 0; }

.mp-chat-panel[hidden] { display: none; }

.footer-credit { text-align: center; margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.05em; color: rgba(246,241,231,.45); }
.footer-credit a { color: rgba(246,241,231,.7); transition: color .2s; }
.footer-credit a:hover { color: var(--gold-lt); }
