:root {
  --purple: #952b8f;
  --dark-purple: #4d064b;
  --gold: #f6c931;
  --cream: #fff7d8;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cream);
  background: linear-gradient(180deg, var(--purple), #551052 60%, #350532);
}

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

.royal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--purple), var(--dark-purple));
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.topbar {
  width: min(1400px, 96vw);
  margin: 0 auto;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
  transition: height .35s ease, padding .35s ease, gap .35s ease;
  background-color: linear-gradient(135deg, var(--purple), var(--dark-purple));
}

.logo {
  width: clamp(170px, 21vw, 300px);
  height: auto;
  display: block;
  margin-top: 15px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.65));
  transition: width .35s ease, margin-top .35s ease, filter .35s ease;
}

.tagline {
  color: var(--gold);
  font-size: clamp(1.6rem, 3.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #b8860b, #f6c931, #fff2a3, #f6c931, #b8860b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 18px rgba(0,0,0,.55);
  transition: font-size .35s ease, transform .35s ease, letter-spacing .35s ease;
}

.phone {
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: .06em;
  text-shadow: 0 6px 16px rgba(0,0,0,.7);
  white-space: nowrap;
  transition: font-size .35s ease, transform .35s ease;
}

.royal-nav {
  margin-top: -10px;
  border-top: 1px solid rgba(246,201,49,.65);
  background: linear-gradient(180deg, #6f126a, #4d064b);
}

.menu-toggle { display: none; }

.menu-button {
  display: none;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 14px 5vw;
  cursor: pointer;
}

.menu {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  list-style: none;
  color: var(--gold);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: height .35s ease, font-size .35s ease, gap .35s ease;
}

.menu > li { position: relative; }

.menu a {
  display: block;
  padding: 10px 0;
  text-shadow: 0 4px 10px rgba(0,0,0,.65);
}

.menu a:hover { color: #fff2a3; }

.caret {
  display: inline-block;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--gold);
  vertical-align: middle;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: rgba(58, 6, 54, .98);
  border: 2px solid rgba(246,201,49,.75);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0,0,0,.45);
  transition: .2s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .95rem;
  white-space: nowrap;
}

.submenu a:hover { background: rgba(246,201,49,.14); }

.main {
  width: min(1400px, 94vw);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 84px) 0;
}

.intro {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.intro h1 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0,0,0,.5);
}

.intro p:last-child {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
  row-gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 200px;
  overflow: hidden;
  border-radius: 22px;
  border: 3px solid rgba(246,201,49,.55);
  background: linear-gradient(145deg, rgba(77,6,75,.85), rgba(149,43,143,.65));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 0 0 2px rgba(246,201,49,.35) inset,
    0 24px 46px rgba(0,0,0,.42),
    0 10px 22px rgba(0,0,0,.28),
    0 0 18px rgba(246,201,49,.18),
    inset 0 0 18px rgba(255,255,255,.10),
    inset 0 0 32px rgba(246,201,49,.12);
  transform: translateY(18px);
  opacity: 0;
  animation: tileFadeUp .75s ease forwards;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}

.tile:nth-child(1) { animation-delay: .04s; }
.tile:nth-child(2) { animation-delay: .08s; }
.tile:nth-child(3) { animation-delay: .12s; }
.tile:nth-child(4) { animation-delay: .16s; }
.tile:nth-child(5) { animation-delay: .20s; }
.tile:nth-child(6) { animation-delay: .24s; }
.tile:nth-child(7) { animation-delay: .28s; }
.tile:nth-child(8) { animation-delay: .32s; }
.tile:nth-child(9) { animation-delay: .36s; }
.tile:nth-child(10) { animation-delay: .40s; }
.tile:nth-child(11) { animation-delay: .44s; }
.tile:nth-child(12) { animation-delay: .48s; }

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

.tile:hover {
  transform: translateY(-10px) scale(1.025);
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(246,201,49,.6) inset,
    0 30px 58px rgba(0,0,0,.48),
    0 0 28px rgba(246,201,49,.55);
  filter: brightness(1.08);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  background: white;
}

.tile::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(120deg, transparent 0%, transparent 35%, rgba(255,242,163,.9) 48%, var(--gold) 52%, transparent 65%, transparent 100%);
  background-size: 240% 240%;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .25s ease;
}

.tile:hover::before {
  opacity: 1;
  animation: borderSweep 1.15s linear infinite;
}

@keyframes borderSweep {
  0% { background-position: 220% 0%; }
  100% { background-position: -80% 100%; }
}

.royal-footer {
  background: linear-gradient(135deg, #6f126a, #350532);
  border-top: 3px solid var(--gold);
  margin-top: 80px;
}

.footer-inner {
  width: min(1300px, 94vw);
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: min(250px, 70vw);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}

.footer-inner h4 {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-inner a { display: block; margin-bottom: 10px; }

.footer-phone {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(246,201,49,.35);
  text-align: center;
  padding: 18px 5vw;
  color: rgba(255,248,223,.82);
}

.royal-header.shrink .topbar {
  height: 76px;
  padding: 4px 0;
  gap: 18px;
}

.royal-header.shrink .logo {
  width: clamp(110px, 13vw, 180px);
  margin-top: 34px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.55));
}

.royal-header.shrink .phone {
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  transform: translateY(-2px);
}

.royal-header.shrink .tagline {
  font-size: clamp(1rem, 1.9vw, 2rem);
  letter-spacing: .05em;
  transform: translateY(-2px);
}

.royal-header.shrink .menu {
  height: 30px;
  font-size: clamp(.85rem, 1vw, 1rem);
  gap: clamp(18px, 4vw, 62px);
}

@media (max-width: 1050px) {
  .topbar { height: auto; flex-direction: column; padding: 16px 0; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .logo { width: min(78vw, 330px); margin-top: 0; }
  .phone { font-size: 1.45rem; }
  .tagline { font-size: clamp(1.3rem, 8vw, 2.2rem); white-space: normal; text-align: center; }
  .menu-button { display: block; }
  .menu { display: none; width: 100%; height: auto; flex-direction: column; align-items: stretch; gap: 0; padding: 0 5vw 18px; }
  .menu-toggle:checked ~ .menu { display: flex; }
  .menu a { padding: 14px 0; }
  .submenu { position: static; display: none; opacity: 1; visibility: visible; transform: none; min-width: 0; box-shadow: none; margin-bottom: 8px; }
  .has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; transform: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .tile { max-width: 260px; margin: 0 auto; }
}













.puffy-headers {
  width: min(100%, 1260px); /* match gallery width */
  margin: 0 auto;           /* center it */
}

.puffy-headers img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 3px solid rgba(246, 201, 49, 0.6);
  box-shadow:
    0 0 0 2px rgba(246, 201, 49, 0.25) inset,
    0 16px 32px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(246, 201, 49, 0.25);
}









/* Puffy Grid */
.puffy-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.puffy-product-card {
  border-radius: 22px;
  border: 3px solid rgba(246,201,49,.55);
  background: linear-gradient(145deg, rgba(77,6,75,.88), rgba(149,43,143,.66));
  box-shadow: 0 24px 46px rgba(0,0,0,.4);
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
}

.puffy-product-card h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.puffy-product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
}

.puffy-product-card ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.puffy-product-card li {
  margin-bottom: 6px;
}

.price {
  font-weight: bold;
  margin-bottom: 12px;
}

.price span {
  color: red;
  font-weight: 900;
}

.btn {
  background: linear-gradient(180deg, #fff2a3, var(--gold));
  color: #3b0638;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
}








.phone {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;

  padding: 8px 18px;
  border-radius: 999px;

  border: 2px solid rgba(246,201,49,0.5);
  background: rgba(0,0,0,0.25);

  box-shadow:
    0 6px 14px rgba(0,0,0,0.3),
    0 0 10px rgba(246,201,49,0.25);

  transition: all 0.25s ease;
}

.phone:hover {
  background: linear-gradient(180deg, #fff2a3, var(--gold));
  color: #3b0638;

  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.4),
    0 0 18px rgba(246,201,49,0.5);
}