/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand colors dari logo */
  --yellow:       #F0E89C;   /* lingkaran logo */
  --yellow-deep:  #E0D678;   /* kuning lebih dalam */
  --yellow-pale:  #FAF6D8;   /* kuning sangat terang */
  --rose:         #917878;   /* teks logo */
  --rose-dark:    #7A6060;   /* rose lebih gelap */
  --rose-light:   #C4A8A8;   /* rose muda */
  --rose-pale:    #F5EDED;   /* rose sangat pucat */

  /* Netral */
  --cream:        #FDFAF3;
  --cream-2:      #F7F3E8;
  --cream-3:      #EDE8D8;
  --white:        #FFFFFF;
  --dark:         #2E2828;
  --dark-2:       #3D3535;
  --text:         #3C3030;
  --text-muted:   #9B8E8E;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-pill:  50px;

  --shadow-sm:    0 2px 12px rgba(145,120,120,0.08);
  --shadow-md:    0 8px 32px rgba(145,120,120,0.14);
  --shadow-lg:    0 20px 60px rgba(145,120,120,0.18);
  --shadow-rose:  0 8px 28px rgba(145,120,120,0.25);
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  color-scheme: light;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

main {
  min-height: 60vh;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(145,120,120,0.12);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(145,120,120,0.15);
  transition: transform 0.3s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(145,120,120,0.35);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--rose-dark);
  border: 1.5px solid var(--yellow-deep);
}
.btn-secondary:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose-light);
}
.btn-outline:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--rose);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--rose-pale);
  transform: translateY(-2px);
}

.btn-large { padding: 1.1rem 2.8rem; font-size: 0.88rem; }
.btn-wa { width: 100%; text-align: center; }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(46, 30, 30, 0.65) 0%,
    rgba(70, 50, 45, 0.50) 50%,
    rgba(46, 30, 30, 0.70) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 0 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(240,232,156,0.45);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  color: var(--yellow);
  font-style: italic;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.9;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== ABOUT ===== */
.about {
  padding: 7rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}


.about-text h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-lead {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 1rem !important;
  line-height: 1.7;
}

.about-text-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.about-text .btn { margin-top: 1.5rem; }

/* About home — photo + facts layout */
.about-visual-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-home-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(145,120,120,0.15);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

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

.about-home-facts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  border: 1.5px solid var(--yellow);
}

.about-home-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.about-home-fact .fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.about-home-fact .fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose);
}

.about-home-fact-divider {
  width: 1px;
  height: 36px;
  background: rgba(145,120,120,0.2);
  flex-shrink: 0;
}

.about-highlights { display: flex; flex-direction: column; gap: 1.1rem; }

.highlight-card {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s;
  border: 1.5px solid transparent;
}

.highlight-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
  background: var(--yellow-pale);
}

.highlight-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--rose-dark);
}

.highlight-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.highlight-card p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* ===== FEATURED / SECTIONS ===== */
.featured {
  padding: 7rem 0;
  background: var(--cream-2);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.8;
}

.section-footer { text-align: center; margin-top: 3.5rem; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(145,120,120,0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(145,120,120,0.15);
}

.product-image-wrapper { overflow: hidden; }

/* Card carousel */
.card-carousel {
  position: relative;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  color: var(--dark);
}

.card-carousel:hover .carousel-btn { opacity: 1; }

.carousel-btn-prev { left: 0.5rem; }
.carousel-btn-next { right: 0.5rem; }

.carousel-btn:hover { background: white; }

.carousel-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

.product-image-placeholder {
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--yellow) 60%, var(--cream-3) 100%);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--rose);
  transition: transform 0.4s;
  position: relative;
}

.product-card:hover .product-image-placeholder { transform: scale(1.05); }

.product-image-placeholder.large { height: 440px; font-size: 5rem; }

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-img-large {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.product-info { padding: 1.5rem; }

.product-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.product-info h3 {
  margin: 0.85rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
}

.product-desc {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.75;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 1.25rem;
}

.product-price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin: 0.75rem 0 1.5rem;
}

.product-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(160deg, var(--yellow-pale) 0%, var(--yellow) 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page-hero .section-badge { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--rose-dark);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* ===== CATALOG ===== */
.catalog-section { padding: 5rem 0; }

.catalog-filters {
  margin-bottom: 3rem;
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.filter-group + .filter-group {
  border-top: 1px solid var(--cream-3);
}

.filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 5rem;
  flex-shrink: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.45rem 1.25rem;
  border: 1.5px solid transparent;
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--rose-light);
  color: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  box-shadow: 0 4px 14px rgba(46,40,40,0.22);
}

.product-collection-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.65rem;
  margin-bottom: 0.25rem;
}

.no-results {
  text-align: center;
  padding: 4rem 0;
  color: var(--dark);
  opacity: 0.5;
  font-style: italic;
}

.category-title {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: 0.3px;
}

.category-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, var(--yellow), transparent);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 5rem 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--rose); }

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 2rem;
}

.gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-md);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--cream-2);
  transition: border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.gallery-thumb:hover {
  border-color: var(--rose-light);
  transform: translateY(-2px);
}

.gallery-thumb.active {
  border-color: var(--rose);
}

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

.product-detail-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.product-detail-info h1 {
  font-size: 2.2rem;
  color: var(--dark);
  margin: 0.75rem 0;
}

.divider {
  width: 60px;
  height: 2.5px;
  background: linear-gradient(to right, var(--rose), var(--rose-light));
  border-radius: 3px;
  margin: 1.5rem 0;
}

.product-description h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-description p {
  color: var(--text);
  line-height: 1.9;
  font-size: 1rem;
}

.product-order {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ===== CONTACT ===== */
.contact-section { padding: 5rem 0; }

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(145,120,120,0.1);
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
  background: var(--yellow-pale);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(145,120,120,0.08);
}

.contact-form-box h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-form-box > p {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.75;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(145,120,120,0.15);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: all 0.3s;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--rose-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(145,120,120,0.1);
}

textarea.form-input { resize: vertical; }

/* ===== ABOUT PAGE ===== */
.about-page-section { padding: 5rem 0; }

.about-page-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-page-text h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.about-page-text .about-page-lead {
  font-size: 1.1rem;
  color: var(--rose-dark);
  font-style: italic;
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.about-page-text p {
  color: var(--text);
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.about-page-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-page-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(145,120,120,0.2);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

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

.about-page-emblem {
  width: 220px;
  height: 220px;
  background: linear-gradient(145deg, var(--yellow), var(--yellow-pale));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(145,120,120,0.15);
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 1.5rem;
}

.emblem-ring {
  font-size: 2.5rem;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.emblem-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.emblem-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  line-height: 1.4;
}

.about-page-facts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(145,120,120,0.1);
  width: 100%;
  justify-content: center;
}

.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.fact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fact-divider {
  width: 1px;
  height: 36px;
  background: rgba(145,120,120,0.15);
}

.about-page-values { margin-bottom: 6rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(145,120,120,0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 1.6rem;
  color: var(--rose);
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.value-card p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.85;
  opacity: 0.8;
}

.about-page-cta {
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--yellow) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(145,120,120,0.1);
}

.cta-content h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--rose-dark);
  font-size: 1rem;
  line-height: 2;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

footer span { color: var(--yellow); }

/* ===== LEARN TEASER (homepage) ===== */
.learn-teaser {
  background: var(--dark);
  padding: 7rem 0;
}
.learn-teaser-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.learn-teaser-text .section-badge { background: rgba(240,232,156,0.15); color: var(--yellow); }
.learn-teaser-text h2 { font-size: 2.4rem; color: var(--white); margin: 1rem 0; }
.learn-teaser-text p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; }
.learn-teaser-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.learn-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,232,156,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.learn-play-icon {
  font-size: 3rem;
  color: var(--yellow);
  width: 80px;
  height: 80px;
  background: rgba(240,232,156,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.learn-visual-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
.learn-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.learn-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--yellow);
  width: 40px;
  flex-shrink: 0;
}

/* ===== LESSONS PAGE ===== */
.lessons-section { padding: 5rem 0 7rem; }
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.lesson-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lesson-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lesson-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}
.lesson-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.lesson-card:hover .lesson-thumbnail img { transform: scale(1.04); }
.lesson-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--rose-light);
}
.lesson-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,40,40,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.lesson-card:hover .lesson-play-overlay { opacity: 1; }
.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.2rem;
  padding-left: 4px;
}
.lesson-number {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}
.lesson-info { padding: 1.5rem; }
.lesson-info h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); }
.lesson-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.5; }
.lessons-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
  margin-bottom: 5rem;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.lessons-empty h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text); }

/* Private session banner */
.private-session-banner {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
}
.private-session-content .section-badge { background: rgba(240,232,156,0.15); color: var(--yellow); }
.private-session-content h2 { font-size: 2.2rem; color: var(--white); margin: 1rem 0; }
.private-session-content > p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 2rem; }
.private-session-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.ps-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.ps-icon { color: var(--yellow); }
.ps-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== LESSON SHOW PAGE ===== */
.lesson-show-section { padding: 3rem 0 6rem; }
.lesson-breadcrumb { margin-bottom: 2rem; }
.lesson-breadcrumb a { color: var(--rose); font-size: 0.9rem; }
.lesson-breadcrumb a:hover { color: var(--rose-dark); }
.lesson-show-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--cream-3);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.lesson-detail-content .section-badge { margin-bottom: 0.75rem; }
.lesson-detail-content h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.lesson-full-desc { color: var(--text-muted); line-height: 1.8; }
.lesson-full-desc p { margin-bottom: 1rem; }
.lesson-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card-light { background: var(--cream-2); box-shadow: none; }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-features li { font-size: 0.88rem; color: var(--text-muted); }
.sidebar-lesson {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-3);
}
.sidebar-lesson:last-child { border-bottom: none; margin-bottom: 0; }
.sidebar-lesson a { display: flex; align-items: center; gap: 0.75rem; }
.sidebar-lesson img {
  width: 64px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sidebar-thumb-placeholder {
  width: 64px;
  height: 36px;
  background: var(--cream-3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.sidebar-lesson span { font-size: 0.85rem; color: var(--text); line-height: 1.4; }
.sidebar-lesson a:hover span { color: var(--rose); }
.text-muted-sm { font-size: 0.85rem; color: var(--text-muted); }

/* ===== ADMIN FORM HINT ===== */
.input-hint { font-size: 0.78rem; color: var(--text-muted, #9B8E8E); margin-top: 0.4rem; }

/* ===== HAMBURGER NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--rose-pale); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
nav.nav-expanded .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
nav.nav-expanded .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-expanded .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BLOG / JOURNAL ===== */
.blog-hero {
  background: var(--cream-2);
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.blog-hero-text .section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.blog-hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--dark);
  margin: 0 0 1rem;
}

.blog-hero-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.blog-section { padding: 4rem 0 6rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-2);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-card-meta time {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--dark);
  text-decoration: none;
}

.blog-card-title a:hover { color: var(--rose-dark); }

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--rose);
  text-decoration: none;
  margin-top: 0.25rem;
}

.blog-read-more:hover { color: var(--rose-dark); }

.blog-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

/* Article show */
.article-section { padding: 5rem 0; }

.article-content {
  max-width: 760px;
  margin: 2rem auto 0;
}

.article-header { margin-bottom: 2rem; }

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--dark);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.3;
}

.article-cover {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  aspect-ratio: 16 / 7;
}

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

.article-body {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 1.4rem;
}

.article-footer { margin-top: 3rem; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ===== COMMENTS ===== */
.comments-section {
  max-width: 760px;
  margin: 3rem auto 0;
}

.comments-divider {
  height: 1px;
  background: rgba(145,120,120,0.15);
  margin-bottom: 2.5rem;
}

.comments-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin: 0 0 1.25rem;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.comment-item {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.comment-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.comment-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.comment-body {
  color: var(--dark);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

.comment-form-wrap {
  background: var(--cream-2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 1rem;
}

.comment-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: -0.75rem 0 1.5rem;
}

.comment-form { display: flex; flex-direction: column; gap: 1rem; }

.comment-form .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.comment-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.comment-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(145,120,120,0.25);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.comment-input:focus {
  outline: none;
  border-color: var(--rose-light);
}

.comment-textarea { resize: vertical; min-height: 100px; }

.comment-errors {
  background: #fff0f0;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #b00;
  font-size: 0.88rem;
}

.comment-reply {
  margin-top: 0.85rem;
  margin-left: 1.5rem;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border-left: 3px solid var(--rose-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.comment-reply-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.comment-reply-author {
  font-weight: 700;
  color: var(--rose-dark);
  font-size: 0.9rem;
}

/* admin checkbox */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.8rem; }
  .about-content,
  .about-page-intro,
  .product-detail-content,
  .contact-content { grid-template-columns: 1fr; gap: 3rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page-text p { max-width: 100%; }
  .about-visual-right { width: 100%; }
  .about-home-photo { width: 240px; height: 240px; }
  .about-home-facts { padding: 1rem 1.25rem; gap: 1rem; }
  .learn-teaser-content { grid-template-columns: 1fr; gap: 3rem; }
  .lessons-grid { grid-template-columns: repeat(2, 1fr); }
  .lesson-show-layout { grid-template-columns: 1fr; }
  .lesson-sidebar { position: static; }
  .product-gallery { position: static; }
  .private-session-banner { padding: 3rem 2rem; }
  .private-session-features { gap: 1.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-text h1 { font-size: 2.2rem; }
}

@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }

  .nav-hamburger { display: flex; }

  .nav-container { flex-wrap: wrap; }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(145,120,120,0.12);
  }
  .nav-links.nav-open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(145,120,120,0.07); }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .nav-links a::after { display: none; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-tagline { font-size: 0.92rem; }
  .page-hero { padding: 3.5rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-buttons,
  .cta-buttons { flex-direction: column; align-items: center; }
  .about-page-cta { padding: 2.5rem 1.5rem; }
  .about-home-facts { flex-wrap: wrap; justify-content: center; }
  .about-home-fact-divider { display: none; }
  .about-text-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .lessons-grid { grid-template-columns: 1fr; }
  .learn-teaser-btns,
  .ps-cta { flex-direction: column; align-items: stretch; }
  .contact-form-box { padding: 1.75rem 1.25rem; }
  .private-session-banner { padding: 2.5rem 1.25rem; }
  .container { padding: 0 1.25rem; }
  .product-detail { padding: 3rem 0; }
  .catalog-section { padding: 3rem 0; }
  .about-page-section { padding: 3rem 0; }
  .about-page-intro { margin-bottom: 3rem; }
  .about-page-values { margin-bottom: 3rem; }
  .btn-large { padding: 1rem 2rem; font-size: 0.85rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-header h1 { font-size: 1.8rem; }
  .blog-section { padding: 2.5rem 0 4rem; }
  .blog-hero { padding: 3.5rem 0 2.5rem; }
}
