/* ── TOKENS ── */
:root {
  --cream:       #FAF6F0;
  --cream-deep:  #F2EBE0;
  --dark:        #2A1A0E;
  --brown:       #6B3A2A;
  --brown-light: #8B5A3A;
  --gold:        #C8A97A;
  --gold-light:  #E8D4A8;
  --blush:       #F7EDE8;
  --blush-border:#DFA090;
  --sage:        #8A9B7A;
  --muted:       #9A8878;
  --white:       #FFFFFF;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; width: 100%; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--dark); font-weight: 300; line-height: 1.6; overflow-x: clip; width: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
em { font-style: italic; color: var(--brown); }
p { line-height: 1.75; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(200,169,122,0.25);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(42,26,14,0.08); }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: var(--dark); line-height: 1; letter-spacing: 0.02em; }
.nav-logo-sub { font-size: 8px; font-weight: 300; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-link { font-size: 12px; font-weight: 400; color: var(--brown-light); letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); }
.chevron { font-size: 14px; transition: transform 0.2s; display: inline-block; }
.has-dropdown { position: relative; }
.has-dropdown:hover .chevron { transform: rotate(90deg); }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: -16px;
  background: var(--white); border: 0.5px solid rgba(200,169,122,0.3);
  border-radius: 8px; padding: 8px 0; min-width: 220px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s; box-shadow: 0 8px 32px rgba(42,26,14,0.1);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; font-size: 12px; font-weight: 300; color: var(--brown-light); letter-spacing: 0.04em; transition: color 0.2s, background 0.2s; }
.dropdown a:hover { color: var(--dark); background: var(--blush); }
.nav-cta {
  background: var(--dark); color: var(--gold);
  padding: 10px 24px; border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--brown); color: var(--gold-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--dark); letter-spacing: 0.04em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta { background: var(--dark); color: var(--gold) !important; padding: 14px 36px; border-radius: 2px; font-size: 14px !important; font-family: var(--font-sans) !important; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── FLOWER SVG ── */
.hero-flower-tr { position: absolute; top: -20px; right: -20px; width: 380px; height: 380px; pointer-events: none; opacity: 0.9; }
.hero-flower-bl { position: absolute; bottom: 40px; left: -40px; width: 260px; height: 260px; pointer-events: none; opacity: 0.7; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
  max-width: 100%;
  background: linear-gradient(160deg, var(--cream) 0%, #F5EDE0 60%, #EDE0D0 100%);
}
.hero-content { max-width: 580px; position: relative; z-index: 2; }
.hero-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title { margin-bottom: 24px; }
.hero-title-script { display: block; font-family: var(--font-serif); font-size: clamp(40px, 6vw, 72px); font-weight: 300; font-style: italic; color: var(--brown-light); line-height: 1; }
.hero-title-serif { display: block; font-family: var(--font-serif); font-size: clamp(48px, 7.5vw, 90px); font-weight: 500; color: var(--dark); line-height: 1; letter-spacing: -0.01em; }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--muted); max-width: 440px; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-tag { display: flex; gap: 10px; align-items: center; font-size: 11px; font-weight: 300; color: var(--muted); letter-spacing: 0.18em; }
.dot { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--dark); color: var(--gold);
  padding: 14px 32px; border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; border: 1px solid var(--brown-light); color: var(--brown-light);
  padding: 13px 32px; border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--dark); color: var(--dark); }
.btn-primary-light {
  display: inline-block; background: var(--cream); color: var(--dark);
  padding: 14px 32px; border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s;
}
.btn-primary-light:hover { background: var(--gold-light); }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 12px 28px; border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s;
}
.btn-gold:hover { background: var(--gold-light); }

/* ── SECTIONS ── */
.section { padding: 96px 48px; }
.section-label { font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--dark); margin-bottom: 16px; line-height: 1.1; }
.section-sub { font-size: 15px; font-weight: 300; color: var(--muted); max-width: 500px; margin-bottom: 56px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── SERVICES GRID ── */
.services-section { background: var(--white); position: relative; overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,169,122,0.15); border: 1px solid rgba(200,169,122,0.15); border-radius: 8px; overflow: hidden; }
.svc-tile {
  background: var(--white); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.svc-tile:hover { background: var(--blush); }
.svc-tile.featured { background: var(--cream); }
.svc-tile.featured:hover { background: var(--blush); }
.svc-tile-icon { font-size: 20px; color: var(--gold); margin-bottom: 4px; }
.svc-tile h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: var(--dark); }
.svc-tile p { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--dark);
  padding: 96px 48px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 64px;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
}
.about-flower { position: absolute; right: 48px; top: 50%; transform: translateY(-50%); width: 280px; opacity: 0.5; }
.about-content { max-width: 640px; position: relative; z-index: 2; }
.about-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.about-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 60px); font-weight: 300; color: var(--cream); margin-bottom: 20px; font-style: italic; }
.about-text { font-size: 15px; font-weight: 300; color: rgba(250,246,240,0.75); margin-bottom: 36px; line-height: 1.8; max-width: 520px; }
.about-stats { display: flex; gap: 48px; margin-bottom: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 10px; font-weight: 300; color: rgba(250,246,240,0.5); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

/* ── ACADEMY TEASER ── */
.academy-teaser { background: var(--cream-deep); position: relative; overflow: hidden; max-width: 100%; }
.academy-flower { position: absolute; right: 0; top: 0; width: 320px; opacity: 0.6; }
.academy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.academy-text p { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 28px; }
.academy-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.academy-list li { font-size: 13px; font-weight: 300; color: var(--brown-light); padding-left: 20px; position: relative; }
.academy-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 4px; }
.academy-card { background: var(--dark); border-radius: 8px; overflow: hidden; }
.academy-card-inner { padding: 48px 40px; display: flex; flex-direction: column; gap: 16px; }
.academy-card-icon { font-size: 24px; color: var(--gold); }
.academy-card-title { font-family: var(--font-serif); font-size: 24px; font-weight: 300; color: var(--cream); font-style: italic; }
.academy-card-sub { font-size: 13px; font-weight: 300; color: rgba(250,246,240,0.6); line-height: 1.7; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 48px 96px;
  background: linear-gradient(160deg, var(--cream) 0%, #F0E4D4 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-dark {
  background: linear-gradient(160deg, var(--dark) 0%, #3D2010 100%);
}
.page-hero-flower { position: absolute; top: 0; right: 0; width: 360px; pointer-events: none; }
.page-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-title { font-size: clamp(42px, 6vw, 72px); font-weight: 300; color: var(--dark); margin-bottom: 20px; line-height: 1.1; }
.page-title-light { color: var(--cream); }
.page-sub { font-size: 16px; font-weight: 300; color: var(--muted); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
.page-sub-light { color: rgba(250,246,240,0.65); }

/* ── SERVICES PAGE TABS ── */
.services-nav-tabs {
  position: sticky; top: 68px; z-index: 50;
  background: var(--white); border-bottom: 0.5px solid rgba(200,169,122,0.2);
  padding: 0 48px;
  display: flex; gap: 0; overflow-x: auto;
}
.services-nav-tabs a {
  display: block; padding: 16px 20px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.services-nav-tabs a:hover { color: var(--dark); border-bottom-color: var(--gold); }

/* ── SERVICES MAIN ── */
.services-main { padding: 0; }
.svc-section { padding: 72px 48px; border-bottom: 0.5px solid rgba(200,169,122,0.15); }
.svc-section:nth-child(even) { background: var(--cream-deep); }
.svc-section-header { display: flex; align-items: center; gap: 24px; margin-bottom: 40px; }
.svc-section-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; color: var(--dark); white-space: nowrap; }
.svc-section-line { flex: 1; height: 0.5px; background: linear-gradient(90deg, var(--gold), transparent); }
.svc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.svc-category { background: var(--white); border-radius: 8px; padding: 28px; border: 0.5px solid rgba(200,169,122,0.2); }
.svc-cat-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; font-style: italic; color: var(--brown); margin-bottom: 4px; padding-bottom: 12px; border-bottom: 0.5px solid rgba(200,169,122,0.3); }
.svc-cat-sub { font-size: 11px; font-weight: 300; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 12px; margin-top: 4px; }
.svc-items { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
.svc-item { padding: 12px 0; border-bottom: 0.5px solid rgba(237,232,224,0.8); }
.svc-item:last-child { border-bottom: none; padding-bottom: 0; }
.svc-item.highlight { background: var(--blush); margin: 4px -8px; padding: 12px 8px; border-radius: 4px; border-bottom: none; }
.svc-item strong { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--dark); display: block; margin-bottom: 2px; }
.svc-item p { font-size: 11px; font-weight: 300; color: var(--muted); line-height: 1.5; }
.svc-note { font-size: 12px; font-weight: 300; color: var(--muted); font-style: italic; margin-top: 24px; padding: 12px 16px; border-left: 2px solid var(--gold); background: var(--blush); border-radius: 0 4px 4px 0; }
.consult-card-wrap { display: flex; }
.consult-highlight { background: var(--dark); border-radius: 8px; padding: 32px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.consult-icon { font-size: 24px; color: var(--gold); }
.consult-highlight h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--cream); font-style: italic; }
.consult-highlight p { font-size: 13px; font-weight: 300; color: rgba(250,246,240,0.65); line-height: 1.7; }

/* PACKAGES */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pkg-card { background: var(--white); border: 0.5px solid rgba(200,169,122,0.25); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.pkg-card.pkg-featured { background: var(--cream-deep); border-color: var(--gold); }
.pkg-card.bridal-pkg { background: var(--dark); grid-column: span 2; }
.pkg-card.bridal-pkg h3, .pkg-card.bridal-pkg p { color: var(--cream); }
.pkg-card.bridal-pkg p { color: rgba(250,246,240,0.65); }
.pkg-icon { font-size: 20px; color: var(--gold); }
.pkg-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--dark); }
.pkg-card p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--brown); padding: 80px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner-flower { position: absolute; left: 0; top: 0; width: 200px; opacity: 0.4; }
.cta-banner p { font-size: 12px; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,246,240,0.6); margin-bottom: 12px; }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 48px); font-weight: 300; color: var(--cream); margin-bottom: 32px; line-height: 1.2; }
.cta-banner em { color: var(--gold-light); }

/* ── ACADEMY PAGE ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.why-card { background: var(--white); border-radius: 8px; padding: 36px 28px; border: 0.5px solid rgba(200,169,122,0.2); }
.why-icon { font-size: 22px; color: var(--gold); margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--dark); margin-bottom: 12px; }
.why-card p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.academy-curriculum { background: var(--cream-deep); }
.curriculum-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.curr-module { background: var(--white); border-radius: 8px; padding: 36px; border: 0.5px solid rgba(200,169,122,0.2); }
.curr-num { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: rgba(200,169,122,0.25); line-height: 1; margin-bottom: 12px; }
.curr-module h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 0.5px solid rgba(200,169,122,0.2); }
.curr-module ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.curr-module li { font-size: 13px; font-weight: 300; color: var(--muted); padding-left: 18px; position: relative; line-height: 1.5; }
.curr-module li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }

/* ── COLLABORATE PAGE ── */
.collab-section { padding: 72px 48px; }
.collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.collab-card-main { background: var(--white); border-radius: 8px; padding: 48px; border: 0.5px solid rgba(200,169,122,0.25); display: flex; flex-direction: column; gap: 20px; }
.collab-card-icon { font-size: 28px; color: var(--gold); }
.collab-tag { font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.collab-card-main h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 400; color: var(--dark); }
.collab-card-main p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; }
.collab-card-main h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown-light); }
.collab-card-main ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.collab-card-main li { font-size: 13px; font-weight: 300; color: var(--muted); padding-left: 20px; position: relative; }
.collab-card-main li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 4px; }
.collab-note { font-size: 12px; font-style: italic; color: rgba(154,136,120,0.7); border-left: 2px solid var(--gold); padding-left: 12px; }
.collab-contact-strip { background: var(--dark); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.collab-contact-flower { position: absolute; left: 48px; top: 50%; transform: translateY(-50%); width: 180px; }
.collab-contact-inner { position: relative; z-index: 2; }
.collab-contact-strip h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: var(--cream); margin-bottom: 16px; }
.collab-contact-strip p { font-size: 15px; font-weight: 300; color: rgba(250,246,240,0.6); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.collab-contact-details { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.collab-contact-btn { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(200,169,122,0.3); padding: 16px 28px; border-radius: 4px; color: var(--cream); font-size: 13px; font-weight: 300; transition: background 0.2s; }
.collab-contact-btn:hover { background: rgba(200,169,122,0.15); }
.collab-contact-icon { color: var(--gold); font-size: 16px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 72px 48px 32px; }
.footer-flower { position: absolute; right: 48px; top: 48px; width: 220px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 64px; margin-bottom: 56px; position: relative; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo-name { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--cream); font-style: italic; }
.footer-logo-sub { font-size: 9px; font-weight: 300; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }
.footer-logo-tag { font-size: 9px; font-weight: 200; color: rgba(250,246,240,0.35); letter-spacing: 0.15em; margin-top: 4px; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links a { display: block; font-size: 13px; font-weight: 300; color: rgba(250,246,240,0.55); margin-bottom: 12px; transition: color 0.2s; letter-spacing: 0.04em; }
.footer-links a:hover { color: var(--cream); }
.footer-contact p { font-size: 13px; font-weight: 300; color: rgba(250,246,240,0.55); line-height: 1.7; margin-bottom: 12px; }
.footer-contact a { display: block; font-size: 13px; font-weight: 300; color: rgba(250,246,240,0.55); margin-bottom: 10px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 0.5px solid rgba(200,169,122,0.15); padding-top: 24px; }
.footer-bottom p { font-size: 11px; font-weight: 200; color: rgba(250,246,240,0.25); letter-spacing: 0.04em; line-height: 1.6; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeUp 0.8s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 16px 32px; }
  .nav-links { gap: 24px; }
  .hero { padding: 120px 32px 80px; }
  .section { padding: 72px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-inner { grid-template-columns: 1fr; gap: 48px; }
  .collab-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 64px; }
  .hero-flower-tr { width: 240px; opacity: 0.5; }
  .section { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-strip { padding: 64px 24px; flex-direction: column; }
  .about-stats { gap: 28px; }
  .about-flower { display: none; }
  .page-hero { padding: 120px 24px 72px; }
  .services-nav-tabs { padding: 0 24px; }
  .svc-section { padding: 48px 24px; }
  .svc-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .pkg-card.bridal-pkg { grid-column: span 1; }
  .packages-grid { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .collab-card-main { padding: 32px 24px; }
  .cta-banner { padding: 56px 24px; }
  .footer { padding: 56px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .collab-contact-strip { padding: 56px 24px; }
}

/* ── REAL FLOWER IMAGE ── */
.flower-img {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
/* No negative offsets — all flowers stay inside their parent */
/* Max rotation ±30deg, never flipped */
.flower-tr {
  top: 60px; right: 0;
  width: 420px; opacity: 0.18;
  max-width: 55vw;
}
.flower-bl {
  bottom: 0; left: 0;
  width: 300px; opacity: 0.12;
  max-width: 45vw;
}
.flower-br {
  bottom: 0; right: 0;
  width: 300px; opacity: 0.13;
  max-width: 45vw;
}
.flower-tl {
  top: 0; left: 0;
  width: 260px; opacity: 0.1;
  max-width: 40vw;
}
.flower-center-r {
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 340px; opacity: 0.12;
  max-width: 50vw;
}
@media (max-width: 768px) {
  .flower-tr { width: 240px; opacity: 0.13; }
  .flower-bl { width: 180px; }
  .flower-br { width: 180px; }
  .flower-tl { width: 160px; }
  .flower-center-r { width: 200px; }
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── ABOUT SKETCH ── */
.about-sketch {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.about-sketch-img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  border: 1px solid rgba(200,169,122,0.2);
  display: block;
}

@media (max-width: 1024px) {
  .about-sketch-img { width: 260px; height: 320px; }
}
@media (max-width: 768px) {
  .about-sketch { display: none; }
  .nav-logo-img { height: 40px; }
}

/* ── ABOUT SPECIALITY LIST ── */
.about-text-2 { margin-top: -12px; margin-bottom: 24px; }
.about-speciality {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.speciality-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; font-weight: 300;
  color: rgba(250,246,240,0.8);
  line-height: 1.6;
}
.speciality-icon {
  color: var(--gold); font-size: 10px;
  margin-top: 4px; flex-shrink: 0;
}

/* ── ABOUT STRIP LAYOUT WITH SKETCH ── */

.about-sketch {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.about-sketch-img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  border: 1px solid rgba(200,169,122,0.2);
  display: block;
}
.about-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .about-strip { gap: 40px; }
  .about-sketch-img { width: 240px; height: 300px; }
}
@media (max-width: 768px) {
  .about-strip { flex-direction: column; gap: 32px; }
  .about-sketch { display: block; width: 100%; }
  .about-sketch-img { width: 100%; height: 320px; object-fit: cover; object-position: top center; }
}
