/* ===========================
   BRAND DESIGN SYSTEM
   Diamonds by Lara Fhe
   diamondsbylara.com
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --pink:   #F58ECC;
  --cyan:   #8EEEF5;
  --yellow: #F5E78E;
  --mauve:  #A18F9A;
  --teal:   #547375;
  --white:  #FFFFFF;
  --black:  #000000;
  --pink-lt: #FDE8F4;
  --cyan-lt: #E5FAFE;
  --yellow-dk: #E8D060;

  /* Typography */
  --ff-h: 'Merriweather', Georgia, serif;
  --ff-b: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-s: Calibri, 'Segoe UI', Tahoma, sans-serif;

  /* Spacing */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s8: 64px;

  /* Border radius */
  --r-btn: 20px;
  --r-drop: 15px;
  --r-card: 12px;
  --r-input: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b); font-size: 16px; background: var(--white);
  color: var(--black); line-height: 1.7; overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-h); font-weight: 400; line-height: 1.2; }
p { font-family: var(--ff-b); font-size: 16px; }
small, .small { font-family: var(--ff-s); }
blockquote { font-family: var(--ff-b); font-style: italic; font-size: 18px; }
a { font-family: var(--ff-s); font-style: italic; }

/* ===== PAGE HERO BANNERS ===== */
.page-hero {
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s6) var(--s4);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s3);
}

.page-hero-text { flex: 1; max-width: 640px; }

.page-hero-eyebrow {
  font-family: var(--ff-s);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--s1);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--s2);
  letter-spacing: -0.02em;
}

.page-hero-title em {
  font-style: italic;
  color: var(--pink);
}

.page-hero-sub {
  font-family: var(--ff-b);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  line-height: 1.7;
}

.page-hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: flex-start;
}

/* ===== HOME PAGE HERO ===== */
.hero-home {
  background-color: #F5E1E8;
  background-image: url('https://i.pinimg.com/736x/7e/bb/6e/7ebb6e0768d0426250277b42396c471c.jpg');
  min-height: 100vh;
}

.hero-home .page-hero-content {
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s8) var(--s4);
}

.hero-home .page-hero-text { max-width: 680px; }

.hero-home .page-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--s3);
}

.hero-home .page-hero-sub {
  max-width: 520px;
  margin: 0 auto var(--s5);
}

.hero-home .page-hero-cta {
  flex-direction: row;
  justify-content: center;
  gap: var(--s2);
}

.hero-home .page-hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: var(--s3);
}

.hero-scroll {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  opacity: 0.7;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--ff-s);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.6);
  display: block;
}

/* ===== YOUTUBE VIDEO SECTION ===== */
.video-section {
  background: linear-gradient(180deg, var(--pink-lt) 0%, var(--white) 100%);
  padding: var(--s8) var(--s4);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-eyebrow {
  font-family: var(--ff-s);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--s2);
}

.video-title {
  font-family: var(--ff-h);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--s2);
}

.video-title em {
  font-style: italic;
  color: var(--pink);
}

.video-sub {
  font-family: var(--ff-b);
  font-size: 1rem;
  color: var(--mauve);
  max-width: 500px;
  margin: 0 auto var(--s5);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(161, 143, 154, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FEATURED PRODUCTS (HOME) ===== */
.feat-section { padding: var(--s8) var(--s4); background: var(--white); }
.feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s3); max-width: 1200px; margin: 0 auto;
}
.feat-card {
  background: var(--white); border: 1.5px solid #ede8f0;
  border-radius: var(--r-card); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(161,143,154,0.18);
}
.feat-vis {
  height: 200px; background: var(--pink-lt);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0; overflow: hidden;
}
.feat-vis img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-tag {
  position: absolute; top: var(--s2); left: var(--s2);
  font-family: var(--ff-s); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--white); color: var(--teal);
  padding: 4px 10px; border-radius: var(--r-btn);
  border: 1px solid var(--cyan);
}
.feat-body { padding: var(--s3); display: flex; flex-direction: column; flex: 1; }
.feat-cat {
  font-family: var(--ff-s); font-size: 0.65rem; color: var(--mauve);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px;
}
.feat-name { font-family: var(--ff-h); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.feat-mat { font-size: 0.82rem; color: var(--teal); margin-bottom: var(--s2); flex: 1; }
.feat-btn {
  display: block; text-align: center; width: 100%; padding: 9px;
  background: var(--yellow); color: var(--black); border: none;
  border-radius: var(--r-btn); font-family: var(--ff-b);
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; text-decoration: none;
  font-weight: 400;
}
.feat-btn:hover { background: var(--yellow-dk); }
.feat-more { text-align: center; margin-top: var(--s5); }

/* ===== HOME TESTIMONIALS CTA BANNER ===== */
.cta-banner { background: var(--teal); padding: var(--s6) var(--s4); text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--s2); }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 560px; margin: 0 auto var(--s4); }

/* ===== COLLECTIONS PAGE HERO ===== */
.hero-collections {
  background-color: #F5E1E8;
  background-image: url('assets/images/col_background.jpg');
}

/* ===== EVENTS PAGE HERO ===== */
.hero-events {
  background-color: #E5F4F7;
  background-image: url('assets/images/e_background.jpg');
}

/* ===== ABOUT PAGE HERO ===== */
.hero-about {
  background-color: #F0E8EC;
  background-image: url('assets/images/abackground.jpeg');
}

/* ===== CONTACT PAGE HERO ===== */
.hero-contact {
  background-color: #E8E8E8;
  background-image: url('assets/images/con_background.jpg');
}

/* ===== FAQ PAGE HERO ===== */
.hero-faq {
  background-color: #F5EAF2;
  background-image: url('assets/images/faq_background.jpg');
}

/* ===== FAQ PAGE ===== */
.faq-tabs {
  display: flex; gap: var(--s2); justify-content: center;
  padding: var(--s5) var(--s4) 0;
  border-bottom: 1.5px solid #ede8f0;
}
.faq-tab {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--ff-s); font-size: 0.82rem; letter-spacing: 0.06em;
  font-weight: 600; color: var(--mauve); background: none; border: none;
  padding: var(--s2) var(--s3); cursor: pointer;
  border-bottom: 2.5px solid transparent; margin-bottom: -1.5px;
  transition: color 0.2s, border-color 0.2s;
}
.faq-tab:hover { color: var(--pink); }
.faq-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.faq-tab svg { flex-shrink: 0; }

.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-panel-inner { max-width: 860px; margin: 0 auto; padding: var(--s6) var(--s4); }

.faq-section-label {
  display: flex; align-items: center; gap: var(--s1);
  font-family: var(--ff-s); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: var(--s5);
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: var(--s2); }
.faq-item {
  border: 1.5px solid #ede8f0; border-radius: var(--r-card);
  overflow: hidden; background: var(--white);
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--pink);
  box-shadow: 0 4px 18px rgba(245,142,204,0.12);
}
.faq-q {
  list-style: none; padding: var(--s3) var(--s4);
  font-family: var(--ff-h); font-size: 1rem; font-weight: 700;
  color: var(--black); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s2); user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-family: var(--ff-b); font-size: 1.4rem;
  color: var(--pink); flex-shrink: 0; line-height: 1;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 var(--s4) var(--s3);
  border-top: 1px solid #f2eaf6;
}
.faq-a p { color: var(--mauve); line-height: 1.8; font-size: 0.95rem; margin-top: var(--s2); }
.faq-a a { color: var(--teal); text-decoration: underline; font-style: normal; }

/* Shipping cards */
.ship-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s3); margin-bottom: var(--s4);
}
.ship-card {
  border-radius: var(--r-card); padding: var(--s4) var(--s3);
  color: var(--white);
}
.ship-card--courier { background: linear-gradient(135deg, var(--pink) 0%, #e07ab8 100%); }
.ship-card--cod     { background: linear-gradient(135deg, var(--teal) 0%, #3a5557 100%); }
.ship-card--meetup  { background: linear-gradient(135deg, #8b6fa0 0%, #6b4f7e 100%); }
.ship-card-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: var(--s3);
}
.ship-card h4 {
  font-family: var(--ff-h); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: var(--s2);
}
.ship-card p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.75; }
.ship-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ship-list li { font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.ship-badge {
  display: inline-block; background: rgba(255,255,255,0.22);
  border-radius: 10px; padding: 2px 9px; font-size: 0.72rem;
  letter-spacing: 0.04em; margin-bottom: 2px; margin-right: 4px;
}
.ship-notice {
  display: flex; align-items: flex-start; gap: var(--s2);
  background: var(--cyan-lt); border: 1px solid var(--cyan);
  border-radius: var(--r-card); padding: var(--s3) var(--s4);
}
.ship-notice svg { flex-shrink: 0; margin-top: 3px; }
.ship-notice p { font-size: 0.88rem; color: var(--teal); line-height: 1.7; }
.ship-notice a { color: var(--teal); font-style: normal; text-decoration: underline; }

/* Terms list */
.terms-intro {
  background: var(--pink-lt); border-radius: var(--r-card);
  padding: var(--s3) var(--s4); margin-bottom: var(--s5);
}
.terms-intro p { font-size: 0.92rem; color: var(--mauve); line-height: 1.75; }
.terms-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.terms-item {
  display: flex; gap: var(--s3); align-items: flex-start;
  background: var(--white); border: 1.5px solid #ede8f0;
  border-radius: var(--r-card); padding: var(--s3) var(--s4);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.terms-item:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 14px rgba(245,142,204,0.1);
}
.terms-num {
  font-family: var(--ff-h); font-size: 1.4rem; font-weight: 700;
  color: var(--pink); opacity: 0.4; flex-shrink: 0;
  line-height: 1; padding-top: 4px;
}
.terms-body h4 {
  font-family: var(--ff-h); font-size: 0.98rem; font-weight: 700;
  color: var(--black); margin-bottom: 6px;
}
.terms-body p { font-size: 0.9rem; color: var(--mauve); line-height: 1.8; }

@media (max-width: 900px) {
  .ship-grid { grid-template-columns: 1fr; }
  .faq-tabs { gap: var(--s1); }
  .faq-tab { padding: var(--s1) var(--s2); font-size: 0.75rem; }
}
@media (max-width: 680px) {
  .terms-item { flex-direction: column; gap: var(--s1); }
  .faq-tabs { flex-direction: column; align-items: stretch; border-bottom: none; }
  .faq-tab { border-bottom: none; border-radius: var(--r-card); border: 1.5px solid #ede8f0; margin-bottom: 0; justify-content: center; }
  .faq-tab.active { background: var(--pink-lt); border-color: var(--pink); }
  .page-hero { min-height: 280px; }
  .page-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }
  .page-hero-cta {
    flex-direction: row;
    gap: var(--s2);
  }
  .hero-home { min-height: 100vh; }
  .hero-home .page-hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s2) var(--s4);
}
.nav-brand {
  display: flex; align-items: center; gap: var(--s2);
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s ease;
}
.nav-brand:hover { opacity: 0.7; }
.nav-logo {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo svg { width: 100%; height: 100%; }
.nav-title {
  font-family: var(--ff-h); font-size: 0.95rem;
  font-weight: 400; color: var(--black);
  letter-spacing: -0.01em;
}
.nav-title span {
  display: block; font-family: var(--ff-s);
  font-size: 0.65rem; font-weight: 400;
  color: var(--mauve); letter-spacing: 0.08em;
  margin-top: 1px; font-style: normal;
}
.nav-menu {
  display: flex; align-items: center; gap: var(--s1);
  list-style: none;
}
.nav-menu a {
  font-family: var(--ff-b); font-style: normal;
  font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--black); text-decoration: none;
  cursor: pointer; padding: var(--s1) var(--s2);
  border-radius: 6px; transition: all 0.2s ease;
  position: relative;
}
.nav-menu a:hover { color: var(--teal); background: var(--pink-lt); }
.nav-menu a.active { color: var(--black); }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  background: var(--pink); border-radius: 50%;
}
.nav-cta {
  font-family: var(--ff-b); font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.04em;
  background: var(--black); color: var(--white);
  border: none; border-radius: 100px;
  padding: 10px 24px; cursor: pointer;
  font-weight: 400; transition: all 0.25s ease;
  white-space: nowrap; text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--pink); color: var(--black);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: var(--s1);
  color: var(--black); transition: color 0.2s;
}
.nav-toggle:hover { color: var(--teal); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile Menu Overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.3); z-index: 90;
  opacity: 0; transition: opacity 0.3s ease;
}
.nav-overlay.open { display: block; opacity: 1; }
.nav-drawer {
  position: fixed; top: 0; right: -280px;
  width: 280px; height: 100vh; z-index: 95;
  background: var(--white);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.nav-drawer.open { right: 0; }
.nav-drawer-head {
  display: flex; justify-content: space-between;
  align-items: center; padding: var(--s3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-drawer-title {
  font-family: var(--ff-h); font-size: 0.9rem;
  font-weight: 400; color: var(--black);
}
.nav-drawer-close {
  background: none; border: none; cursor: pointer;
  padding: var(--s1); color: var(--mauve);
  transition: color 0.2s;
}
.nav-drawer-close:hover { color: var(--black); }
.nav-drawer-close svg { width: 20px; height: 20px; }
.nav-drawer-menu {
  list-style: none; padding: var(--s2) 0; flex: 1;
}
.nav-drawer-menu li { border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
.nav-drawer-menu a {
  display: block; font-family: var(--ff-b); font-style: normal;
  font-size: 0.9rem; color: var(--black); text-decoration: none;
  padding: var(--s3); cursor: pointer;
  transition: all 0.2s ease;
}
.nav-drawer-menu a:hover { background: var(--pink-lt); padding-left: var(--s4); }
.nav-drawer-menu a.active {
  background: var(--pink-lt); color: var(--teal);
}
.nav-drawer-cta {
  padding: var(--s3); margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-drawer-cta .nav-cta {
  width: 100%; display: block; text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--ff-b); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--r-btn);
  cursor: pointer; transition: all 0.25s;
  text-decoration: none; display: inline-block;
  border: 2px solid transparent;
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); }
.btn-secondary { background: var(--white); color: var(--black); border-color: var(--cyan); }
.btn-secondary:hover { background: var(--cyan-lt); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-pink:hover { background: #e878bb; border-color: #e878bb; }
.btn-outline-pink { background: transparent; color: var(--black); border-color: var(--pink); }
.btn-outline-pink:hover { background: var(--pink-lt); }
.btn-sm { padding: 8px 18px; font-size: 0.75rem; }

/* ===== PAGE ===== */
.page { min-height: 100vh; }

/* Page hero sits flush at the very top, behind the fixed nav (like the homepage hero) */
.page > .page-hero:first-child { margin-top: 0; }

/* ===== SECTION HEADER ===== */
.sec-head { text-align: center; padding: var(--s8) var(--s4) var(--s5); }
.sec-eyebrow {
  font-family: var(--ff-s); font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: var(--s2);
}
.sec-title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--black); margin-bottom: var(--s2); }
.sec-title em { font-style: italic; color: var(--teal); }
.sec-underline { width: 56px; height: 3px; background: var(--pink); border-radius: 2px; margin: 0 auto; }

/* ===== BANNER / CALLOUT ===== */
.banner { background: var(--pink); padding: var(--s6) var(--s4); text-align: center; }
.banner h2 { color: var(--white); margin-bottom: var(--s2); }
.banner p { color: rgba(255,255,255,0.88); font-size: 1rem; max-width: 560px; margin: 0 auto var(--s4); }

/* ===== COLLECTIONS ===== */
.coll-intro {
  max-width: 600px; margin: 0 auto; text-align: center;
  color: var(--mauve); font-size: 0.95rem;
  padding: 0 var(--s4) var(--s5);
}
.coll-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s3); max-width: 1200px; margin: 0 auto;
  padding: 0 var(--s4) var(--s8);
}
.coll-card {
  background: var(--white); border: 2px solid var(--cyan);
  border-radius: var(--r-card); overflow: hidden; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.coll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(161,143,154,0.18);
}
.coll-visual {
  height: 220px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.coll-v-rings { background: linear-gradient(135deg, var(--pink-lt), #fdd6ef); }
.coll-v-necklaces { background: linear-gradient(135deg, var(--cyan-lt), #c8f8fc); }
.coll-v-earrings { background: linear-gradient(135deg, #fffde8, #fdf5c0); }
.coll-v-bracelets { background: linear-gradient(135deg, #f0eaf4, #e6daea); }
.coll-info { padding: var(--s3) var(--s3) var(--s3); border-top: 2px solid var(--cyan); }
.coll-num {
  font-family: var(--ff-s); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mauve); margin-bottom: 4px;
}
.coll-name { font-family: var(--ff-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.coll-sub { font-size: 0.8rem; color: var(--teal); margin-bottom: var(--s2); }
.coll-btn {
  font-family: var(--ff-b); font-style: normal; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; width: 100%;
  padding: 10px; background: var(--yellow); color: var(--black);
  border: none; border-radius: var(--r-btn); cursor: pointer;
  transition: background 0.2s; font-weight: 400;
}
.coll-btn:hover { background: var(--yellow-dk); }

/* ===== MODAL ===== */
.modal-ov {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.45); align-items: center;
  justify-content: center; padding: var(--s4);
}
.modal-ov.open { display: flex; }
.modal-box {
  background: var(--white); max-width: 1000px; width: 100%;
  max-height: 88vh; overflow-y: auto; border-radius: var(--r-card);
}
.modal-head {
  background: var(--pink); padding: var(--s4) var(--s5);
  position: sticky; top: 0; z-index: 1;
}
.modal-head h2 { color: var(--white); font-size: 1.8rem; }
.modal-head p {
  color: rgba(255,255,255,0.75); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
}
.modal-close {
  position: absolute; top: var(--s3); right: var(--s3);
  background: rgba(255,255,255,0.25); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; color: var(--white);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.4); }
.items-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--s3); padding: var(--s4); background: #f9f6fb;
}
.item-card {
  background: var(--white); border-radius: var(--r-card);
  overflow: hidden; border: 1.5px solid #ede8f0;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.item-card:hover { box-shadow: 0 6px 24px rgba(245,142,204,0.14); }
.item-vis {
  height: 160px; background: var(--pink-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.item-body {
  padding: var(--s2) var(--s2) var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.item-name {
  font-family: var(--ff-h); font-size: 1rem; font-weight: 700;
  margin-bottom: 4px;
}
.item-mat {
  font-family: var(--ff-s); font-size: 0.7rem; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s1);
}
.item-desc {
  font-size: 0.83rem; color: var(--mauve); line-height: 1.6;
  margin-bottom: var(--s2);
  flex: 1;
}
.item-btn {
  display: block; text-align: center; width: 100%; padding: 9px;
  background: var(--yellow); color: var(--black); border: none;
  border-radius: var(--r-btn); font-family: var(--ff-b);
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; text-decoration: none;
  font-weight: 400;
  margin-top: auto;
}
.item-btn:hover { background: var(--yellow-dk); }

/* ===== EVENTS ===== */
.ev-tabs {
  display: flex; max-width: 720px; margin: 0 auto var(--s5);
  padding: 0 var(--s4); border-bottom: 2px solid #ede8f0;
}
.ev-tab {
  font-family: var(--ff-b); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 400; padding: var(--s2) var(--s3); cursor: pointer;
  border: none; background: none; color: var(--mauve);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.25s;
}
.ev-tab.active { color: var(--black); border-bottom-color: var(--pink); }
.ev-tab:hover { color: var(--teal); }
.ev-panel { display: none; padding: 0 var(--s4) var(--s8); max-width: 840px; margin: 0 auto; }
.ev-panel.active { display: block; }
.ev-art {
  display: grid; grid-template-columns: 100px 1fr; gap: var(--s4);
  align-items: start; padding: var(--s4) 0; border-bottom: 1px solid #ede8f0;
}
.ev-date {
  background: var(--pink); border-radius: var(--r-card);
  padding: var(--s2) var(--s1); text-align: center; color: var(--white);
}
.ev-month {
  font-family: var(--ff-s); font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85;
}
.ev-day { font-family: var(--ff-h); font-size: 2.2rem; font-weight: 700; line-height: 1.1; }
.ev-year { font-size: 0.7rem; opacity: 0.7; font-family: var(--ff-s); }
.ev-tag {
  display: inline-block; font-family: var(--ff-s); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px;
  background: var(--cyan-lt); color: var(--teal);
  border-radius: var(--r-btn); margin-bottom: var(--s1);
  border: 1px solid var(--cyan);
}
.ev-title { font-family: var(--ff-h); font-size: 1.4rem; font-weight: 700; margin-bottom: var(--s1); }
.ev-excerpt { font-size: 0.9rem; color: var(--mauve); line-height: 1.75; margin-bottom: var(--s1); }
.ev-meta { font-family: var(--ff-s); font-size: 0.78rem; color: var(--teal); }

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
  padding-top: var(--s2);
}
.gal-item {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--pink-lt);
}
.gal-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover img {
  transform: scale(1.04);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 142, 204, 0);
  transition: background 0.3s;
  border-radius: var(--r-card);
  pointer-events: none;
}
.gal-item:hover .gal-overlay {
  background: rgba(245, 142, 204, 0.15);
}
.gal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  color: var(--mauve);
}
.gal-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.35;
}
.gal-placeholder span {
  font-family: var(--ff-h);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== ABOUT ===== */
.about-section { padding: var(--s8) var(--s4); text-align: center; max-width: 800px; margin: 0 auto; }
.about-section p { color: var(--mauve); line-height: 1.8; }

/* WHY CHOOSE US */
.why-section { padding: var(--s8) var(--s4); background: #fdf5fb; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s3); max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: var(--white); border-radius: var(--r-card);
  border: 1.5px solid #ede8f0; padding: var(--s4) var(--s3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,142,204,0.12);
}
.why-icon {
  width: 52px; height: 52px; background: var(--pink-lt);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: var(--s3);
}
.why-title {
  font-family: var(--ff-h); font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: var(--s1);
}
.why-desc { font-size: 0.88rem; color: var(--mauve); line-height: 1.75; }

/* MISSION & VISION */
.mv-section { padding: var(--s8) var(--s4); background: var(--white); }
.mv-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s4); max-width: 1000px; margin: 0 auto;
}
.mv-card {
  border-radius: var(--r-card); padding: var(--s6) var(--s5);
  position: relative; overflow: hidden;
}
.mv-mission { background: linear-gradient(135deg, var(--pink) 0%, #e07ab8 100%); }
.mv-vision  { background: linear-gradient(135deg, var(--teal) 0%, #3a5557 100%); }
.mv-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.mv-icon {
  width: 56px; height: 56px; background: rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: var(--s3);
}
.mv-label {
  font-family: var(--ff-s); font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: var(--s1);
}
.mv-title {
  font-family: var(--ff-h); font-size: 1.25rem; font-weight: 700;
  color: var(--white); line-height: 1.35; margin-bottom: var(--s3);
}
.mv-body { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.8; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .why-grid { grid-template-columns: 1fr; }
}

.cred-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s3); max-width: 1000px; margin: 0 auto;
  padding: var(--s6) var(--s4);
}
.cred-card {
  background: var(--white); border: 2px solid var(--cyan);
  border-radius: var(--r-card); padding: var(--s4) var(--s3);
  text-align: center; transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.cred-card:hover {
  box-shadow: 0 6px 20px rgba(142,238,245,0.25);
  transform: translateY(-4px);
}
.cred-card:focus {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}
.cred-icon {
  width: 52px; height: 52px; background: var(--pink-lt);
  border-radius: 50%; margin: 0 auto var(--s3);
  display: flex; align-items: center; justify-content: center;
}
.cred-year {
  font-family: var(--ff-s); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: var(--s1);
}
.cred-title {
  font-family: var(--ff-h); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 4px; color: var(--black);
}
.cred-org {
  font-family: var(--ff-s); font-size: 0.78rem; color: var(--mauve);
}

/* TESTIMONIALS */
.testi-section { background: #fdf5fb; padding: var(--s8) var(--s4); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s3); max-width: 1000px; margin: var(--s5) auto 0;
}
.testi-card {
  background: var(--white); border: 1.5px solid #ede8f0;
  border-radius: var(--r-card); padding: var(--s4) var(--s3);
  position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: var(--s2); left: var(--s3);
  font-family: var(--ff-h); font-size: 4rem; color: var(--pink);
  opacity: 0.3; line-height: 1;
}
.testi-stars {
  color: var(--pink); font-size: 0.8rem;
  letter-spacing: 0.1em; margin-bottom: var(--s2);
}
.testi-text {
  font-family: var(--ff-b); font-style: italic; font-size: 0.95rem;
  color: var(--mauve); line-height: 1.75; margin-bottom: var(--s3);
}
.testi-auth { display: flex; align-items: center; gap: var(--s2); }
.auth-av {
  width: 38px; height: 38px; border-radius: 50%; background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-size: 0.78rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.auth-name { font-family: var(--ff-h); font-size: 0.9rem; font-weight: 700; color: var(--black); }
.auth-detail { font-family: var(--ff-s); font-size: 0.72rem; color: var(--mauve); }

/* ===== CONTACT ===== */
.contact-wrap { max-width: 880px; margin: 0 auto; padding: 0 var(--s4) var(--s8); }
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6);
  align-items: start;
}
.fb-card {
  background: var(--pink); border-radius: var(--r-card);
  padding: var(--s5) var(--s4); text-align: center;
}
.fb-icon {
  width: 60px; height: 60px; background: #1877F2; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s3); font-size: 1.5rem; color: var(--white);
  font-weight: 700; font-family: Georgia, serif;
}
.fb-card h3 {
  font-family: var(--ff-h); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: var(--s1);
}
.fb-card p {
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  margin-bottom: var(--s4); line-height: 1.7;
}
.btn-fb {
  display: block; text-align: center; background: #1877F2;
  color: var(--white); font-family: var(--ff-b); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 24px; text-decoration: none; border-radius: var(--r-btn);
  transition: background 0.25s; font-weight: 400;
}
.btn-fb:hover { background: #1464d4; }
.fb-card-extra {
  margin-top: var(--s4); padding-top: var(--s3);
  border-top: 1px solid rgba(255,255,255,0.25);
}
.fb-card-extra small {
  display: block; font-family: var(--ff-s); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: var(--s1);
}
.fb-card-extra p { color: rgba(255,255,255,0.88); font-size: 0.85rem; margin: 0; }
.how-order h3 { font-family: var(--ff-h); font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s4); }
.steps { list-style: none; }
.step {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s3) 0; border-bottom: 1px solid #ede8f0;
}
.step-num {
  font-family: var(--ff-h); font-size: 1.75rem; font-weight: 700;
  color: var(--pink); line-height: 1; flex-shrink: 0; width: 36px;
}
.step-title { font-family: var(--ff-h); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: 0.84rem; color: var(--mauve); }

/* ===== FOOTER ===== */
footer {
  background: var(--black); color: rgba(255,255,255,0.5);
  padding: var(--s6) var(--s4) var(--s4);
}
.foot-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--s8); align-items: start;
}
.foot-brand { display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s2); }
.foot-icon {
  width: 36px; height: 36px; background: var(--pink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.foot-name { font-family: var(--ff-h); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.foot-tag {
  font-family: var(--ff-b); font-style: italic; font-size: 0.88rem;
  color: rgba(255,255,255,0.4); margin-bottom: var(--s3);
}
.foot-copy {
  font-family: var(--ff-s); font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.foot-nav {
  display: grid; grid-template-columns: repeat(2, auto);
  gap: var(--s2) var(--s5);
}
.foot-nav a {
  font-family: var(--ff-b); font-style: normal; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  cursor: pointer; transition: color 0.2s;
}
.foot-nav a:hover { color: var(--pink); }
.foot-bottom {
  max-width: 1000px; margin: var(--s4) auto 0;
  padding-top: var(--s3); border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-family: var(--ff-s); font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: var(--s4); }
}
@media (max-width: 680px) {
  .nav-inner { padding: var(--s2) var(--s3); }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .coll-grid { grid-template-columns: 1fr; gap: var(--s2); }
  .feat-grid { grid-template-columns: 1fr; gap: var(--s2); }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gal-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .ev-art { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
