@font-face {
  font-family: "Birdie";
  src: url("fonts/birdie.woff2") format("woff2"),
       url("fonts/birdie.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Direction: deep ink / near-black field, cream type, oxblood as the single accent */
  --field: #161210;          /* warm near-black field — gallery/monograph */
  --field-deep: #0e0b0a;
  --bar: #161210;            /* bars are now hairline rules over the field */
  --cream: #f4efe3;          /* warm paper type */
  --cream-soft: rgba(244, 239, 227, 0.66);
  --line: rgba(244, 239, 227, 0.18);
  --accent: #8a2a38;         /* oxblood — reserved for the one action (Inquire) */
  /* doorway image placeholder: a lit doorway dissolving into the dark field */
  --img-a: #e7d8c0;
  --img-b: #161210;
  --display: "Birdie", "Arial Black", system-ui, sans-serif;
  --mono: "Courier Prime", "Courier New", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--field);
  color: var(--cream);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Top bar ---------- */
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 36px;
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
}
.bar-nav { display: flex; align-items: center; gap: 26px; }
.bar-nav a {
  font-family: var(--mono);
  font-style: italic;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--cream-soft);
}
.bar-nav a:hover { color: var(--cream); }
.bar-nav .cta {
  font-style: normal;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--cream);
}
.bar-nav .cta:hover { background: rgba(244, 239, 227, 0.1); }

/* ---------- Hero ---------- */
main { display: block; }
.hero {
  padding: clamp(48px, 9vw, 120px) 36px clamp(36px, 5vw, 64px);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
h1 {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;            /* Archivo Black is already heavy */
  font-size: clamp(2.4rem, 10.5vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  overflow-wrap: break-word;
}
.lede {
  margin: clamp(28px, 4vw, 48px) auto 0;
  max-width: 52ch;
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.5;
  color: var(--cream);
}

/* ---------- The doorway image ---------- */
.doorway {
  display: flex;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px) 36px clamp(48px, 7vw, 96px);
}
.arch { margin: 0; text-align: center; }
.arch-frame {
  position: relative;
  width: min(520px, 78vw);
  aspect-ratio: 2 / 3;
  /* the rounded doorway: straight sides, full semicircular top */
  border-radius: 1000px 1000px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  margin: 0 auto;
}
.arch-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.06) brightness(1.02);
  display: block;
}
/* dissolve the base into the dark field (also conceals the source watermark) */
.arch-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,18,16,0.6) 72%, var(--field) 92%);
  pointer-events: none;
}
.arch figcaption {
  margin-top: 18px;
  font-family: var(--mono);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream-soft);
}

/* ---------- Closing CTA ---------- */
.closing {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 96px) 36px;
  text-align: center;
}
.closing-line {
  margin: 0 0 22px;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.5vw, 3.4rem);
  line-height: 1;
}
.big-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--cream);
  background: var(--accent);
  padding: 14px 30px;
  border-radius: 999px;
}
.big-cta:hover { background: #a13343; }

/* ---------- Footer ---------- */
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 36px;
  background: transparent;
  border-top: 1px solid var(--line);
}
.foot-mark { font-family: var(--display); font-size: 0.9rem; letter-spacing: 0.04em; }
.foot-note { font-family: var(--mono); font-style: italic; font-size: 0.85rem; color: var(--cream-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .bar { padding: 14px 20px; }
  .bar-nav { gap: 14px; }
  .bar-nav a:not(.cta) { display: none; }   /* keep just the wordmark + Inquire on mobile */
  .hero { padding: 44px 20px 28px; }
  .doorway { padding: 16px 20px 56px; }
  .closing { padding: 56px 20px; }
  .foot { padding: 18px 20px; }
}
