/* ════════════════════════════════════════════════════════════
   STUDIO AURORA · ATELIER EDITION
   Nowa architektura: glass cards, bento, tabbed services,
   slide-in drawer, full-bleed contact, floating CTA.
   ════════════════════════════════════════════════════════════ */

:root {
  --cream:     #fbf7f2;
  --cream-2:   #f5ece5;
  --cream-3:   #ecd9d2;
  --rose:      #d4869a;
  --rose-mid:  #e0a3b3;
  --rose-pale: #f9eaef;
  --rose-soft: #f4dde2;
  --brown:     #2c1e18;
  --brown-mid: #7a5c54;
  --brown-lt:  #a8887e;
  --gold:      #c9a882;
  --gold-soft: #e0ccb0;
  --white:     #ffffff;
  --error:     #c14a4a;

  --shadow-1:  0 4px 24px rgba(44, 30, 24, .06);
  --shadow-2:  0 18px 50px rgba(44, 30, 24, .12);
  --shadow-3:  0 32px 90px -20px rgba(212, 134, 154, .25);

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans:  "Manrope", system-ui, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open,
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
button { font-family: var(--sans); cursor: pointer; border: 0; background: none; color: inherit; }
button:disabled { cursor: not-allowed; }
input { font-family: var(--sans); }
::selection { background: var(--rose-soft); color: var(--brown); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.05; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .28em; text-transform: uppercase;
  font-weight: 500; color: var(--rose);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--rose); }

em { font-style: italic; color: var(--rose); }
.serif { font-family: var(--serif); }

/* ════════════ GLASS CARD primitive ════════════ */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-2);
  border-radius: 20px;
}

/* ════════════ BUTTONS ════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-size: .85rem; font-weight: 500; letter-spacing: .04em;
  font-family: var(--sans);
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, gap .25s;
}
.btn i { font-style: normal; transition: transform .25s; }
.btn:hover { transform: translateY(-1px); gap: 14px; }
.btn:hover i { transform: translateX(2px); }

.btn--primary {
  background: var(--brown); color: var(--cream);
  box-shadow: 0 8px 28px rgba(44, 30, 24, .25);
}
.btn--primary:hover { background: var(--rose); box-shadow: 0 12px 36px rgba(212, 134, 154, .35); }
.btn--primary:disabled { opacity: .4; transform: none; box-shadow: 0 4px 16px rgba(44, 30, 24, .15); }

.btn--ghost {
  background: transparent; color: var(--brown);
  border: 1.5px solid var(--cream-3);
}
.btn--ghost:hover { background: var(--cream-2); border-color: var(--rose-mid); }
.btn--on-dark { background: var(--white); color: var(--brown); border-color: transparent; box-shadow: var(--shadow-2); }
.btn--on-dark:hover { background: var(--rose); color: var(--white); }
.btn--on-dark strong { font-family: var(--serif); font-weight: 500; }

.btn--block { width: 100%; justify-content: center; }

/* ════════════ NAV ════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  grid-template-areas: "logo links cta burger";
  align-items: center;
  padding: 0 var(--gutter);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.is-scrolled {
  height: 60px;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(44, 30, 24, .06);
}
.nav__logo {
  grid-area: logo;
  font-family: var(--serif); font-size: 1.45rem;
  color: var(--brown); letter-spacing: .01em;
}
.nav__logo span { color: var(--rose); }

.nav__links {
  grid-area: links;
  display: flex; gap: 2rem; list-style: none;
  font-size: .82rem; font-weight: 400; color: var(--brown-mid);
}
.nav__links a { position: relative; padding: .5rem 0; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--rose);
  transition: width .35s;
}
.nav__links a:hover { color: var(--brown); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  grid-area: cta;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 11px 22px; border-radius: 100px;
  background: var(--brown); color: var(--cream);
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  transition: background .25s, gap .25s;
  justify-self: end;
}
.nav__cta:hover { background: var(--rose); gap: .85rem; }

.nav__burger {
  grid-area: burger; display: none;
  flex-direction: column; gap: 5px; padding: 8px;
  margin-left: 8px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--brown); transition: transform .3s;
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto auto; grid-template-areas: "logo cta burger"; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  body.menu-open .nav { background: var(--cream); }
  body.menu-open .nav__links {
    display: flex; flex-direction: column; gap: .5rem;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 1.5rem var(--gutter);
    background: var(--cream);
    border-bottom: 1px solid var(--cream-3);
  }
  body.menu-open .nav__links a {
    padding: .8rem 0; font-family: var(--serif); font-size: 1.4rem; color: var(--brown);
    border-bottom: 1px solid rgba(44, 30, 24, .06);
  }
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem var(--gutter) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "main card"
    "main scroll";
  gap: 2rem clamp(2rem, 6vw, 6rem);
  align-items: end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 25%, rgba(232, 180, 170, .35), transparent 60%),
    radial-gradient(ellipse 80% 60% at 15% 85%, rgba(201, 168, 130, .25), transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(244, 221, 226, .3), transparent 70%),
    linear-gradient(165deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  opacity: .035; mix-blend-mode: multiply;
  pointer-events: none;
}

/* huge background type-as-decoration */
.hero__mega {
  position: absolute; left: -3vw; bottom: -5vw; z-index: 1;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(8rem, 28vw, 30rem);
  line-height: 0.78; letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212, 134, 154, .22);
  pointer-events: none;
  white-space: nowrap;
}

.hero__main {
  grid-area: main; position: relative; z-index: 2;
  max-width: 580px;
  padding-bottom: 2rem;
}
.hero__eyebrow {
  display: inline-block; margin-bottom: 1.5rem;
  font-family: var(--sans); font-size: .7rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose);
}
.hero__title {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  line-height: 0.98; font-weight: 400;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic; color: var(--rose);
}
.hero__lede {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--brown-mid);
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

/* floating glass trust card */
.hero__card {
  grid-area: card;
  align-self: start;
  margin-top: 4rem;
  padding: 1.8rem;
  z-index: 2;
  justify-self: end;
  width: min(360px, 100%);
  display: grid; gap: .9rem;
  border-radius: 24px;
}
.hero__card-stars {
  color: var(--gold); letter-spacing: 3px; font-size: 1rem;
}
.hero__card-text {
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.5;
  color: var(--brown);
}
.hero__card-text strong { font-weight: 500; color: var(--rose); }
.hero__card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid rgba(44, 30, 24, .1);
  font-size: .82rem;
}
.hero__card-foot span { color: var(--brown-mid); font-weight: 500; }
.hero__card-foot a {
  color: var(--rose); font-weight: 500;
  display: inline-flex; gap: 6px; align-items: center;
}
.hero__card-foot a i { font-style: normal; transition: transform .25s; }
.hero__card-foot a:hover i { transform: translate(2px, -2px); }

.hero__scroll {
  grid-area: scroll;
  justify-self: center;
  width: 30px; height: 50px;
  border: 1px solid rgba(44, 30, 24, .25);
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.hero__scroll i {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  display: block; width: 4px; height: 8px; border-radius: 2px;
  background: var(--rose);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50%      { top: 30px; opacity: .3; }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "card" "scroll";
    gap: 2rem;
  }
  .hero__card { justify-self: stretch; margin-top: 0; }
  .hero__mega { font-size: 50vw; }
}

/* ════════════ STATS — floating chip overlap ════════════ */
.stats {
  position: relative;
  margin-top: -3.5rem;
  padding: 0 var(--gutter);
  z-index: 10;
}
.stats__chip {
  max-width: 980px; margin: 0 auto;
  padding: 1.4rem 2.5rem;
  border-radius: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.stat {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
}
.stat__num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown); line-height: 1;
}
.stat__num i { font-style: normal; color: var(--rose); font-size: .7em; margin-left: 2px; }
.stat__label {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--brown-lt);
}
.stat__sep { width: 1px; height: 30px; background: rgba(44, 30, 24, .12); }

@media (max-width: 720px) {
  .stats__chip {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2rem;
    border-radius: 24px;
    padding: 1.5rem 1.5rem;
  }
  .stat__sep { display: none; }
}

/* ════════════ SERVICES — tabs + detail card ════════════ */
.services {
  padding: 8rem var(--gutter) 6rem;
}
.services__head {
  max-width: 1100px; margin: 0 auto 3rem;
}
.services__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: .8rem;
  color: var(--brown);
}

.services__layout {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.tabs {
  display: flex; flex-direction: column; gap: .5rem;
  position: sticky; top: 90px;
}
.tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px; align-items: baseline;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  transition: background .3s, color .3s;
  position: relative;
}
.tab::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 0; background: var(--rose);
  transition: height .35s;
}
.tab__num {
  font-family: var(--serif); font-style: italic;
  font-size: .85rem; color: var(--brown-lt);
}
.tab__label {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--brown-mid);
}
.tab:hover { background: var(--cream-2); }
.tab.is-active { background: var(--cream-2); }
.tab.is-active::before { height: 60%; }
.tab.is-active .tab__num,
.tab.is-active .tab__label { color: var(--rose); }

.srv-stage {
  position: relative;
  min-height: 480px;
}
.srv {
  display: none;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-1);
  animation: srvIn .4s cubic-bezier(.22,.61,.36,1) both;
}
.srv.is-active { display: grid; }
@keyframes srvIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.srv__media {
  aspect-ratio: 3/4;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--rose-pale) 0%, var(--rose-soft) 55%, var(--gold-soft) 100%);
  display: grid; place-items: center;
  font-size: 5rem; line-height: 1;
  position: relative; overflow: hidden;
}
.srv__media::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(at 30% 25%, rgba(255,255,255,.4), transparent 55%);
}

.srv__body {
  display: grid; gap: .75rem;
  align-content: start;
  padding-top: .5rem;
}
.srv__cat {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose);
}
.srv__name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--brown);
  letter-spacing: -.01em;
}
.srv__desc {
  font-size: .98rem; line-height: 1.7;
  color: var(--brown-mid);
}
.srv__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  margin: 1rem 0;
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
}
.srv__facts div { display: grid; gap: 3px; }
.srv__facts span {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-lt);
}
.srv__facts strong {
  font-family: var(--serif); font-weight: 400; font-size: 1.6rem;
  color: var(--brown);
}

.srv-nav {
  position: absolute; right: 2rem; bottom: 2rem;
  display: flex; gap: .5rem; align-items: center;
  background: var(--cream); border-radius: 100px;
  padding: .35rem .85rem;
  box-shadow: var(--shadow-1);
}
.srv-nav__btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  font-size: 1.2rem; color: var(--brown);
  transition: background .25s, color .25s;
}
.srv-nav__btn:hover { background: var(--rose); color: var(--white); }
.srv-nav__count {
  font-family: var(--serif); font-style: italic;
  font-size: .85rem; color: var(--brown-mid);
  padding: 0 .5rem;
}

@media (max-width: 880px) {
  .services__layout { grid-template-columns: 1fr; }
  .tabs {
    flex-direction: row; position: relative; top: 0;
    overflow-x: auto; padding-bottom: .5rem;
    scrollbar-width: thin;
  }
  .tab { flex: 0 0 auto; }
  .srv { grid-template-columns: 1fr; padding: 1.8rem; }
  .srv__media { max-width: 200px; aspect-ratio: 1; font-size: 3.5rem; border-radius: 14px; }
  .srv-nav { right: 1rem; bottom: 1rem; }
}

/* ════════════ TEAM — 4 tall portraits ════════════ */
.team {
  padding: 6rem var(--gutter) 8rem;
  background: var(--cream-2);
}
.team__head {
  max-width: 1240px; margin: 0 auto 3rem;
  display: grid; gap: .8rem;
}
.team__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--brown);
}

.team__grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.6vw, 1.6rem);
}

.member {
  position: relative;
  aspect-ratio: 3 / 4.2;
  border-radius: 20px;
  overflow: hidden;
  background: var(--member-bg, var(--rose-mid));
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.member:hover { transform: translateY(-6px); }

.member__portrait {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, .55), transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(44, 30, 24, .45), transparent 55%),
    var(--member-bg, var(--rose-mid));
  transition: filter .5s;
}
.member:hover .member__portrait { filter: brightness(.85); }

.member__init {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(5rem, 9vw, 9rem);
  color: var(--white); line-height: 1;
  text-shadow: 0 4px 30px rgba(44, 30, 24, .2);
}
.member__num {
  position: absolute; top: 1rem; left: 1.2rem;
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.member__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.4rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(44, 30, 24, .65) 0%, transparent 100%);
  transition: opacity .4s;
}
.member__name {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  letter-spacing: -.005em;
}
.member__role {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .25em; text-transform: uppercase;
  opacity: .85; margin-top: 4px;
}

.member__overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 1.5rem;
  background: rgba(44, 30, 24, .35);
  opacity: 0;
  transition: opacity .4s;
}
.member:hover .member__overlay { opacity: 1; }
.member:hover .member__caption { opacity: 0; }

@media (max-width: 980px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .team__grid { grid-template-columns: 1fr; }
  .member { aspect-ratio: 4/3.5; }
}

/* ════════════ GALLERY — bento grid ════════════ */
.gallery {
  padding: 7rem var(--gutter);
  background: var(--cream);
}
.gallery__head {
  max-width: 1300px; margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: end;
  gap: 2rem; flex-wrap: wrap;
}
.gallery__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: .8rem; color: var(--brown);
}
.gallery__sub {
  font-family: var(--serif); font-style: italic;
  color: var(--brown-mid); font-size: 1.05rem;
}

.bento {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 1rem;
}
.bento__item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-3);
  cursor: zoom-in;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s, transform .7s, box-shadow .35s;
}
.bento__item.is-in { opacity: 1; transform: none; }
.bento__item:hover { box-shadow: var(--shadow-3); }
.bento__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s;
}
.bento__item:hover img { transform: scale(1.06); }
.bento__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(44, 30, 24, .55), transparent);
  color: var(--white);
  font-family: var(--serif); font-style: italic; font-size: .95rem;
  opacity: 0; transition: opacity .35s;
}
.bento__item:hover .bento__cap { opacity: 1; }

/* bento item size variants — cycles every 6 */
.bento__item:nth-child(6n+1) { grid-column: span 6; grid-row: span 3; }
.bento__item:nth-child(6n+2) { grid-column: span 3; grid-row: span 2; }
.bento__item:nth-child(6n+3) { grid-column: span 3; grid-row: span 3; }
.bento__item:nth-child(6n+4) { grid-column: span 3; grid-row: span 1; }
.bento__item:nth-child(6n+5) { grid-column: span 4; grid-row: span 2; }
.bento__item:nth-child(6n+6) { grid-column: span 5; grid-row: span 2; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .bento__item:nth-child(6n+1) { grid-column: span 6; grid-row: span 2; }
  .bento__item:nth-child(6n+2) { grid-column: span 3; grid-row: span 2; }
  .bento__item:nth-child(6n+3) { grid-column: span 3; grid-row: span 2; }
  .bento__item:nth-child(6n+4) { grid-column: span 2; grid-row: span 1; }
  .bento__item:nth-child(6n+5) { grid-column: span 4; grid-row: span 1; }
  .bento__item:nth-child(6n+6) { grid-column: span 6; grid-row: span 2; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento__item { grid-column: 1 !important; grid-row: span 1 !important; }
}

.bento__loading {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.bento__loading span {
  display: block; height: 200px; border-radius: 14px;
  background: linear-gradient(90deg, var(--cream-3), var(--cream-2), var(--cream-3));
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
.bento__loading span:nth-child(1) { grid-column: span 3; height: 320px; }
.bento__loading span:nth-child(2) { grid-column: span 3; height: 160px; }
.bento__loading span:nth-child(3) { grid-column: span 2; }
.bento__loading span:nth-child(4) { grid-column: span 2; }
.bento__loading span:nth-child(5) { grid-column: span 2; }
.bento__loading span:nth-child(6) { grid-column: span 6; height: 160px; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(44, 30, 24, .85);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  max-width: min(90vw, 1100px); max-height: 88vh;
  display: grid; gap: 1rem; justify-items: center;
}
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 14px; }
.lightbox figcaption {
  font-family: var(--serif); font-style: italic;
  color: var(--cream); font-size: 1rem;
}
.lightbox__close, .lightbox__nav {
  position: absolute; color: var(--brown);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  font-size: 1.4rem; box-shadow: var(--shadow-2);
  transition: background .25s, color .25s, transform .25s;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--rose); color: var(--white); }

/* ════════════ REVIEWS — featured rotating ════════════ */
.reviews {
  padding: 7rem var(--gutter);
  background: var(--cream-2);
  overflow: hidden;
}
.reviews__head {
  max-width: 1100px; margin: 0 auto 3rem;
  display: grid; gap: .8rem;
}
.reviews__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--brown);
}

.featured {
  max-width: 920px; margin: 0 auto;
  position: relative;
  min-height: 380px;
}
.featured__item {
  position: absolute; inset: 0;
  display: grid; gap: 1.5rem; justify-items: start;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .55s, transform .55s;
}
.featured__item.is-active {
  opacity: 1; transform: none; pointer-events: auto; position: relative;
}
.featured__mark {
  font-family: var(--serif); font-style: italic;
  font-size: 7rem; line-height: .5; color: var(--rose);
  margin-bottom: -1.5rem;
}
.featured__text {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4; color: var(--brown);
}
.featured__by {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-family: var(--sans); font-size: .9rem;
  color: var(--brown-mid);
}
.featured__by strong { color: var(--brown); font-weight: 500; }
.featured__stars { color: var(--gold); letter-spacing: 2px; }
.featured__date {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-lt);
}

.featured__dots {
  display: flex; gap: .6rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.featured__dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream-3);
  font-family: var(--serif); font-weight: 500; font-size: 1.05rem;
  color: var(--brown-lt);
  transition: all .3s;
}
.featured__dot:hover { border-color: var(--rose-mid); color: var(--rose); }
.featured__dot.is-active {
  background: var(--rose); color: var(--white); border-color: var(--rose);
  transform: scale(1.05);
}

/* ════════════ CONTACT — full-bleed map + glass card ════════════ */
.contact {
  position: relative;
  height: clamp(560px, 70vh, 720px);
  overflow: hidden;
}
.contact__map {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--cream-2), var(--rose-pale) 50%, var(--cream-3));
}
.contact__map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44, 30, 24, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 30, 24, .04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.contact__map::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 65% 45%, rgba(212, 134, 154, .12), transparent),
    radial-gradient(ellipse 400px 300px at 25% 70%, rgba(201, 168, 130, .15), transparent);
}
.contact__map-pin {
  position: absolute; top: 45%; left: 65%; transform: translate(-50%, -50%);
  font-size: 3rem;
  filter: drop-shadow(0 8px 20px rgba(44, 30, 24, .25));
  animation: pinBounce 2.4s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, -65%); }
}

.contact__card {
  position: absolute;
  top: 50%; left: var(--gutter);
  transform: translateY(-50%);
  width: min(480px, calc(100% - 2 * var(--gutter)));
  padding: 2.5rem;
  display: grid; gap: 1.2rem;
  border-radius: 24px;
  z-index: 2;
}
.contact__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  letter-spacing: -.01em;
}
.contact__rows { display: grid; gap: .7rem; margin: .5rem 0; }
.contact__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(44, 30, 24, .08);
}
.contact__row:last-child { border-bottom: 0; }
.contact__row-label {
  font-size: .65rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brown-lt);
}
.contact__row-val {
  font-family: var(--serif); font-size: 1.05rem; color: var(--brown);
  font-weight: 400;
}
a.contact__row-val { color: var(--rose); transition: color .25s; }
a.contact__row-val:hover { color: var(--brown); }

.contact__hours {
  background: rgba(255, 255, 255, .35);
  border-radius: 14px;
  padding: .8rem 1rem;
}
.contact__hours summary {
  cursor: pointer; list-style: none;
  font-size: .85rem; color: var(--brown-mid);
  font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
}
.contact__hours summary::after {
  content: '▾'; color: var(--rose); transition: transform .25s;
}
.contact__hours[open] summary::after { transform: rotate(180deg); }
.contact__hours strong { color: var(--rose); font-weight: 500; }
.contact__hours table { width: 100%; margin-top: .8rem; border-collapse: collapse; }
.contact__hours td {
  padding: 4px 0; font-size: .85rem; color: var(--brown-mid);
}
.contact__hours td:last-child { text-align: right; font-weight: 500; color: var(--brown); }
.contact__hours .is-today td { color: var(--rose) !important; font-weight: 600; }

.contact__cta {
  display: flex; gap: .8rem; flex-wrap: wrap; align-items: center;
  margin-top: .5rem;
}

@media (max-width: 720px) {
  .contact { height: auto; padding: 6rem 0 0; }
  .contact__map { position: relative; height: 280px; inset: auto; }
  .contact__card {
    position: relative; top: auto; left: auto; transform: none;
    width: calc(100% - 2 * var(--gutter));
    margin: -3rem auto 2rem;
  }
}

/* ════════════ FOOTER ════════════ */
.footer {
  background: var(--brown);
  color: rgba(251, 247, 242, .7);
  padding: 5rem var(--gutter) 2rem;
}
.footer__top {
  max-width: 1240px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1.6fr 2fr;
  gap: 3rem;
}
.footer__brand h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream); font-weight: 400;
}
.footer__brand h2 em { font-style: italic; color: var(--gold); }
.footer__brand p {
  margin-top: 1rem; max-width: 320px;
  font-size: .92rem; line-height: 1.7;
}

.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.footer__cols h4 {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 500; margin-bottom: 1rem;
}
.footer__cols ul { list-style: none; display: grid; gap: .6rem; }
.footer__cols a { font-size: .88rem; transition: color .25s; }
.footer__cols a:hover { color: var(--cream); }

.footer__bottom {
  max-width: 1240px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .78rem; color: rgba(251, 247, 242, .5);
  letter-spacing: .04em;
}
.footer__bottom em { color: var(--gold); font-style: italic; }

@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ════════════ FLOATING CTA ════════════ */
.float-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1rem 1.5rem;
  background: var(--brown); color: var(--cream);
  border-radius: 100px;
  font-family: var(--sans); font-size: .85rem;
  letter-spacing: .04em; font-weight: 500;
  box-shadow: 0 16px 40px rgba(44, 30, 24, .3);
  transition: transform .3s, background .3s;
}
.float-cta:hover { transform: translateY(-2px) scale(1.03); background: var(--rose); }
.float-cta i { font-style: normal; }

@media (max-width: 540px) {
  .float-cta { bottom: 1rem; right: 1rem; padding: .85rem 1.2rem; font-size: .8rem; }
}

/* ════════════════════════════════════════════════════════════
   DRAWER · slide-in from right
   ════════════════════════════════════════════════════════════ */
.drawer { position: fixed; inset: 0; z-index: 9700; pointer-events: none; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(44, 30, 24, .35);
  backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .5s;
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(560px, 100%);
  background: var(--cream);
  display: grid; grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform .65s cubic-bezier(.22,.61,.36,1);
  box-shadow: -40px 0 100px -20px rgba(44, 30, 24, .3);
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }

.drawer__head {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--cream-3);
  position: relative;
}
.drawer__eyebrow {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.drawer__title {
  font-size: 1.8rem; font-weight: 400; color: var(--brown);
  margin-top: .3rem; letter-spacing: -.01em;
}
.drawer__title em { font-style: italic; color: var(--rose); }
.drawer__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); color: var(--brown);
  font-size: 1.4rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-1);
  transition: background .25s, color .25s, transform .25s;
}
.drawer__close:hover { background: var(--rose); color: var(--white); transform: scale(1.05); }

.drawer__steps {
  display: flex; align-items: center; gap: 6px;
  margin-top: 1.5rem;
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase;
}
.drawer__steps span {
  display: inline-flex; align-items: center;
  color: var(--brown-lt);
  transition: color .3s;
}
.drawer__steps span.is-active { color: var(--rose); }
.drawer__steps span.is-done { color: var(--brown-mid); }
.drawer__steps i { display: block; flex: 1; height: 1px; background: var(--cream-3); }

.drawer__body { overflow-y: auto; padding: 2rem; }
.step { display: none; animation: stepIn .4s ease both; }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step__sub {
  font-family: var(--serif); font-style: italic;
  color: var(--brown-mid); font-size: 1rem; margin-bottom: 1.5rem;
}
.step__title {
  font-family: var(--serif); font-weight: 400; font-size: 1.5rem;
  color: var(--brown); margin-bottom: 1rem;
}

.opt-list { display: grid; gap: .65rem; }
.opt {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem; align-items: center;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  text-align: left;
  transition: transform .25s, box-shadow .25s, background .25s;
  position: relative;
}
.opt:hover { transform: translateX(4px); box-shadow: var(--shadow-2); }
.opt.is-selected { background: var(--rose-pale); }
.opt.is-selected::after {
  content: '✓'; position: absolute; right: 1.2rem;
  color: var(--rose); font-size: 1.1rem;
}
.opt__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--rose-pale);
  font-size: 1.4rem;
  font-family: var(--serif); font-weight: 500; color: var(--rose);
}
.opt__body { display: grid; gap: 3px; }
.opt__title {
  font-family: var(--serif); font-size: 1.1rem; color: var(--brown);
}
.opt__meta {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-lt);
}
.opt--any .opt__icon { background: transparent; border: 1px dashed var(--gold); }

.datebar {
  display: flex; gap: .5rem; overflow-x: auto;
  padding-bottom: .5rem; margin-bottom: 1.5rem;
  scrollbar-width: thin;
}
.date-pill {
  flex: 0 0 auto;
  display: grid; gap: 3px; justify-items: center;
  padding: .75rem 1rem; min-width: 64px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  font-family: var(--sans);
  transition: background .25s, color .25s, transform .25s;
}
.date-pill:hover { transform: translateY(-1px); }
.date-pill.is-active { background: var(--rose); color: var(--white); }
.date-pill__dow { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; }
.date-pill__day { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.date-pill__mon { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }

.slots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: .5rem;
}
.slots__hint, .slots__error {
  grid-column: 1 / -1; padding: 1.5rem 0;
  font-family: var(--serif); font-style: italic;
  font-size: .95rem; color: var(--brown-mid);
}
.slots__error { color: var(--error); }
.slot {
  padding: .75rem;
  background: var(--white);
  border-radius: 10px;
  font-family: var(--sans); font-size: .9rem;
  transition: background .25s, color .25s;
  box-shadow: var(--shadow-1);
}
.slot:hover:not(:disabled) { background: var(--rose-pale); }
.slot.is-active { background: var(--rose); color: var(--white); }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.form { display: grid; gap: 1rem; }
.form label { display: grid; gap: .3rem; }
.form label span {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-lt);
}
.form input {
  padding: .95rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--cream-3);
  border-radius: 12px;
  color: var(--brown);
  font: inherit; font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
}
.form input:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(212, 134, 154, .12);
}

.form__summary {
  margin-top: .3rem;
  padding: 1.2rem;
  background: var(--rose-pale);
  border-radius: 14px;
  display: grid; gap: .35rem;
}
.form__summary:empty { display: none; }
.form__summary div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; font-size: .88rem;
}
.form__summary div + div { border-top: 1px dashed rgba(212, 134, 154, .35); padding-top: .5rem; }
.form__summary span {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-lt);
}
.form__summary strong {
  font-family: var(--serif); font-weight: 500;
  color: var(--brown); text-align: right;
}

.form__error {
  color: var(--error); font-size: .85rem;
  padding: .8rem 1rem;
  background: rgba(193, 74, 74, .08);
  border-radius: 10px;
}
.form__legal {
  font-size: .72rem; color: var(--brown-lt); line-height: 1.6;
}
.form__legal a { color: var(--rose); text-decoration: underline; }

.verify { display: grid; gap: 1.2rem; }
.verify__intro {
  font-family: var(--serif); font-style: italic;
  color: var(--brown-mid); font-size: 1rem;
}
.verify__intro strong { color: var(--brown); font-weight: 500; }
.verify__inputs { display: flex; gap: .7rem; }
.verify__inputs input {
  width: 60px; height: 70px;
  text-align: center;
  font-family: var(--serif); font-size: 1.8rem;
  background: var(--white); border: 1.5px solid var(--cream-3);
  border-radius: 12px;
  transition: border-color .25s, box-shadow .25s;
}
.verify__inputs input:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(212, 134, 154, .15);
}

.success {
  display: grid; gap: 1.2rem; justify-items: start;
  padding: 1.5rem 0;
}
.success__mark {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--white);
  display: grid; place-items: center;
  font-size: 2.2rem; font-weight: 600;
  animation: pop .6s cubic-bezier(.22,.61,.36,1);
}
@keyframes pop { from { transform: scale(0); } 60% { transform: scale(1.15); } to { transform: scale(1); } }
.success h3 { font-size: 1.7rem; color: var(--brown); }
.success h3 em { font-style: italic; color: var(--rose); }
.success p { color: var(--brown-mid); font-family: var(--serif); font-style: italic; }

.drawer__foot {
  padding: 1rem 2rem;
  border-top: 1px solid var(--cream-3);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem; align-items: center;
}
.drawer__back {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-lt);
  transition: color .25s;
}
.drawer__back:hover { color: var(--rose); }
.drawer__next {
  justify-self: end;
  padding: .85rem 1.5rem;
  background: var(--brown); color: var(--cream);
  border-radius: 100px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500;
  transition: background .25s, opacity .25s;
}
.drawer__next:disabled { opacity: .35; }
.drawer__next:not(:disabled):hover { background: var(--rose); }

@media (max-width: 540px) {
  .drawer__panel { width: 100%; }
  .drawer__head, .drawer__body, .drawer__foot { padding-inline: 1.5rem; }
  .verify__inputs input { width: 52px; height: 60px; font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
