:root {
  --bg: #f8f7f3;
  --paper: rgba(255, 255, 255, 0.72);
  --ink: #121212;
  --muted: #68645f;
  --accent: #b9d4d8;
  --line: rgba(18, 18, 18, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 24%, rgba(185, 212, 216, 0.38), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 45%, #eee9df 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: .5;
  z-index: 0;
}
body::before {
  top: -18vw;
  right: -10vw;
  background: rgba(185, 212, 216, .45);
}
body::after {
  bottom: -22vw;
  left: -12vw;
  background: rgba(255, 255, 255, .7);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.hero {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 6vw, 84px);
  border: 1px solid var(--line);
  border-radius: clamp(28px, 5vw, 54px);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px);
}

.logo-card {
  width: min(820px, 100%);
  padding: clamp(10px, 3vw, 28px);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .08));
}

.tagline {
  margin: clamp(10px, 2vw, 20px) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: .04em;
  color: var(--muted);
}

.actions {
  margin-top: clamp(28px, 4vw, 46px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  min-width: 150px;
  padding: 14px 22px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.52);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  background: white;
}

.button.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.footer {
  margin-top: clamp(34px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .03em;
}

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

@media (max-width: 640px) {
  .hero {
    min-height: calc(100vh - 32px);
    border-radius: 30px;
  }
  .logo-card {
    padding: 0;
  }
  .actions {
    width: 100%;
  }
  .button {
    width: 100%;
  }
  .dot {
    display: none;
  }
  .footer {
    flex-direction: column;
  }
}

.small-link {
  align-self: flex-start;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-shell {
  place-items: start center;
}

.gallery-page {
  justify-content: flex-start;
  min-height: auto;
}

.gallery-logo-card {
  width: min(360px, 74%);
  margin-top: 18px;
}

.gallery-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .06));
}

.eyebrow {
  margin: 28px 0 8px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.03em;
}

.gallery-intro {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.gallery-actions {
  margin-top: 24px;
}

.gallery-grid {
  width: 100%;
  margin-top: clamp(32px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: white;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .small-link {
    align-self: center;
  }
}

.trial-center{margin-top:20px;display:flex;justify-content:center}
.gallery-page{max-width:900px;margin:auto}
.lux-card{margin:55px auto;text-align:center;width:100%}
.lux-card img{width:100%;border-radius:24px;display:block}
.lux-card h2{font-family:Georgia,serif;font-size:34px;font-weight:400;color:#111;margin:20px 0 10px}
.lux-card p{font-size:18px;color:#555;max-width:650px;margin:0 auto}
