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

:root {
  --beige: #e6edf7;
  --ivory: #f2f6fb;
  --gold: #8fb3d9;
  --black: #1b2330;
  --terracotta: #5c86b8;
  --text: #1f2a37;
  --muted: #5a6b7a;
  --border: rgba(27, 35, 48, 0.12);
  --shadow: 0 24px 60px rgba(27, 35, 48, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
}

body.is-coming-soon {
  background: #0b1120;
  color: #e2e8f0;
}

body.is-coming-soon header,
body.is-coming-soon main,
body.is-coming-soon footer {
  display: none;
}

.coming-soon {
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: radial-gradient(circle at top, #1e293b 0%, #0b1120 70%);
}

body.is-coming-soon .coming-soon {
  display: flex;
}

.coming-soon-content {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.stay-tuned {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 2px;
  animation: stay-tuned-pulse 2.6s ease-in-out infinite;
}

.coming-soon p {
  margin: 0;
  color: rgba(226, 232, 240, 0.75);
}

.brand-shine {
  display: inline-flex;
  gap: 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 1px;
  margin: 0;
}

.brand-shine span {
  display: inline-block;
  color: rgba(226, 232, 240, 0.45);
  text-shadow: none;
  animation: letter-glow 2.2s ease-in-out infinite;
}

.brand-shine span:nth-child(1) { animation-delay: 0s; }
.brand-shine span:nth-child(2) { animation-delay: 0.08s; }
.brand-shine span:nth-child(3) { animation-delay: 0.16s; }
.brand-shine span:nth-child(4) { animation-delay: 0.24s; }
.brand-shine span:nth-child(5) { animation-delay: 0.32s; }
.brand-shine span:nth-child(6) { animation-delay: 0.4s; }
.brand-shine span:nth-child(7) { animation-delay: 0.48s; }
.brand-shine span:nth-child(8) { animation-delay: 0.56s; }
.brand-shine span:nth-child(9) { animation-delay: 0.64s; }
.brand-shine span:nth-child(10) { animation-delay: 0.72s; }
.brand-shine span:nth-child(11) { animation-delay: 0.8s; }
.brand-shine span:nth-child(12) { animation-delay: 0.88s; }
.brand-shine span:nth-child(13) { animation-delay: 0.96s; }
.brand-shine span:nth-child(14) { animation-delay: 1.04s; }
.brand-shine span:nth-child(15) { animation-delay: 1.12s; }
.brand-shine span:nth-child(16) { animation-delay: 1.2s; }
.brand-shine span:nth-child(17) { animation-delay: 1.28s; }
.brand-shine span:nth-child(18) { animation-delay: 1.36s; }

@keyframes letter-glow {
  0%,
  100% {
    color: rgba(226, 232, 240, 0.45);
    text-shadow: none;
    transform: translateY(0);
  }
  50% {
    color: #e2e8f0;
    text-shadow: 0 0 12px rgba(159, 196, 255, 0.9);
    transform: translateY(-2px);
  }
}

.hourglass {
  position: relative;
  width: 72px;
  height: 110px;
  border-radius: 14px;
  border: 2px solid rgba(226, 232, 240, 0.4);
  overflow: hidden;
}

.hourglass::before,
.hourglass::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.hourglass::before {
  top: 10px;
  border-bottom: 44px solid rgba(226, 232, 240, 0.08);
}

.hourglass::after {
  bottom: 10px;
  border-top: 44px solid rgba(226, 232, 240, 0.08);
}

.sand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
}

.sand-top {
  top: 16px;
  border-bottom: 36px solid #9fc4ff;
  animation: sand-top 3.2s ease-in-out infinite;
}

.sand-bottom {
  bottom: 16px;
  border-top: 0 solid #9fc4ff;
  animation: sand-bottom 3.2s ease-in-out infinite;
}

.sand-stream {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 3px;
  height: 0;
  background: #9fc4ff;
  transform: translateX(-50%);
  animation: sand-stream 3.2s ease-in-out infinite;
}

@keyframes stay-tuned-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sand-top {
  0% {
    border-bottom-width: 36px;
    opacity: 1;
  }
  100% {
    border-bottom-width: 2px;
    opacity: 0.35;
  }
}

@keyframes sand-bottom {
  0% {
    border-top-width: 0;
  }
  100% {
    border-top-width: 36px;
  }
}

@keyframes sand-stream {
  0% {
    height: 0;
    opacity: 0.6;
  }
  40% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0.6;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.4px;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

p {
  margin: 0 0 16px;
}

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

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 246, 251, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 14px 40px rgba(18, 18, 18, 0.12);
  background: rgba(242, 246, 251, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--ivory);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu.is-open {
  display: grid;
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  z-index: 40;
  padding: 96px 24px 24px;
}

.mobile-menu-content {
  background: var(--ivory);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.mobile-menu-content a {
  font-size: 1.05rem;
  font-weight: 500;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
}

.brand-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a.active {
  color: var(--terracotta);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--ivory);
}

.btn-primary:hover {
  background: #2a2a2a;
}

.btn-ghost {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--ivory);
}

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(120deg, #f2f6fb 0%, #dce8f6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}


.image-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.image-placeholder {
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e6edf7, #8fb3d9);
  display: grid;
  place-items: center;
  color: rgba(18, 18, 18, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover .image-placeholder {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.image-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: #eaf1f9;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--beige);
  font-size: 0.85rem;
  color: var(--text);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--ivory);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.list {
  padding-left: 18px;
  margin: 18px 0;
  color: var(--muted);
}

.section-cta {
  margin-top: 32px;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery .image-placeholder {
  height: 200px;
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 6px;
  border-radius: 12px;
}

.testimonials {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.signature {
  margin-top: 16px;
  font-weight: 500;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.footer {
  background: var(--black);
  color: var(--ivory);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 32px;
}

.footer-activities {
  margin-bottom: 40px;
}

.footer-activity h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
}

.footer-activity p {
  margin: 0 0 8px;
  color: rgba(248, 242, 233, 0.8);
}

.footer p {
  color: rgba(248, 242, 233, 0.8);
}

.newsletter {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 242, 233, 0.3);
  background: transparent;
  color: var(--ivory);
}

.newsletter input::placeholder {
  color: rgba(248, 242, 233, 0.6);
}

.newsletter .form-status {
  flex-basis: 100%;
  color: rgba(248, 242, 233, 0.7);
}

.footer .form-status {
  color: rgba(248, 242, 233, 0.7);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(248, 242, 233, 0.15);
  padding-top: 18px;
}

.footer-links a {
  color: rgba(248, 242, 233, 0.8);
}

.page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(120deg, #f2f6fb 0%, #e3edf9 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--ivory);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--black);
  color: var(--ivory);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--ivory);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.product-card .image-placeholder {
  height: 180px;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  align-self: flex-start;
  background: var(--beige);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.price {
  font-weight: 600;
}

.event-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.form-status {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--black);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.7);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  background: var(--ivory);
  border-radius: 24px;
  padding: 24px;
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}

.lightbox-image {
  width: 100%;
  border-radius: 16px;
  max-height: 420px;
  object-fit: cover;
}

.lightbox-placeholder {
  height: 320px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e6edf7, #8fb3d9);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(18, 18, 18, 0.55);
}

.lightbox-caption {
  margin: 16px 0 0;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: var(--black);
  color: var(--ivory);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.event-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.slider-track {
  overflow: hidden;
}

.slider-slide {
  display: none;
  text-align: center;
}

.slider-slide.is-active {
  display: grid;
  gap: 12px;
}

.slider-btn {
  border: 1px solid var(--border);
  background: var(--ivory);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: var(--black);
  color: var(--ivory);
}

.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 32px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.cart-item-title {
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-btn,
.remove-btn {
  border: 1px solid var(--border);
  background: var(--ivory);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.remove-btn {
  color: var(--terracotta);
}

.cart-summary {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--ivory);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.summary-row.total {
  font-weight: 600;
  font-size: 1.1rem;
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed var(--border);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    padding: 96px 0 64px;
  }

  .newsletter {
    flex-direction: column;
  }

  .cart-grid {
    grid-template-columns: 1fr;
  }
}
