/* MysticBlush — static site styles
   Palette: Gold Noir (default from Mystic Blush v2 design) */

:root {
  --mb-acc: #C6A15B;   /* gold accent */
  --mb-ink: #14100C;   /* noir */
  --mb-bg: #FAF5EC;    /* cream background */
  --mb-tint: #F2E5D3;  /* soft tint */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mb-bg);
  color: var(--mb-ink);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

a { color: var(--mb-acc); text-decoration: none; }
a:hover { color: #9A7B45; }

img { max-width: 100%; display: block; }

.cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes mbFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes mbFade { from { opacity: 0; } to { opacity: 1; } }

.serif { font-family: 'Cormorant Garamond', serif; }

/* ═══ NAV ═══ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 56px;
  background: color-mix(in srgb, var(--mb-ink) 94%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--mb-acc) 35%, transparent);
}
.nav-brand { display: flex; align-items: center; gap: 0; color: var(--mb-bg); }
.nav-brand:hover { color: var(--mb-acc); }
.nav-brand img { height: 58px; width: auto; margin: -8px -14px -8px -12px; }
.nav-brand span { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; letter-spacing: 0.04em; }
.nav-brand em { font-weight: 400; color: var(--mb-acc); font-style: normal; }

.nav-links { display: flex; gap: 36px; align-items: center; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links a.link { color: color-mix(in srgb, var(--mb-bg) 85%, transparent); }
.nav-links a.link:hover { color: var(--mb-acc); }
.nav-cta { padding: 11px 28px; border: 1px solid var(--mb-acc); border-radius: 999px; color: var(--mb-acc); white-space: nowrap; }
.nav-cta:hover { background: var(--mb-bg); border-color: var(--mb-bg); color: var(--mb-ink); }

@media (max-width: 860px) {
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
}

/* ═══ HERO ═══ */
.hero {
  position: relative; background: var(--mb-ink); color: var(--mb-bg); overflow: hidden;
}
.hero-flower {
  position: absolute; top: 40px; right: -60px; width: 480px; opacity: 0.08;
  transform: rotate(18deg); pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  padding: 88px 56px 110px; max-width: 1280px; margin: 0 auto;
}
.hero-copy { min-width: 0; animation: mbFadeUp 0.9s ease both; }
.eyebrow { margin: 0 0 20px; font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--mb-acc); }
.hero h1 {
  margin: 0 0 24px; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(48px, 6vw, 84px); line-height: 1.02; letter-spacing: -0.01em;
}
.hero h1 em { color: var(--mb-acc); font-style: normal; }
.hero-desc {
  margin: 0 0 40px; max-width: 46ch; font-size: 17px; font-weight: 300; line-height: 1.7;
  color: color-mix(in srgb, var(--mb-bg) 72%, transparent);
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-solid {
  padding: 16px 36px; background: var(--mb-acc); color: var(--mb-ink); border-radius: 999px;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; border: none; cursor: pointer;
}
.btn-solid:hover { background: var(--mb-bg); color: var(--mb-ink); }
.btn-ghost {
  padding: 16px 12px; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mb-bg); border-bottom: 1px solid var(--mb-acc); white-space: nowrap;
}
.btn-ghost:hover { color: var(--mb-acc); }

.hero-visual { position: relative; min-width: 0; animation: mbFade 1.2s ease both; }
.hero-frame {
  position: relative; width: 100%; height: 560px; border-radius: 280px 280px 16px 16px; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--mb-acc) 45%, transparent); box-shadow: 0 32px 80px -24px rgba(0,0,0,0.6);
}
.hero-badge {
  position: absolute; bottom: -28px; left: -36px; padding: 18px 26px; background: var(--mb-bg); color: var(--mb-ink);
  border-radius: 14px; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 4px;
}
.hero-badge img { height: 48px; width: auto; margin: -6px -8px -6px -10px; filter: brightness(0.75); }
.hero-badge span { font-size: 13px; letter-spacing: 0.08em; line-height: 1.5; }
.hero-badge em { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 56px 24px 80px; }
  .hero-frame { height: 420px; border-radius: 24px; }
  .hero-badge { left: 0; bottom: -24px; }
}

/* ═══ NAME STORY ═══ */
.name-story { padding: 96px 56px 0; max-width: 900px; margin: 0 auto; text-align: center; }
.name-story img { height: 56px; width: auto; filter: brightness(0.8); margin: 0 auto 20px; }
.name-story h2 { margin: 0 0 22px; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(32px, 3.5vw, 46px); }
.name-story h2 em { color: var(--mb-acc); font-style: normal; }
.name-story p { margin: 0; font-size: 17px; font-weight: 300; line-height: 1.9; color: color-mix(in srgb, var(--mb-ink) 80%, transparent); }
.name-story .accent-word { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--mb-acc); font-style: normal; }

@media (max-width: 700px) { .name-story { padding: 64px 24px 0; } }

/* ═══ ABOUT ═══ */
.about { padding: 96px 56px 110px; }
.about-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-media { position: relative; min-width: 0; }
.about-media .frame { width: 100%; height: 460px; border-radius: 16px; overflow: hidden; }
.about-badge {
  position: absolute; top: -22px; right: -22px; width: 110px; height: 110px; border: 1px solid var(--mb-acc);
  border-radius: 50%; display: grid; place-items: center; text-align: center; font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px; color: var(--mb-acc); background: var(--mb-ink);
}
.about h2 { margin: 0 0 24px; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 4vw, 54px); line-height: 1.1; }
.about h2 em { color: var(--mb-acc); font-style: normal; }
.about p.body { margin: 0 0 18px; font-size: 16px; font-weight: 300; line-height: 1.8; color: color-mix(in srgb, var(--mb-ink) 80%, transparent); }
.about-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.about-stats .num { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: var(--mb-acc); }
.about-stats .label { margin: 4px 0 0; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .about { padding: 64px 24px 72px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { top: -18px; right: 16px; }
}

/* ═══ SERVICES ═══ */
.services { background: var(--mb-tint); padding: 110px 56px; }
.services-inner { max-width: 1280px; margin: 0 auto; }
.services-head { text-align: center; margin-bottom: 64px; }
.services-head h2 { margin: 0; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 4vw, 54px); }
.services-head h2 em { color: var(--mb-acc); font-style: normal; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--mb-bg); border-radius: 18px; padding: 44px 36px;
  border: 1px solid color-mix(in srgb, var(--mb-acc) 25%, transparent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px -20px color-mix(in srgb, var(--mb-acc) 55%, transparent); }
.service-glyph {
  width: 64px; height: 64px; border-radius: 50%; background: var(--mb-ink); display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--mb-acc); margin-bottom: 28px;
}
.service-card h3 { margin: 0 0 14px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 28px; }
.service-card p.desc { margin: 0 0 24px; font-size: 15px; font-weight: 300; line-height: 1.75; color: color-mix(in srgb, var(--mb-ink) 75%, transparent); }
.service-card p.note { margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--mb-acc); }

@media (max-width: 900px) {
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══ GALLERY ═══ */
.gallery { background: var(--mb-ink); padding: 110px 56px; }
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.gallery-head h2 { margin: 0; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 4vw, 54px); color: var(--mb-bg); }
.gallery-head h2 em { color: var(--mb-acc); font-style: normal; }
.gallery-head .note { margin: 0; max-width: 38ch; font-size: 15px; font-weight: 300; line-height: 1.7; color: color-mix(in srgb, var(--mb-bg) 65%, transparent); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 18px; }
.g-tall { grid-row: span 2; border-radius: 14px; overflow: hidden; }
.g-cell { border-radius: 14px; overflow: hidden; }
.g-wide { grid-column: span 4; height: 280px; border-radius: 14px; overflow: hidden; }

@media (max-width: 900px) {
  .gallery { padding: 64px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; height: 220px; }
}

/* ═══ CONTACT ═══ */
.contact { padding: 110px 56px; max-width: 1180px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact h2 { margin: 0 0 24px; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 4vw, 54px); line-height: 1.1; }
.contact h2 em { color: var(--mb-acc); font-style: normal; }
.contact-desc { margin: 0 0 40px; font-size: 16px; font-weight: 300; line-height: 1.8; color: color-mix(in srgb, var(--mb-ink) 78%, transparent); }
.contact-rows { display: grid; gap: 24px; font-size: 15px; font-weight: 300; line-height: 1.6; }
.contact-row { display: flex; gap: 16px; align-items: baseline; }
.contact-row .k { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--mb-acc); min-width: 88px; }

.contact-card { min-width: 0; background: var(--mb-ink); color: var(--mb-bg); border-radius: 20px; padding: 44px; }
.contact-card h3 { margin: 0 0 24px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 26px; }
.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea {
  padding: 16px 20px; border: 1px solid color-mix(in srgb, var(--mb-acc) 40%, transparent); border-radius: 12px;
  background: color-mix(in srgb, var(--mb-bg) 8%, transparent); font-family: 'Jost', sans-serif; font-size: 15px;
  color: var(--mb-bg); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--mb-acc); }
.contact-form textarea { resize: vertical; }
.notify-btn {
  padding: 16px; background: var(--mb-acc); color: var(--mb-ink); border: none; border-radius: 999px;
  font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
}
.notify-btn:hover { background: var(--mb-bg); }
.form-note { margin: 20px 0 0; font-size: 12px; font-weight: 300; opacity: 0.65; line-height: 1.6; }

@media (max-width: 900px) {
  .contact { padding: 64px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══ FOOTER ═══ */
.footer { background: var(--mb-ink); color: color-mix(in srgb, var(--mb-bg) 75%, transparent); padding: 72px 56px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap;
  padding-bottom: 48px; border-bottom: 1px solid color-mix(in srgb, var(--mb-bg) 15%, transparent);
}
.footer-brand { display: flex; align-items: center; gap: 0; margin-bottom: 14px; }
.footer-brand img { height: 58px; width: auto; margin: -8px -14px -8px -12px; }
.footer-brand p { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--mb-bg); }
.footer-brand em { font-weight: 400; color: var(--mb-acc); font-style: normal; }
.footer-tag { margin: 0; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mb-acc); }
.footer-sub { margin: 12px 0 0; font-size: 14px; font-weight: 300; max-width: 34ch; line-height: 1.7; }
.footer-links { display: flex; gap: 64px; font-size: 14px; font-weight: 300; flex-wrap: wrap; }
.footer-col { display: grid; gap: 12px; }
.footer-col .head { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mb-acc); }
.footer-col a { color: inherit; }
.footer-col a:hover { color: var(--mb-acc); }
.footer-bottom { margin: 28px 0 0; font-size: 13px; font-weight: 300; opacity: 0.6; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; }

@media (max-width: 700px) {
  .footer { padding: 56px 24px 32px; }
  .footer-links { gap: 40px; }
}
