/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #2c2c2c;
  line-height: 1.7;
  background: #faf8f5;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; text-align: center; }
.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: #6b6b6b;
  font-size: 1.05rem;
}

.section { padding: 96px 0; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 44px; width: auto; }
.nav.scrolled .logo-img { height: 36px; }
.nav-links {
  list-style: none; display: flex; gap: 32px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff;
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: #2c2c2c; }
.nav-links a:hover { color: #8b6f47; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  margin: 5px 0; transition: background 0.3s;
}
.nav.scrolled .nav-toggle span { background: #2c2c2c; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  background: url('https://agency-submissions-r2.dave-d42.workers.dev/project-files/moon-rabbit-pottery/website-images/swapnil-dwivedi-pottery-1600.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative; text-align: center; max-width: 680px; padding: 0 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.8;
}
.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: #fff; color: #2c2c2c; }

/* ── About ───────────────────────────────────────────────── */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  max-height: 600px;
}
.about-text h2 { text-align: left; margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; color: #4a4a4a; font-size: 1.05rem; }

/* ── Feature Strip ───────────────────────────────────────── */
.feature-strip {
  height: 400px;
  overflow: hidden;
}
.feature-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery { background: #faf8f5; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.gallery-item { overflow: hidden; border-radius: 4px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-wide { grid-column: span 1; }

/* ── Classes ─────────────────────────────────────────────── */
.classes { background: #fff; }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.class-card {
  border-radius: 4px;
  overflow: hidden;
  background: #faf8f5;
  transition: box-shadow 0.3s, transform 0.3s;
}
.class-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.class-card-image { height: 240px; overflow: hidden; }
.class-card-image img { width: 100%; height: 100%; object-fit: cover; }
.class-card-body { padding: 28px 24px; }
.class-card-body h3 {
  font-size: 1.3rem; margin-bottom: 12px;
}
.class-card-body p {
  color: #5a5a5a; font-size: 0.95rem; margin-bottom: 16px;
}
.class-level {
  display: inline-block;
  padding: 4px 14px;
  background: #e8dfd4;
  color: #6b5a42;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  background: #3b3229;
  color: #f0ece6;
}
.contact-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.contact h2 { color: #f0ece6; }
.contact p { color: #c4b8a8; margin-bottom: 48px; font-size: 1.05rem; }
.contact-details {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.contact-item { text-align: center; }
.contact-item strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-bottom: 8px; color: #f0ece6;
}
.contact-item span { color: #c4b8a8; font-size: 0.95rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  background: #2c2520;
  text-align: center;
  color: #8a7e72;
  font-size: 0.85rem;
}
.footer-logo {
  height: 40px; margin: 0 auto 16px;
  filter: brightness(0) invert(1) opacity(0.6);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text h2 { text-align: center; }
  .classes-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-details { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; gap: 0;
    background: #2c2520; padding: 80px 40px;
    transition: right 0.3s;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: #f0ece6 !important; font-size: 1.1rem; padding: 12px 0; display: block; }
  .nav-toggle { display: block; }
  .feature-strip { height: 260px; }
  .section { padding: 64px 0; }
}
