@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #2b120b;
  --saffron: #f1b146;
  --ruby: #7a1b1d;
  --clay: #bf6a3a;
  --cream: #fff6ee;
  --rose: #f3e2d3;
  --sage: #3d4f3a;
  --white: #ffffff;
  --panel: rgba(255, 250, 244, 0.86);
  --panel-strong: #fffaf3;
  --shadow: 0 22px 48px rgba(35, 16, 10, 0.18);
  --shadow-soft: 0 14px 34px rgba(35, 16, 10, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(122, 27, 29, 0.15), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(241, 177, 70, 0.2), transparent 45%),
    radial-gradient(circle at 60% 85%, rgba(191, 106, 58, 0.18), transparent 50%),
    linear-gradient(180deg, #fff7ef 0%, #f1dfcd 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  overflow-x: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(35, 16, 10, 0.25);
}

.logo span {
  display: block;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--saffron);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, var(--ruby), var(--saffron));
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(143, 30, 46, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(143, 30, 46, 0.3);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(43, 18, 11, 0.2);
  box-shadow: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(43, 18, 11, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(43, 18, 11, 0.8);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ruby);
}

.hero-actions {
  margin: 22px 0 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: var(--rose);
  padding: 16px;
  border-radius: var(--radius-md);
}

.meta-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(43, 18, 11, 0.6);
}

.meta-value {
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 30px;
}

.hero-visual.poster-frame {
  padding: 16px;
}

.hero-visual.poster-frame::before {
  display: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 177, 70, 0.4), transparent 70%);
  z-index: 0;
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.poster-frame {
  background: #2a120b;
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 2 / 3;
  background: #1b0a06;
  border-radius: calc(var(--radius-md) - 4px);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  z-index: 2;
}

.carousel-button {
  background: rgba(255, 246, 238, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(35, 16, 10, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 246, 238, 0.4);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--saffron);
}

.badge,
.price-chip {
  position: absolute;
  z-index: 2;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(43, 18, 11, 0.1);
}

.badge {
  top: 22px;
  left: 18px;
}

.price-chip {
  bottom: 20px;
  right: 18px;
}

.posters {
  display: grid;
  gap: 28px;
}

.poster-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.poster-card {
  background: #2a120b;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  color: var(--cream);
}

.poster-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-md) - 6px);
}

.poster-card figcaption {
  font-size: 0.9rem;
  color: rgba(247, 239, 230, 0.8);
}

.section-heading {
  max-width: 560px;
  display: grid;
  gap: 16px;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p {
  color: rgba(43, 18, 11, 0.75);
  line-height: 1.6;
}

.feature-grid,
.product-grid,
.ritual-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature,
.ritual {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
  line-height: 1.6;
}

.feature h3,
.ritual h3 {
  margin: 10px 0 8px;
}

.feature-icon {
  font-weight: 700;
  color: var(--ruby);
  font-size: 18px;
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-info {
  padding: 18px 20px 22px;
  display: grid;
  gap: 8px;
}

.product-info p {
  color: rgba(43, 18, 11, 0.7);
  line-height: 1.5;
}

.rituals {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pricing-grid {
  margin-top: 32px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.pricing-table {
  background: var(--panel-strong);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.pricing-table h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.4rem;
}

.pricing-table ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-table li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  border-bottom: 1px dashed rgba(43, 18, 11, 0.2);
  padding-bottom: 8px;
  position: relative;
}

.pricing-table li span {
  font-weight: 500;
  color: rgba(43, 18, 11, 0.8);
}

.pricing-table li.best-value {
  background: rgba(241, 177, 70, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  border-bottom: none;
}

.pricing-table li.best-value em {
  position: absolute;
  right: 12px;
  top: -10px;
  background: var(--ruby);
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(122, 27, 29, 0.2);
}

.note {
  font-size: 0.9rem;
  color: rgba(43, 18, 11, 0.7);
}

.pricing-visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.enquiry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-card {
  background: var(--rose);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: grid;
  gap: 6px;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(43, 18, 11, 0.65);
}

.contact-value {
  font-weight: 600;
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(43, 18, 11, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  background: var(--white);
}

.faq {
  display: grid;
  gap: 28px;
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-card {
  background: var(--panel-strong);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.faq-card p {
  color: rgba(43, 18, 11, 0.75);
  line-height: 1.5;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(43, 18, 11, 0.6);
}

.site-footer {
  margin-top: 60px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-top: 20px;
  border-top: 1px solid rgba(43, 18, 11, 0.15);
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 246, 238, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.mobile-cta .button {
  padding: 10px 16px;
  font-size: 14px;
}

.small {
  font-size: 12px;
  color: rgba(43, 18, 11, 0.6);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 24px;
  }

  .hero-visual::before {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 20px 16px 32px;
  }

  .site-header {
    align-items: stretch;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .site-header .button.ghost {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .badge,
  .price-chip {
    position: static;
    margin-top: 12px;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-visual.poster-frame {
    width: 100%;
  }

  .hero-carousel {
    max-width: 100%;
  }

  .mobile-cta {
    display: flex;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    justify-content: space-between;
  }

  .site-footer {
    padding-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .button {
    transition: none;
  }
}
