/* --------- Panos Melekkis · house system --------- */

:root {
  --noir: #0E0C0A;
  --ink:  #1B1714;
  --ink-soft: #3A322B;
  --ivory: #FAF6EF;
  --bone:  #ECE3D5;
  --house: #173A2F;    /* the PM presentation-box green */
  --house-deep: #0E2820;
  --gold:  #B8954E;
  --gold-soft: #C7A86A;
  --line:  #E6DCCC;
  --line-dark: rgba(236,227,213,0.14);

  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --pad-x: clamp(20px, 4vw, 64px);
  --gutter: clamp(16px, 2vw, 28px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* --------- typography --------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.78;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 0.98;
  font-size: clamp(48px, 8vw, 124px);
}
.display .roman { font-style: normal; }

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

.h-section {
  font-size: clamp(38px, 5vw, 72px);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.h-block {
  font-size: clamp(28px, 3.2vw, 44px);
  font-family: var(--serif);
}

/* hairline rule */
.hr-gold {
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
  border: 0;
  width: 36px;
  margin: 0;
}

/* --------- layout helpers --------- */

.wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.col-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.col-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }

@media (max-width: 900px) {
  .col-2, .col-3, .col-4 { grid-template-columns: 1fr; }
}

/* --------- nav --------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,12,10,0.0);
  color: var(--ivory);
  transition: background 360ms ease, color 360ms ease, border-color 360ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-light {
  background: var(--ivory);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.nav.is-solid {
  background: rgba(14,12,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad-x);
  max-width: 1480px;
  margin: 0 auto;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  min-width: 0;
}
.nav-right { justify-content: flex-end; }

/* mid-width collapse: hide secondary nav items so the CTA never clips */
@media (max-width: 1180px) {
  .nav-left .nav-link { display: none; }
  .nav-right .nav-link { display: none; }
  .nav-right .cc-row { display: none; }
}
@media (max-width: 1180px) {
  .nav-row { grid-template-columns: 1fr auto 1fr; }
}

.nav-link { position: relative; padding: 6px 0; opacity: 0.9; }
.nav-link:hover { opacity: 1; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-logo {
  display: block;
  height: 22px;
  width: auto;
}
.nav.is-light .nav-logo { filter: invert(1) hue-rotate(180deg) brightness(0.18); }

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}
.cta-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: pulse 2.4s ease-out infinite;
}
.cta-pill:hover { background: currentColor; color: var(--noir); }
.cta-pill:hover .dot { background: var(--noir); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,149,78,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(184,149,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,149,78,0); }
}

/* --------- hero --------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  margin-top: -80px; /* tuck under nav */
  overflow: hidden;
  background: var(--noir);
  color: var(--ivory);
}
.hero-stage {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,12,10,0.55) 0%, rgba(14,12,10,0.15) 28%, rgba(14,12,10,0.15) 60%, rgba(14,12,10,0.78) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  padding: 96px var(--pad-x) 64px;
  display: grid;
  grid-template-rows: 1fr auto;
  max-width: 1480px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  align-self: start;
  pointer-events: auto;
  margin-top: 110px;
  color: var(--ivory);
  opacity: 0.92;
}
.hero-eyebrow-row .hr-gold { width: 56px; }

.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 8.2vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  max-width: 14ch;
  margin: 18px 0 0;
  text-wrap: pretty;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  pointer-events: auto;
}

.hero-sub {
  max-width: 48ch;
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 300;
  opacity: 0.86;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ivory); color: var(--noir); }
.btn-primary {
  background: var(--ivory);
  color: var(--noir);
  border-color: var(--ivory);
}
.btn-primary:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }

.btn-house {
  background: var(--house);
  color: var(--ivory);
  border-color: var(--house);
}
.btn-house:hover { background: var(--house-deep); border-color: var(--house-deep); color: var(--ivory); }

.btn-ghost-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--ivory); }

.btn .arrow {
  width: 1em; height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* hero scene rail */
.hero-rail {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
  pointer-events: auto;
}
.hero-rail button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250,246,239,0.55);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 220ms ease;
}
.hero-rail button .tick {
  width: 22px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: width 260ms ease;
}
.hero-rail button:hover,
.hero-rail button.is-active { color: var(--ivory); }
.hero-rail button.is-active .tick { width: 44px; background: var(--gold); }

/* hero meta */
.hero-meta-row {
  position: absolute;
  left: var(--pad-x);
  bottom: 28px;
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.55);
  pointer-events: auto;
}
.hero-meta-row b { font-weight: 400; color: var(--ivory); }

@media (max-width: 900px) {
  .hero { min-height: 640px; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-ctas { justify-content: flex-start; }
  .hero-rail { display: none; }
  .hero-meta-row { position: static; padding: 14px var(--pad-x) 0; }
}

/* --------- credibility strip --------- */

.cred {
  background: var(--noir);
  color: var(--ivory);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.cred-cell {
  padding: 28px 18px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line-dark);
}
.cred-cell:last-child { border-right: 0; }
.cred-cell:first-child { padding-left: 0; }
.cred-cell:not(:first-child) { padding-left: 24px; }
.cred-cell .eyebrow { color: var(--gold-soft); }
.cred-cell .label { font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.cred-cell .meta  { font-size: 12.5px; opacity: 0.62; }

@media (max-width: 900px) {
  .cred-row { grid-template-columns: 1fr 1fr; }
  .cred-cell:nth-child(2) { border-right: 0; }
  .cred-cell:not(:first-child):not(:nth-child(3)) { padding-left: 0; }
  .cred-cell:nth-child(3) { padding-left: 0; }
}

/* --------- collections --------- */

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section-dark {
  background: var(--noir);
  color: var(--ivory);
}
.section-house {
  background: var(--house);
  color: var(--ivory);
}
.section-ivory { background: var(--ivory); color: var(--ink); }
.section-bone  { background: var(--bone);  color: var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .lead p {
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.86;
}
.section-head .pre {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; }
}

/* collection grid */
.coll-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(0, auto);
  gap: var(--gutter);
}
.coll-grid > .card-2 { grid-row: span 2; }
.coll-grid > .card-tall { grid-row: span 2; }

@media (max-width: 1100px) {
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .coll-grid > .card-2 { grid-row: auto; }
  .coll-grid > .card-tall { grid-row: auto; }
}
@media (max-width: 700px) {
  .coll-grid { grid-template-columns: 1fr; }
}

.coll-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform 380ms ease;
}
.coll-card.card-2,
.coll-card.card-tall { aspect-ratio: 4 / 5; height: 100%; }

.coll-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 600ms ease;
  filter: saturate(1.02);
}
.coll-card:hover img { transform: scale(1.05); }

.coll-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0.0) 35%, rgba(14,12,10,0.78) 100%);
  pointer-events: none;
}

.coll-card .meta {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  right: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.coll-card .meta .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}
.coll-card .meta .name .roman { font-style: normal; display: block; opacity: 0.75; font-size: 0.5em; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--mono); margin-bottom: 8px;}
.coll-card .meta .arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 220ms ease, color 220ms ease;
}
.coll-card:hover .meta .arrow { background: var(--ivory); color: var(--noir); }

.coll-card .top-eyebrow {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.78;
}

/* --------- designer teaser --------- */

.designer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.designer .image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.designer .image img { width: 100%; height: 100%; object-fit: cover; }
.designer .image .stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.designer .image .stamp b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 2px 0;
}

.designer .copy { display: flex; flex-direction: column; gap: 22px; }
.designer .copy p {
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 50ch;
  text-wrap: pretty;
}
.designer .credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.designer .credentials .item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--house);
  line-height: 1;
}
.designer .credentials .item .lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.72;
}

@media (max-width: 900px) {
  .designer { grid-template-columns: 1fr; }
  .designer .credentials { grid-template-columns: 1fr 1fr 1fr; }
}

/* --------- bespoke band --------- */

.bespoke {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.bespoke .image {
  aspect-ratio: 5/6;
  overflow: hidden;
  position: relative;
}
.bespoke .image img { width: 100%; height: 100%; object-fit: cover; }
.bespoke .copy { display: flex; flex-direction: column; gap: 24px; }
.bespoke .copy .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.08;
  text-wrap: pretty;
  max-width: 18ch;
}
.bespoke .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 16px 0 8px;
}
.bespoke .step {
  border-top: 1px solid rgba(250,246,239,0.22);
  padding-top: 16px;
}
.bespoke .step .num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.bespoke .step .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.bespoke .step p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.78;
  margin: 0;
}

@media (max-width: 900px) {
  .bespoke { grid-template-columns: 1fr; }
  .bespoke .steps { grid-template-columns: 1fr; gap: 0; }
  .bespoke .step { padding: 16px 0; border-top: 1px solid rgba(250,246,239,0.22); }
}

/* --------- press strip --------- */

.press {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.press .lab {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
}
.press .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.3;
  flex: 1;
  min-width: 280px;
  text-wrap: pretty;
}
.press .src {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* --------- ateliers --------- */

.atelier-card {
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.atelier-card .head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}
.atelier-card .city {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
}
.atelier-card .addr {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}
.atelier-card .hours {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 4px 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.atelier-card .hours b { font-weight: 500; }

.atelier-card .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.atelier-card .links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.atelier-card .map {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bone);
  border: 1px solid var(--line);
}
.atelier-card .map .pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 var(--gold);
  animation: pulse 2.4s ease-out infinite;
}
.atelier-card .map svg { width: 100%; height: 100%; display:block; }

.atelier-card.appointment-only::before {
  content: "By appointment";
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* --------- footer --------- */

footer.foot {
  background: var(--noir);
  color: var(--ivory);
  padding: 80px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.62;
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.foot-col li a:hover { color: var(--gold); }

.foot-brand .mark { display: block; height: 28px; width: auto; margin-bottom: 18px; }
.foot-brand p { font-size: 13.5px; line-height: 1.7; opacity: 0.78; max-width: 38ch; }
.foot-brand .socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.foot-brand .socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,239,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.foot-brand .socials a:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* --------- WhatsApp FAB + mobile bottom bar --------- */

.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: var(--house);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  box-shadow: 0 10px 30px rgba(14,12,10,0.35);
  z-index: 40;
  transition: transform 240ms ease, background 220ms ease;
}
.wa-fab:hover { transform: translateY(-3px); background: var(--house-deep); }
.wa-fab .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border-radius: 8px;
}

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 38;
  background: var(--noir);
  color: var(--ivory);
  border-top: 1px solid var(--line-dark);
  display: none;
  grid-template-columns: 1fr 1fr;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-bar > button {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line-dark);
}
.mobile-bar > button:last-child { border-right: 0; background: var(--house); }

@media (max-width: 700px) {
  .mobile-bar { display: grid; }
  .wa-fab { bottom: 70px; }
}

/* --------- collection drawer --------- */

.drawer-back {
  position: fixed;
  inset: 0;
  background: rgba(14,12,10,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
.drawer-back.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(820px, 96vw);
  background: var(--ivory);
  color: var(--ink);
  z-index: 75;
  transform: translateX(100%);
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.drawer.is-open { transform: translateX(0); }
.drawer::-webkit-scrollbar { width: 6px; }
.drawer::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.drawer-header {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.drawer-header img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.drawer-header::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0.35), rgba(14,12,10,0.85));
}
.drawer-header .titles {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
  z-index: 2;
}
.drawer-header .titles .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}
.drawer-header .titles .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,239,0.5);
  background: rgba(14,12,10,0.4);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  transition: background 220ms ease, border-color 220ms ease;
}
.drawer-close:hover { background: var(--ivory); color: var(--noir); border-color: var(--ivory); }

.drawer-body { padding: 36px clamp(24px, 4vw, 48px) 48px; }

.drawer-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.drawer-narrative .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.15;
  text-wrap: pretty;
}
.drawer-narrative .body p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 12px;
}

@media (max-width: 700px) {
  .drawer-narrative { grid-template-columns: 1fr; }
}

.drawer-pricerange {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.drawer-pricerange b { font-weight: 500; }

.drawer-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0 8px;
}
.product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .ph {
  aspect-ratio: 1/1;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.product .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.product:hover .ph img { transform: scale(1.04); }
.product .ph .sku {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  background: var(--ivory);
  color: var(--ink);
  padding: 4px 7px;
}
.product .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.15;
  margin-top: 6px;
}
.product .row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.product .price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.product .price.muted { opacity: 0.55; font-style: italic; font-family: var(--serif); letter-spacing: 0; font-size: 14px; }
.product .actions { display: flex; gap: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.product .actions a:hover { color: var(--house); opacity: 1; }

.drawer-bottom-cta {
  margin-top: 36px;
  background: var(--house);
  color: var(--ivory);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.drawer-bottom-cta .copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  max-width: 28ch;
}

@media (max-width: 700px) {
  .drawer-products { grid-template-columns: 1fr; }
}

/* --------- booking modal (multi-step) --------- */

.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(14,12,10,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-back.is-open { opacity: 1; pointer-events: auto; }

.modal {
  width: min(880px, 100%);
  max-height: 92vh;
  background: var(--ivory);
  color: var(--ink);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 360ms cubic-bezier(0.2,0.7,0.2,1);
}
.modal-back.is-open .modal { transform: translateY(0); }

.modal-side {
  background: var(--house);
  color: var(--ivory);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.modal-side .mark {
  height: 24px;
  width: auto;
}
.modal-side .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.15;
  text-wrap: pretty;
}
.modal-side .stepper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.modal-side .stepper .step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 220ms ease;
}
.modal-side .stepper .step.is-active { opacity: 1; }
.modal-side .stepper .step.is-done   { opacity: 0.85; }
.modal-side .stepper .ix {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 500;
}
.modal-side .stepper .step.is-done .ix { background: var(--gold); border-color: var(--gold); color: var(--noir); }
.modal-side .stepper .step.is-active .ix { background: var(--ivory); color: var(--house); border-color: var(--ivory); }

.modal-side .ftr {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.6;
}

.modal-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.modal-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.1;
}
.modal-body .desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 50ch;
  opacity: 0.78;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms ease;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--house); }
.field textarea { resize: vertical; min-height: 88px; }

.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choices.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.choices.cols-1 { grid-template-columns: 1fr; }

.choice {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 220ms ease, background 220ms ease;
  background: transparent;
}
.choice:hover { border-color: var(--ink-soft); }
.choice.is-selected {
  border-color: var(--house);
  background: rgba(23,58,47,0.05);
}
.choice .ti {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.choice .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.modal-actions .secondary {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
}
.modal-actions .secondary:hover { opacity: 1; color: var(--house); }

.review-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  align-items: start;
}
.review-row .lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-top: 2px;
}
.review-row .val { line-height: 1.5; }

.confirm-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 8px 0;
}
.confirm-state .seal {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--house);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
}
.confirm-state .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.1;
  text-wrap: pretty;
}

/* dates */
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.date-cell {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 200ms ease;
}
.date-cell:hover:not(:disabled) { border-color: var(--ink-soft); }
.date-cell.is-selected {
  background: var(--house);
  color: var(--ivory);
  border-color: var(--house);
}
.date-cell:disabled { opacity: 0.3; cursor: not-allowed; }
.date-cell .day {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  display: block;
  opacity: 0.55;
  margin-bottom: 2px;
}

.time-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.time-pill {
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
}
.time-pill:hover { border-color: var(--ink-soft); }
.time-pill.is-selected { background: var(--house); color: var(--ivory); border-color: var(--house); }

@media (max-width: 720px) {
  .modal { grid-template-columns: 1fr; max-height: 100vh; height: 100vh; }
  .modal-side { display: none; }
}

/* --------- currency chip --------- */
.cc-row { display: inline-flex; align-items: center; gap: 8px; }
.cc-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 4px 8px;
  border: 1px solid currentColor;
  opacity: 0.7;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, opacity 220ms ease;
}
.cc-pill:hover { opacity: 1; }
/* On dark/over hero nav (text=ivory): active fills with ivory, text=ink */
.cc-pill.is-active {
  opacity: 1;
  background: var(--ivory);
  color: var(--noir);
  border-color: var(--ivory);
}
/* On light nav: active fills with ink, text=ivory */
.nav.is-light .cc-pill.is-active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* --------- utility --------- */
.cap { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; }
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.gold { color: var(--gold); }
.muted { opacity: 0.7; }

/* signature mark — toggleable via tweak */
.sig-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0;
  color: var(--gold);
}

/* signature stamp PM seal */
.pm-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}

/* compact density tweak */
body.compact .section { padding: clamp(54px, 7vw, 96px) 0; }
body.compact .hero { min-height: 600px; }

/* fade-in baseline */
.fi { opacity: 0; transform: translateY(14px); transition: opacity 720ms ease, transform 720ms ease; }
.fi.is-in { opacity: 1; transform: none; }

/* tweaks panel adjustments */
.tweaks-panel { --tw-accent: var(--house); }
