/* =========================================================
   MEENA PHOTOGRAPHY — BOOKING GUIDELINES
   All classes are mbg-* to prevent CSS conflicts.
========================================================= */

:root {
  --mbg-gold: #d39a55;
  --mbg-gold-dark: #a86f39;
  --mbg-gold-soft: #ead1ae;
  --mbg-cream: #fbf6ee;
  --mbg-cream-deep: #f2e7d9;
  --mbg-paper: #fffdf9;
  --mbg-brown: #51372b;
  --mbg-dark: #241c18;
  --mbg-text: #5d5148;
  --mbg-muted: #84786e;
  --mbg-line: rgba(174, 126, 71, .24);

  --mbg-serif: "Bricolage Grotesque", Georgia, serif;
  --mbg-sans: "Marcellus", "Inter", system-ui, sans-serif;
  --mbg-script: "Bodoni Moda", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mbg-text);
  background: #fff;
  font-family: var(--mbg-sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.mbg-page {
  overflow: hidden;
}

.mbg-container {
  width: min(calc(100% - 80px), 1180px);
  margin-inline: auto;
}

/* =========================================================
   HERO
========================================================= */

.mbg-hero {
  position: relative;
  min-height: 455px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 45%, rgba(211, 154, 85, .14), transparent 23%),
    radial-gradient(circle at 91% 25%, rgba(211, 154, 85, .12), transparent 24%),
    linear-gradient(135deg, #fffdf9 0%, #f8efe4 100%);
}

.mbg-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(211, 154, 85, .17);
  pointer-events: none;
}

.mbg-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -125px;
  width: 700px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(211, 154, 85, .07);
}

.mbg-hero .mbg-container {
  position: relative;
  z-index: 2;
  padding: 180px 0 80px;
}

.mbg-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--mbg-gold-dark);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .25em;
}

.mbg-eyebrow span {
  width: 46px;
  height: 1px;
  background: var(--mbg-gold-soft);
}

.mbg-hero h1 {
  margin: 20px auto 0;
  color: var(--mbg-dark);
  font-family: var(--mbg-serif);
  font-size: clamp(54px, 7.4vw, 92px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.mbg-hero h1 em {
  color: var(--mbg-gold);
  font-style: normal;
}

.mbg-script {
  margin: 8px 0 20px;
  color: var(--mbg-gold-dark);
  font-family: var(--mbg-script);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
}

.mbg-intro {
  max-width: 590px;
  margin: auto;
  color: var(--mbg-muted);
  font-size: 16px;
  line-height: 1.8;
}

.mbg-leaf {
  position: absolute;
  z-index: 1;
  color: rgba(168, 111, 57, .28);
  font-size: 125px;
  line-height: 1;
}

.mbg-leaf-left {
  left: -35px;
  top: 25px;
  transform: rotate(-38deg);
}

.mbg-leaf-right {
  right: -30px;
  top: 35px;
  transform: rotate(40deg);
}

/* =========================================================
   QUICK NAV
========================================================= */

.mbg-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--mbg-line);
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(12px);
}

.mbg-nav-inner {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.mbg-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 22px 0;
  color: var(--mbg-muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}

.mbg-nav a span {
  color: var(--mbg-gold);
  font-family: var(--mbg-serif);
  font-size: 16px;
}

.mbg-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: var(--mbg-gold);
  transition: width .25s ease;
}

.mbg-nav a:hover,
.mbg-nav a.is-active {
  color: var(--mbg-brown);
}

.mbg-nav a:hover::after,
.mbg-nav a.is-active::after {
  width: 30px;
}

/* =========================================================
   GUIDELINES
========================================================= */

.mbg-guidelines {
  padding: 105px 0 115px;
  background: #fff;
}

.mbg-section {
  position: relative;
  padding: 0 0 32px;
  margin-bottom: 32px;
}

.mbg-section:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: translateX(-50%);
  background: var(--mbg-line);
}

.mbg-section-head {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 20px;
}

.mbg-section-number {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mbg-gold-soft);
  border-radius: 50%;
  color: var(--mbg-gold-dark);
  font-family: var(--mbg-serif);
  font-size: 17px;
}

.mbg-mini-label {
  color: var(--mbg-gold-dark);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mbg-section h2 {
  margin: 8px 0 0;
  color: var(--mbg-dark);
  font-family: var(--mbg-serif);
  font-size: clamp(39px, 4.5vw, 61px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.mbg-section h2 em {
  color: var(--mbg-gold);
  font-style: normal;
}

.mbg-rule {
  width: 100%;
  height: 1px;
  margin: 42px 0 5px;
  background: linear-gradient(90deg,
      var(--mbg-gold-soft),
      rgba(234, 209, 174, .15));
}

.mbg-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}

.mbg-item {
  position: relative;
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 13px;
  min-height: 105px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(174, 126, 71, .13);
}

.mbg-item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.mbg-dot {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 1px solid var(--mbg-gold-soft);
  border-radius: 50%;
  color: var(--mbg-gold-dark);
  font-family: var(--mbg-serif);
  font-size: 16px;
}

.mbg-item p {
  margin: 0;
  color: var(--mbg-text);
  font-size: 16px;
  line-height: 1.85;
}

.mbg-item strong {
  color: var(--mbg-brown);
  font-weight: 700;
}

.mbg-note {
  color: var(--mbg-gold-dark);
}

/* =========================================================
   SHOOT HIGHLIGHT
========================================================= */

.mbg-highlight {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  align-items: center;
  max-width: 950px;
  margin: 35px auto 0;
  padding: 30px 35px;
  border: 1px solid var(--mbg-line);
  border-radius: 18px;
  background: var(--mbg-cream);
}

.mbg-highlight-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mbg-gold-soft);
  border-radius: 50%;
  color: var(--mbg-gold);
  font-family: var(--mbg-serif);
  font-size: 30px;
}

.mbg-highlight h3 {
  margin: 0 0 7px;
  color: var(--mbg-brown);
  font-family: var(--mbg-serif);
  font-size: 24px;
  font-weight: 400;
}

.mbg-highlight p {
  max-width: 780px;
  margin: 0;
  color: var(--mbg-muted);
  font-size: 16px;
  line-height: 1.8;
}

.mbg-item-wide {
  max-width: 950px;
  margin: 20px auto 0;
  border-bottom: 0;
}

/* =========================================================
   NOTE
========================================================= */

.mbg-note-section {
  padding: 75px 0;
  background: var(--mbg-cream);
}

.mbg-note-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  align-items: start;
  padding: 45px 50px;
  border: 1px solid var(--mbg-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .66);
}

.mbg-note-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mbg-gold-soft);
  border-radius: 50%;
  color: var(--mbg-gold);
  font-size: 20px;
}

.mbg-note-card h2 {
  margin: 8px 0 13px;
  color: var(--mbg-dark);
  font-family: var(--mbg-serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
}

.mbg-note-card h2 em {
  color: var(--mbg-gold);
  font-style: normal;
}

.mbg-note-card p {
  max-width: 800px;
  margin: 0;
  color: var(--mbg-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   CTA
========================================================= */

.mbg-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--mbg-brown);
}

.mbg-cta-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -180px;
  top: -270px;
  border-radius: 50%;
  background: rgba(211, 154, 85, .13);
}

.mbg-cta::after {
  content: "✦";
  position: absolute;
  right: 10%;
  bottom: 60px;
  color: rgba(234, 209, 174, .55);
  font-size: 30px;
}

.mbg-cta-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.mbg-cta .mbg-mini-label {
  color: #e9c18a;
}

.mbg-cta h2 {
  margin: 13px 0 18px;
  color: #fff;
  font-family: var(--mbg-serif);
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 400;
  line-height: 1;
}

.mbg-cta h2 em {
  color: #e9c18a;
  font-style: normal;
}

.mbg-cta-inner>p {
  max-width: 530px;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.8;
}

.mbg-actions {
  display: flex;
  gap: 12px;
  margin-top: 27px;
}

.mbg-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.mbg-btn:hover {
  transform: translateY(-2px);
}

.mbg-btn-gold {
  color: #fff;
  background: var(--mbg-gold);
}

.mbg-btn-outline {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .mbg-container {
    width: min(calc(100% - 50px), 820px);
  }

  .mbg-list {
    grid-template-columns: 1fr;
  }

  .mbg-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(174, 126, 71, .13);
  }

  .mbg-item:last-child {
    border-bottom: 0;
  }

  .mbg-nav-inner {
    gap: 35px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .mbg-container {
    width: calc(100% - 30px);
  }

  .mbg-hero {
    min-height: 430px;
  }

  .mbg-hero .mbg-container {
    padding: 65px 0;
  }

  .mbg-hero::before {
    inset: 10px;
  }

  .mbg-leaf {
    font-size: 80px;
  }

  .mbg-leaf-left {
    left: -25px;
    top: 25px;
  }

  .mbg-leaf-right {
    right: -22px;
    top: 30px;
  }

  .mbg-eyebrow {
    gap: 8px;
    font-size: 7px;
    letter-spacing: .18em;
  }

  .mbg-eyebrow span {
    width: 25px;
  }

  .mbg-hero h1 {
    font-size: 48px;
  }

  .mbg-script {
    font-size: 34px;
  }

  .mbg-intro {
    font-size: 16px;
    padding-inline: 10px;
  }

  .mbg-nav {
    overflow-x: auto;
  }

  .mbg-nav-inner {
    width: max-content;
    min-height: 57px;
    gap: 30px;
    margin: auto;
  }

  .mbg-nav a {
    padding: 18px 0;
    white-space: nowrap;
  }

  .mbg-guidelines {
    padding: 70px 0 75px;
  }

  .mbg-section {
    padding-bottom: 65px;
    margin-bottom: 65px;
  }

  .mbg-section-head {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .mbg-section-number {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .mbg-section h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .mbg-rule {
    margin-top: 30px;
  }

  .mbg-item {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 23px 0;
  }

  .mbg-dot {
    width: 27px;
    height: 27px;
    font-size: 8px;
  }

  .mbg-item p {
    font-size: 16px;
    line-height: 1.75;
  }

  .mbg-highlight {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 27px;
  }

  .mbg-highlight h3 {
    font-size: 22px;
  }

  .mbg-highlight p {
    font-size: 10.5px;
  }

  .mbg-item-wide {
    margin-top: 12px;
  }

  .mbg-note-section {
    padding: 60px 0;
  }

  .mbg-note-card {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 30px 25px;
  }

  .mbg-note-card h2 {
    font-size: 34px;
  }

  .mbg-note-card p {
    font-size: 10.5px;
  }

  .mbg-cta {
    min-height: 480px;
  }

  .mbg-cta-inner {
    padding: 70px 0;
  }

  .mbg-cta h2 {
    font-size: 44px;
  }

  .mbg-cta-inner>p {
    font-size: 16px;
  }

  .mbg-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mbg-btn {
    width: 220px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .mbg-container {
    width: calc(100% - 24px);
  }

  .mbg-hero h1 {
    font-size: 41px;
  }

  .mbg-script {
    font-size: 30px;
  }

  .mbg-section h2 {
    font-size: 34px;
  }

  .mbg-section-head {
    grid-template-columns: 44px 1fr;
  }

  .mbg-section-number {
    width: 40px;
    height: 40px;
  }

  .mbg-item p {
    font-size: 10.5px;
  }

  .mbg-note-card h2 {
    font-size: 30px;
  }

  .mbg-cta h2 {
    font-size: 39px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mbg-page *,
  .mbg-page *::before,
  .mbg-page *::after {
    animation: none !important;
    transition: none !important;
  }
}