:root {
  --ivory: #f6f1e8;
  --cream: #efe8dc;
  --sand: #d9cdb8;
  --stone: #8a7e6e;
  --espresso: #2c241c;
  --ink: #1a1612;
  --gold: #a68b5b;
  --paper: #fbfaf6;
  --border: #e4d9c8;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ivory);
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
h1, h2, h3, .wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button { font: inherit; cursor: pointer; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(228 217 200 / 0.8);
  background: rgb(246 241 232 / 0.92);
  backdrop-filter: blur(8px);
}
.bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-desk {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-desk a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav-desk a:hover { color: var(--espresso); }
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--espresso);
}
.logo svg { height: 2.5rem; width: auto; color: var(--gold); }
.logo-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  color: var(--espresso);
}
.foot-brand svg { height: 3.5rem; width: auto; color: var(--gold); }
.foot-brand .logo-name { font-size: 1.45rem; }
.foot-brand small {
  display: block;
  margin-top: 0.2rem;
  font-family: Outfit, sans-serif;
  font-size: 8px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.bar-right { margin-left: auto; display: flex; align-items: center; }
.bag {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--espresso);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: none;
  color: var(--espresso);
}
.drawer { display: none; border-top: 1px solid var(--border); background: var(--ivory); }
.drawer.open { display: flex; flex-direction: column; padding: 0.75rem 1rem 1rem; }
.drawer a {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
}
@media (min-width: 1024px) {
  .nav-desk { display: flex; }
  .menu-btn { display: none; }
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: var(--espresso);
  color: var(--ivory);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(26 22 18 / 0.7), rgb(26 22 18 / 0.2), rgb(26 22 18 / 0.1));
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 78vh;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero .kicker { color: var(--sand); letter-spacing: 0.28em; }
.hero h1 {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--ivory);
}
.lede {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
}
.row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  background: var(--espresso);
  color: var(--ivory);
  border: 0;
}
.btn:hover { background: var(--ink); }
.btn.inverse { background: var(--ivory); color: var(--espresso); }
.btn.inverse:hover { background: var(--cream); }
.btn.ghost {
  background: transparent;
  color: var(--ivory);
  box-shadow: inset 0 0 0 1px rgb(217 205 184 / 0.4);
}
.btn.ghost:hover { background: rgb(255 255 255 / 0.08); }
.btn.line {
  background: transparent;
  color: var(--espresso);
  box-shadow: inset 0 0 0 1px var(--sand);
}
.btn.line:hover { background: var(--cream); }

.wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  line-height: 1.1;
}
.muted { color: var(--stone); font-size: 0.95rem; line-height: 1.65; }
.link-quiet {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
}
.link-quiet:hover { text-decoration: underline; text-underline-offset: 4px; }

.rooms {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .rooms { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .rooms.five { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .rooms.four { grid-template-columns: repeat(4, 1fr); } }

.room {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
  color: var(--ivory);
}
.room img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.room:hover img { transform: scale(1.04); }
.room .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(26 22 18 / 0.55), transparent);
}
.room .cap { position: absolute; inset-inline: 0; bottom: 0; padding: 1.25rem; }
.room h3 { margin: 0; font-size: 1.75rem; color: var(--ivory); }
.room p { margin: 0.25rem 0 0; font-size: 0.875rem; color: rgb(239 232 220 / 0.9); }

.band { background: var(--cream); }
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split img { width: 100%; aspect-ratio: 3 / 4; }

.pieces {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .pieces { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1rem; } }
.piece img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.piece:hover img { transform: scale(1.03); }
.piece .meta {
  margin: 0.75rem 0 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.piece h3 {
  margin: 0.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--espresso);
}
.price { font-variant-numeric: tabular-nums; font-size: 1.35rem; margin: 1rem 0 0; color: var(--espresso); }
.size-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.size-btn {
  min-height: 2.75rem;
  padding: 0 0.9rem;
  font: inherit;
  font-size: 0.875rem;
  background: transparent;
  color: var(--espresso);
  box-shadow: inset 0 0 0 1px var(--sand);
  border: 0;
}
.size-btn span { display: block; font-size: 11px; opacity: 0.75; }
.float-bag {
  position: fixed;
  left: 1rem;
  bottom: 1.25rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.5rem;
  padding: 0 1.1rem;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  box-shadow: 0 8px 24px -12px rgb(26 22 18 / 0.35);
}
.float-count:empty { display: none; }
.float-count {
  min-width: 1.25rem;
  padding: 0 0.25rem;
  background: var(--gold);
  color: var(--espresso);
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.float-veil {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgb(26 22 18 / 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-veil.open { opacity: 1; pointer-events: auto; }
.float-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(26rem, 100%);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.float-panel.open { transform: translateX(0); }
.float-head, .float-foot { padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border); }
.float-foot { border-bottom: 0; border-top: 1px solid var(--border); margin-top: auto; }
.float-foot .btn { width: 100%; margin: 0.75rem 0 0.5rem; }
.float-foot .is-off { opacity: 0.4; pointer-events: none; }
.float-list { flex: 1; overflow: auto; padding: 1rem 1.25rem; }
.float-item { display: grid; grid-template-columns: 4rem 1fr auto; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.float-item img { width: 4rem; height: 4rem; object-fit: cover; background: var(--cream); }
.stars { display: flex; align-items: center; gap: 3px; margin: 8px 0 4px; }
.stars svg { width: 18px; height: 18px; }
.stars .n { margin-left: 6px; font-size: 12px; letter-spacing: 0.06em; }
.star-five { filter: drop-shadow(0 0 5px rgb(246 196 69 / 0.7)); }
.star-four { filter: drop-shadow(0 0 4px rgb(255 159 28 / 0.55)); }

.quotes {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .quotes { grid-template-columns: 1fr 1fr 1fr; } }
.quote {
  background: var(--paper);
  padding: 1.25rem;
  box-shadow: 0 0 0 1px rgb(26 22 18 / 0.06), 0 1px 2px -1px rgb(26 22 18 / 0.06);
}
.quote h3 { margin: 0; font-size: 1.25rem; color: var(--espresso); line-height: 1.3; }
.quote p { margin: 0.5rem 0 0; }
.quote .who {
  margin-top: 1rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.foot {
  display: grid;
  gap: 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
@media (min-width: 768px) { .foot { grid-template-columns: 1.2fr 1fr 1fr; } }
.foot .wordmark { position: static; transform: none; font-size: 1.5rem; }
.foot a { display: block; margin: 0.4rem 0; font-size: 0.875rem; color: var(--espresso); }
.foot a:hover { color: var(--gold); }
.copy {
  margin: 0;
  padding: 1rem 1.5rem;
  max-width: 80rem;
  margin-inline: auto;
  font-size: 0.75rem;
  color: var(--stone);
  border-top: 1px solid rgb(228 217 200 / 0.8);
}

form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; }
label { font-size: 0.8rem; letter-spacing: 0.04em; }
input, select, textarea {
  height: 2.75rem;
  padding: 0 0.9rem;
  border: 0;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--sand);
  font: inherit;
  color: var(--ink);
}
textarea { height: 8rem; padding: 0.9rem; }
#shop-root.pieces { display: grid; }
@media (max-width: 640px) {
  .wordmark { font-size: 1.45rem; }
  .hero-inner { padding: 3rem 1rem; }
  .wrap, .split, .foot { padding-left: 1rem; padding-right: 1rem; }
}
