/* 56 Charlotte Street — site styles */
:root {
  --ink: #15171b;
  --ink-2: #33363c;
  --paper: #f7f4ef;
  --paper-2: #ede7dd;
  --line: #dcd4c8;
  --muted: #736d64;
  --brass: #a7875b;
  --brass-2: #c8a878;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
  --nav-h: 68px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; }
p { margin: 0 0 1.1em; }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
noscript { display: block; padding: 120px 24px; text-align: center; color: var(--muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow--light { color: var(--brass-2); }

.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--brass); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-solid {
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__tabs { display: flex; gap: clamp(16px, 3vw, 36px); }
.nav__tabs a {
  position: relative;
  padding: 6px 0;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
}
.nav__tabs a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__tabs a:hover::after, .nav__tabs a[aria-current="page"]::after { transform: scaleX(1); }
.nav__tabs a[aria-current="page"] { opacity: 1; }
@media (max-width: 860px) { .nav__tabs .long { display: none; } }
@media (max-width: 560px) {
  .nav__brand { font-size: 1.2rem; }
  .nav__tabs a { font-size: 0.68rem; letter-spacing: 0.14em; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12, 12, 14, 0.88) 0%, rgba(12, 12, 14, 0.35) 45%, rgba(12, 12, 14, 0.05) 75%),
    linear-gradient(to bottom, rgba(12, 12, 14, 0.45) 0%, rgba(12, 12, 14, 0) 30%);
}
.hero__body { position: relative; padding: 0 0 clamp(56px, 9vh, 110px); }
.hero__title {
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 10px 0 6px;
}
.hero__city {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  opacity: 0.85;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(26px, 4vw, 48px);
  margin-top: clamp(24px, 4vh, 40px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.fact { display: flex; flex-direction: column; }
.fact__v { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; }
.fact__l { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-top: 6px; }
.fact--price .fact__v { color: var(--brass-2); }

/* ---------- intro ---------- */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(64px, 9vw, 120px) 0;
}
.intro__headline {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 28px;
  max-width: 22ch;
}
.intro__text p { font-size: 1.05rem; line-height: 1.8; color: var(--ink-2); font-weight: 300; }
.intro__text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  line-height: 0.8;
  float: left;
  margin: 8px 10px 0 0;
  color: var(--brass);
}
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.card__name { font-family: var(--serif); font-size: 2rem; margin: 8px 0 8px; }
.card__blurb { font-size: 0.95rem; color: var(--muted); }
.card__lines { display: flex; flex-direction: column; gap: 4px; margin: 18px 0 26px; font-size: 1.05rem; }
.card__lines a { border-bottom: 1px solid transparent; transition: border-color 0.2s; width: fit-content; }
.card__lines a:hover { border-color: var(--brass); }
.card .btn { width: 100%; text-align: center; }
.details { margin: 18px 0 26px; }
.details div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.details dt { color: var(--muted); font-size: 0.85rem; }
.details dd { margin: 0; font-family: var(--serif); font-size: 1.25rem; }

/* ---------- explore cards ---------- */
.explore {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: clamp(64px, 9vw, 120px);
}
.explore__card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.explore__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.explore__card:hover img { transform: scale(1.04); }
.explore__card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0) 60%); }
.explore__label { position: relative; z-index: 1; padding: 26px 28px; display: flex; flex-direction: column; gap: 6px; }
.explore__label strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.explore__card--dark { background: #1c1e23; }
.explore__card--dark svg { position: absolute; top: 24px; right: 26px; color: var(--brass-2); transition: transform 0.4s ease; }
.explore__card--dark:hover svg { transform: scale(1.08); }
.explore__card--video svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; color: var(--brass-2); z-index: 1; transition: transform 0.4s ease; }
.explore__card--video:hover svg { transform: translate(-50%, -50%) scale(1.08); }
@media (max-width: 700px) { .explore { grid-template-columns: 1fr; } }

/* ---------- inner page head ---------- */
.page-head { padding: calc(var(--nav-h) + clamp(40px, 7vw, 80px)) 0 28px; }
.page-head h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 10px 0 12px; }
.page-head__sub { color: var(--muted); max-width: 52ch; margin: 0; }

/* ---------- section chips ---------- */
.chips {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-block: 1px solid var(--line);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.chips__in {
  width: min(var(--max), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.chips__in::-webkit-scrollbar { display: none; }
.chips a {
  flex: none;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: var(--white);
  transition: all 0.2s;
}
.chips a:hover, .chips a.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- gallery ---------- */
.gsec { margin-bottom: clamp(48px, 7vw, 90px); scroll-margin-top: calc(var(--nav-h) + 70px); }
.gsec__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.gsec__head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.gsec__count { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--muted); }

.jg { display: flex; flex-wrap: wrap; gap: 6px; }
.jg::after { content: ''; flex-grow: 1000000; }
.jg__item {
  position: relative;
  flex-grow: calc(var(--r) * 100);
  flex-basis: calc(var(--r) * 230px);
  overflow: hidden;
  background: var(--paper-2);
}
.jg__item::before { content: ''; display: block; padding-bottom: calc(100% / var(--r)); }
.jg__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.jg__item:hover img { transform: scale(1.03); }
.jg__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--white);
  background: linear-gradient(to top, rgba(12, 12, 14, 0.75), rgba(12, 12, 14, 0));
  pointer-events: none;
}
@media (max-width: 600px) { .jg__item { flex-basis: calc(var(--r) * 150px); } .jg::after { display: none; } }

/* ---------- lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.96);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  animation: fade 0.2s ease;
  touch-action: pan-y;
}
.lb[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } }
.lb__fig { margin: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 56px 16px 20px; }
.lb__img { max-width: 100%; max-height: calc(100% - 44px); object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
.lb__meta { display: flex; justify-content: space-between; gap: 20px; width: min(100%, 1100px); padding-top: 14px; font-size: 0.8rem; }
.lb__cap { flex: 1; }
.lb__count { color: rgba(255, 255, 255, 0.55); letter-spacing: 0.12em; white-space: nowrap; }
.lb button {
  position: absolute; z-index: 2;
  background: none; border: 0; color: var(--white); cursor: pointer;
  font-family: var(--serif); font-size: 3rem; line-height: 1;
  opacity: 0.7; padding: 12px 18px; transition: opacity 0.2s;
}
.lb button:hover { opacity: 1; }
.lb__close { top: 6px; right: 8px; font-size: 2.4rem !important; }
.lb__prev { left: 4px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 4px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) { .lb__prev, .lb__next { display: none; } }

/* ---------- videos ---------- */
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 500px), 1fr)); gap: 40px 28px; padding-bottom: clamp(64px, 9vw, 120px); }
.vcard { margin: 0; }
.vcard__frame { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.vcard__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vcard__play { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: var(--ink); cursor: pointer; color: var(--white); overflow: hidden; }
.vcard__play img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: transform 0.7s ease, opacity 0.3s; }
.vcard__play:hover img { transform: scale(1.03); opacity: 1; }
.vcard__btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--brass-2); transition: transform 0.3s ease; }
.vcard__play:hover .vcard__btn { transform: scale(1.06); }
.note { color: var(--muted); font-size: 0.85rem; padding-bottom: 60px; margin-top: -40px; }
.vcard figcaption { padding-top: 16px; }
.vcard h2 { font-size: 1.5rem; margin-bottom: 6px; }
.vcard p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.empty { padding: 40px 0 120px; color: var(--muted); }
.empty a { color: var(--brass); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.8); padding: 48px 0; font-size: 0.85rem; }
.footer__in { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: flex-end; }
.footer__addr { font-family: var(--serif); font-size: 1.6rem; color: var(--white); }
.footer__city { opacity: 0.6; }
.footer__contact { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.footer__contact a:hover { color: var(--brass-2); }
@media (max-width: 600px) { .footer__contact { text-align: left; } }
