/* ============ VELVETBLOOMS SHARED STYLES ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F2;
  --blush: #E8D5C4;
  --rose: #C4857A;
  --gold: #C9A96E;
  --dark: #1A1410;
  --mid: #6B5B52;
  --light: #A89990;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--sans); font-weight: 300; line-height: 1.7; margin: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(250,247,242,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blush);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
}
.nav-logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--dark); }
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-sub { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; background: var(--dark); color: var(--white); padding: 9px 20px; transition: background .2s; }
.nav-sub:hover { background: var(--rose); }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--dark); margin: 5px 0; transition: all .3s; }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--blush); padding: 20px 24px; z-index: 998; flex-direction: column; gap: 16px; }
.mobile-nav a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); padding: 8px 0; border-bottom: 1px solid var(--blush); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* TAG */
.tag { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 10px; }
.tag-gold { color: var(--gold); }

/* SECTION */
.section { padding: 80px 48px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-head { margin-bottom: 48px; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 12px; }
.gold-line { width: 44px; height: 1px; background: var(--gold); margin-top: 16px; }

/* BUTTON */
.btn { display: inline-block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 12px 28px; transition: all .2s; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--rose); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--rose); color: var(--white); }
.btn-outline { border: 1px solid var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); }
.arrow-link::after { content: '→'; }

/* FOOTER */
.footer { background: var(--dark); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding: 64px 48px; max-width: 1160px; margin: 0 auto; }
.footer-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 14px; display: block; }
.footer-logo span { color: var(--rose); }
.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 200px; }
.footer-col h4 { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.8rem; color: rgba(255,255,255,0.38); transition: color .2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 48px; display: flex; justify-content: space-between; align-items: center; max-width: 1160px; margin: 0 auto; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { font-size: 0.72rem; color: rgba(255,255,255,0.2); margin-left: 20px; transition: color .2s; }
.footer-bottom a:hover { color: var(--rose); }
.footer-wrap { padding: 0 0 0 0; }

/* NEWSLETTER STRIP */
.newsletter-strip { background: var(--dark); padding: 64px 48px; text-align: center; }
.newsletter-strip .section-title { color: var(--white); margin: 0 auto 10px; }
.newsletter-strip .section-title em { font-style: italic; color: var(--blush); }
.newsletter-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 420px; margin: 12px auto 32px; line-height: 1.8; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-right: none; padding: 13px 18px; font-family: var(--sans); font-size: 0.85rem; color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button { background: var(--gold); border: none; padding: 13px 26px; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); cursor: pointer; transition: background .2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--rose); color: var(--white); }
.newsletter-note { font-size: 0.68rem; color: rgba(255,255,255,0.2); margin-top: 14px; }
.newsletter-note a { color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-sub { display: none; }
  .nav-menu-btn { display: block; }
  .section { padding: 56px 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-strip { padding: 48px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.14); border-bottom: none; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
}
