/* ============================================================
   Lady Lee's — Website UI Kit styles
   Pairs with ../../colors_and_type.css (tokens + fonts)
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--pd-ink);
  background: var(--pd-cream);
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  min-height: 50px; min-width: 180px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 28px;
  font-family: var(--font-label); font-weight: 900; text-transform: uppercase;
  letter-spacing: .04em; font-size: .85rem;
  border-radius: var(--r-sm); border: none;
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--pd-red); color: #fff; box-shadow: var(--pd-shadow-sm); }
.btn--primary:hover { background: var(--pd-red-dark); }
.btn--secondary { background: var(--pd-cream); border: 2px solid var(--pd-red); color: var(--pd-teal-dark); }
.btn--secondary:hover { background: var(--pd-red); color: #fff; }
.btn--ghost { background: transparent; border: 1px solid var(--pd-red); color: var(--pd-red); }
.btn--ghost:hover { background: var(--pd-red); color: #fff; }
.btn--sm { min-height: 42px; min-width: 0; padding: 0 20px; font-size: .76rem; }

/* Laser button — spinning conic comet */
.btn--laser { position: relative; border: none; color: #fff; overflow: hidden; z-index: 1; background: var(--pd-teal); }
.btn--laser::before {
  content: ""; position: absolute; inset: -160%; z-index: -2;
  background: conic-gradient(from 0deg, transparent 0 68%, var(--pd-red) 84%, transparent 100%);
  animation: pd-laser-spin 3s linear infinite;
}
.btn--laser::after { content: ""; position: absolute; inset: 3px; z-index: -1; border-radius: 4px; background: var(--pd-teal); }
.btn--laser:hover::after { background: #3aa49a; }
@keyframes pd-laser-spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: var(--z-header-fixed);
  background: var(--pd-cream);
}
.hdr__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  max-width: 1280px; margin: 0 auto;
}
.hdr__logo { display: flex; align-items: center; gap: 12px; }
.hdr__logo img { height: 58px; width: auto; display: block; }
.hdr__nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.hdr__link {
  font-family: var(--font-label); font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; font-size: .82rem; color: var(--pd-teal-dark);
  position: relative; padding: 6px 0; background: none; border: none;
}
.hdr__link:hover { color: var(--pd-red); }
.hdr__link.is-active { color: var(--pd-teal-dark); }
.hdr__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--pd-red); border-radius: 2px;
}
.hdr__checker {
  height: 13px;
  background-image:
    linear-gradient(45deg, var(--pd-teal) 25%, transparent 25%, transparent 75%, var(--pd-teal) 75%),
    linear-gradient(45deg, var(--pd-teal) 25%, transparent 25%, transparent 75%, var(--pd-teal) 75%);
  background-size: 13px 13px; background-position: 0 0, 6.5px 6.5px;
  background-color: var(--pd-cream); opacity: .55;
}
.hdr__burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px; }
.hdr__burger span { width: 24px; height: 2.5px; background: var(--pd-teal-dark); border-radius: 2px; }

/* ---------- Starbursts ---------- */
.star { color: var(--pd-red); user-select: none; line-height: 1; display: inline-block; }
.star--teal { color: var(--pd-teal); }
.star--gold { color: var(--pd-gold); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--pd-cream); overflow: hidden; }
.hero__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(20px, 4vw, 48px) 0;
  position: relative; z-index: var(--z-hero-grid);
}
.hero__eyebrow { font-family: var(--font-script); color: var(--pd-red); font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 4px; }
.hero__title { font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark); font-size: clamp(2.6rem, 5.5vw, 4.6rem); line-height: 1; letter-spacing: -.015em; margin: 0; }
.hero__title em { font-style: normal; color: var(--pd-red); }
.hero__lede { font-family: var(--font-body); font-weight: 700; color: var(--pd-teal-dark); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.55; max-width: 30ch; margin: 22px 0 28px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__photo {
  position: relative; min-height: 460px;
  border-radius: var(--r-hero);
  background: var(--pd-teal-dark);
  border: 8px solid var(--pd-teal);
  box-shadow: var(--pd-shadow);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ph { /* placeholder panel */
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--pd-cream); text-align: center; padding: 24px;
}
.ph__label { font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; opacity: .85; }
.ph__sub { font-size: .72rem; opacity: .6; font-family: var(--font-body); }
.hero__star { position: absolute; z-index: calc(var(--z-hero-grid) + 1); }

/* ---------- Feature strip ---------- */
.fstrip {
  position: relative; z-index: var(--z-feature);
  margin-top: -2rem; background: var(--pd-teal);
}
.fstrip__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.feat { display: flex; align-items: center; gap: 16px; padding: 26px clamp(16px, 2vw, 28px); border-right: 1px solid var(--pd-cream-82); }
.feat:last-child { border-right: none; }
.feat__ic { position: relative; overflow: hidden; width: 58px; height: 58px; border-radius: var(--r-pill); background: var(--pd-cream); display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-weight: 900; font-size: .72rem; color: var(--pd-teal-dark); flex-shrink: 0; }
.feat__ic::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: url("assets/grain.png?v=3"); background-size: 220px 220px; background-repeat: repeat; opacity: .22; }
.feat__ic > * { position: relative; z-index: 1; }
.feat__t { font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; font-size: .76rem; color: #fff; }
.feat__d { font-family: var(--font-body); font-weight: 700; font-size: .76rem; color: var(--pd-cream); margin-top: 4px; }

/* ---------- Section: split ---------- */
.split { background: var(--pd-cream); padding: var(--sp-section) clamp(20px, 4vw, 48px); }
.split__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.split--rev .split__copy { order: 2; }
.split__eyebrow { font-family: var(--font-script); color: var(--pd-red); font-size: clamp(1.4rem, 2.4vw, 2rem); }
.split__title { font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark); font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: .98; margin: 4px 0 0; }
.split__title em { font-style: italic; display: block; }
.split__p { font-family: var(--font-body); font-weight: 700; color: var(--pd-teal-dark); line-height: 1.55; max-width: 34ch; margin: 20px 0 26px; }
.split__photo { min-height: 380px; border-radius: var(--r-lg); border: 6px solid var(--pd-teal); background: var(--pd-teal-dark); box-shadow: var(--pd-shadow); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.split__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Info cards row (on teal) ---------- */
.infoband { background: var(--pd-teal); padding: var(--sp-section) clamp(20px, 4vw, 48px); }
.infoband__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.icard { background: var(--pd-cream); border-radius: var(--r-md); padding: 32px 26px; box-shadow: var(--pd-shadow-card); text-align: center; }
.icard__ic { width: 70px; height: 70px; border-radius: var(--r-pill); background: var(--pd-cream); border: 2px solid var(--pd-teal); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-weight: 900; color: var(--pd-teal-dark); font-size: .9rem; }
.icard__h { font-family: var(--font-display); font-weight: 800; font-style: italic; color: var(--pd-teal-dark); font-size: 1.4rem; margin-bottom: 10px; }
.icard__p { font-family: var(--font-body); font-weight: 700; font-size: .88rem; color: var(--pd-ink); line-height: 1.5; }

/* ---------- Section heading ---------- */
.shead { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 48px); }
.shead__eyebrow { font-family: var(--font-script); color: var(--pd-red); font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
.shead__title { font-family: var(--font-display); font-weight: 800; color: var(--pd-teal-dark); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; margin: 2px 0 0; }
.shead__sub { font-family: var(--font-body); color: var(--pd-ink); margin-top: 14px; line-height: 1.6; }

/* ---------- Menu ---------- */
.menu { background: var(--pd-cream); padding: var(--sp-section) clamp(20px, 4vw, 48px); }
.menu__inner { max-width: 1100px; margin: 0 auto; }
.menu__tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.mtab { font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .05em; font-size: .78rem; padding: 11px 22px; border-radius: var(--r-pill); border: 2px solid var(--pd-teal); background: transparent; color: var(--pd-teal-dark); }
.mtab:hover { background: var(--pd-teal-soft); }
.mtab.is-active { background: var(--pd-teal); color: #fff; border-color: var(--pd-teal); }
.menu__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px; }
.mitem { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--pd-cream-deep); }
.mitem__name { font-family: var(--font-display); font-weight: 700; color: var(--pd-teal-dark); font-size: 1.18rem; white-space: nowrap; }
.mitem__badge { font-family: var(--font-label); font-weight: 900; font-size: .56rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--pd-red); padding: 3px 7px; border-radius: var(--r-sm); position: relative; top: -2px; }
.mitem__dots { flex: 1; border-bottom: 2px dotted var(--pd-cream-deep); transform: translateY(-4px); }
.mitem__price { font-family: var(--font-label); font-weight: 900; color: var(--pd-red); font-size: 1.05rem; }
.mitem__desc { font-family: var(--font-body); font-size: .82rem; color: var(--pd-ink-60); margin-top: 4px; line-height: 1.4; flex-basis: 100%; }

/* ---------- Gallery ---------- */
.gal { background: var(--pd-cream); padding: var(--sp-section) clamp(20px, 4vw, 48px); }
.gal__inner { max-width: 1180px; margin: 0 auto; }
.gal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gtile { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; border: 4px solid var(--pd-teal); background: var(--pd-teal-dark); position: relative; box-shadow: var(--pd-shadow-sm); }
.gtile--tall { grid-row: span 2; aspect-ratio: 4/7; }
.gtile img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact / Reserve ---------- */
.contact { background: var(--pd-teal-dark); padding: var(--sp-section) clamp(20px, 4vw, 48px); }
.contact__inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact__eyebrow { font-family: var(--font-script); color: var(--pd-pink); font-size: clamp(1.4rem, 2.4vw, 2rem); }
.contact__title { font-family: var(--font-display); font-weight: 800; color: var(--pd-cream); font-size: clamp(2rem, 4vw, 3rem); margin: 2px 0 18px; line-height: 1; }
.contact__info { font-family: var(--font-body); color: var(--pd-cream); line-height: 1.7; font-size: .95rem; }
.contact__info b { font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; color: var(--pd-pink); display: block; margin-top: 18px; }
.form { background: var(--pd-cream); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--pd-shadow); }
.field { margin-bottom: 16px; }
.field label { font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .05em; font-size: .66rem; color: var(--pd-teal-dark); display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--r-sm); border: 2px solid var(--pd-cream-deep);
  background: #fff; font-family: var(--font-body); font-size: .92rem; color: var(--pd-ink);
}
.field input::placeholder, .field textarea::placeholder { color: var(--pd-pink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pd-teal); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Footer ---------- */
.ftr { background: var(--pd-cream); border-top: 3px solid var(--pd-teal); padding: clamp(2.5rem,4vw,4rem) clamp(20px,4vw,48px) 2rem; }
.ftr__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.ftr__logo img { height: 84px; }
.ftr__tag { font-family: var(--font-script); color: var(--pd-red); font-size: 1.3rem; margin-top: 8px; }
.ftr h5 { font-family: var(--font-label); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; color: var(--pd-teal-dark); margin: 0 0 14px; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 9px; }
.ftr a { font-family: var(--font-body); font-size: .88rem; color: var(--pd-ink); }
.ftr a:hover { color: var(--pd-red); }
.ftr__copy { max-width: 1280px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--pd-cream-deep); font-family: var(--font-body); font-size: .76rem; color: var(--pd-ink-60); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Order toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 999;
  background: var(--pd-teal-dark); color: var(--pd-cream); padding: 16px 24px; border-radius: var(--r-md);
  box-shadow: var(--pd-shadow); font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; gap: 12px; animation: toast-in .3s ease; }
.toast .star { font-size: 1.1rem; }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__grid { gap: 28px; }
}
@media (max-width: 900px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { min-height: 340px; }
  .fstrip__inner { grid-template-columns: 1fr 1fr; }
  .feat:nth-child(2) { border-right: none; }
  .split__inner { grid-template-columns: 1fr; }
  .split--rev .split__copy { order: 0; }
  .infoband__inner { grid-template-columns: 1fr; }
  .menu__list { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .gal__grid { grid-template-columns: 1fr 1fr; }
  .ftr__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fstrip__inner { grid-template-columns: 1fr; }
  .feat { border-right: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .form__row { grid-template-columns: 1fr; }
  .gal__grid { grid-template-columns: 1fr; }
  .ftr__inner { grid-template-columns: 1fr; }
}
