
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-dark: #050608;
  --bg-muted: #151623;
  --bg-light: #f7f5f1;
  --accent: #d6aa4a;
  --text-dark: #181621;
  --text-light: #f9f9ff;
  --text-muted-dark: #5b5a68;
  --text-muted-light: #c7c8d8;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.18);
  --max-width: 1120px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #181a26 0, #05060a 55%, #050507 100%);
  color: var(--text-light);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.96), rgba(0,0,0,0.75));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1.5rem;
}

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text-muted-light);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.nav-link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, #e5c36b, #d6aa4a);
  color: #271c07;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(214, 170, 74, 0.65);
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #e5c36b, #d6aa4a);
  color: #271c07;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(214, 170, 74, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(214, 170, 74, 0.7);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(8, 8, 14, 0.7);
  color: var(--text-light);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 3.2rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.7rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.hero-text p {
  color: var(--text-muted-light);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.hero-tagline .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 170, 74, 0.8);
  font-size: 0.78rem;
  color: var(--accent);
}

.hero-media {
  position: relative;
}

/* Hero circles */
.hero-circles {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f7f5f1;
  box-shadow: var(--shadow-soft);
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-center {
  width: 55%;
  height: 55%;
  top: 18%;
  left: 25%;
}

.circle-left {
  width: 45%;
  height: 45%;
  bottom: 4%;
  left: 5%;
}

.circle-right {
  width: 45%;
  height: 45%;
  bottom: 0;
  right: 3%;
}

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.hero-logo-stamp img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section.light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section.light .section-title {
  color: var(--text-dark);
}

.section.light .section-intro,
.section.light p,
.section.light li {
  color: var(--text-muted-dark);
}

.section.muted {
  background: var(--bg-muted);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--text-muted-light);
  max-width: 32rem;
  font-size: 0.96rem;
}

/* Grids & cards */
.grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.two-col {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: flex-start;
}

.card {
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #181520, #08070c 60%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-subtle);
}

.section.light .card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
}

.card.highlight {
  border-color: rgba(214, 170, 74, 0.7);
  background: radial-gradient(circle at top left, rgba(214, 170, 74, 0.18), #09060b 65%);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted-light);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: var(--accent);
}

.section.light .check-list li {
  color: var(--text-muted-dark);
}

.note {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-top: 0.8rem;
}

.section.light .note {
  color: var(--text-muted-dark);
}

.bestsellers {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.bestsellers li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Blackboard */
.blackboard {
  display: flex;
  justify-content: center;
}

.blackboard-inner {
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  max-width: 480px;
  width: 100%;
  background: radial-gradient(circle at top left, #26262b, #050508 70%);
  color: #fefefe;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.blackboard-inner::before,
.blackboard-inner::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.15);
  pointer-events: none;
}

.chalk-main {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
}

.chalk-sub {
  font-size: 0.94rem;
  margin: 0;
}

/* Page hero */
.page-hero {
  padding: 3.2rem 0 2.4rem;
  background: radial-gradient(circle at top, #14141f, #05060a 65%);
}

.page-hero h1 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: var(--text-muted-light);
  font-size: 0.96rem;
}

.narrow {
  max-width: 640px;
}

/* Story */
.story-hero-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-logo-stamp img {
  height: 70px;
  width: auto;
  border-radius: 50%;
  border: 3px solid #f7f5f1;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.story-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.photo-note,
.hero-note,
.center.photo-note {
  color: var(--text-muted-dark);
  font-size: 0.8rem;
  margin-top: 0.6rem;
}

.center {
  text-align: center;
}

.story-gallery {
  margin-top: 1rem;
}

.story-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-gallery-item img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Doily effect */
.doily-frame {
  position: relative;
}

.doily-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  border: 10px dotted rgba(255,255,255,0.6);
  opacity: 0.4;
  pointer-events: none;
}

/* Products */
.product-section + .product-section {
  margin-top: 2.6rem;
}

.product-section h2 {
  margin-bottom: 0.4rem;
}

.product-section p {
  font-size: 0.94rem;
}

.product-card .product-image {
  margin: -0.6rem -0.6rem 0.9rem;
  border-radius: 14px;
  overflow: hidden;
}

.product-card .product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.meta {
  margin-top: 0.6rem;
  font-size: 0.82rem;
}

.meta-line {
  font-size: 0.82rem;
  margin: 0.4rem 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-block + .contact-block {
  margin-top: 1.1rem;
}

.contact-block h3 {
  margin-bottom: 0.25rem;
}

.contact-block p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted-dark);
}

.logo-panel img {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}

.map-card {
  display: block;
  text-decoration: none;
  margin-top: 0.5rem;
}

.map-card-inner {
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(214, 170, 74, 0.16), #181520 70%);
  color: var(--text-light);
  border: 1px solid rgba(214, 170, 74, 0.7);
  box-shadow: var(--shadow-soft);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.map-card-inner p {
  margin: 0 0 0.3rem;
  font-weight: 600;
}

.map-card-inner span {
  font-size: 0.86rem;
  color: var(--text-muted-light);
}

.map-card-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(214, 170, 74, 0.7);
}

/* CTA */
.section.cta {
  padding: 2.6rem 0 3.2rem;
}

.cta-inner {
  border-radius: 24px;
  border: 1px solid rgba(214, 170, 74, 0.7);
  background: radial-gradient(circle at top left, rgba(214, 170, 74, 0.18), #09060b 65%);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner p {
  color: var(--text-muted-light);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #05060a;
  padding: 2.2rem 0 2.4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-brand h3 {
  margin: 0;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  font-size: 0.86rem;
  color: var(--text-muted-light);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #7f8094;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-inner,
  .story-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-note {
    margin-top: 1.2rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    gap: 0.8rem;
  }

  .story-hero-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-inner {
    gap: 2rem;
  }

  .cta-inner {
    padding: 1.6rem 1.4rem;
  }
}


.blackboard {
    background: #000;
    color: #fff;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.blackboard .chalk-main {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}
.blackboard .chalk-sub {
    font-size: 1.8rem;
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255,235,59,0.8);
}


.blackboard {
    background: #000;
    padding: 80px 20px;
}
.blackboard .chalk-main {
    color: #fff !important;
    text-shadow: 0 0 15px rgba(255,255,255,1);
}
.blackboard .chalk-sub {
    color: #fff200 !important;
    text-shadow: 0 0 15px rgba(255,242,0,1);
}


/* Scroll reveal animations */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Slight hover lift for cards & gallery */
.card.reveal-up,
.gallery-item.reveal-up {
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.card.reveal-up:hover,
.gallery-item.reveal-up:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
