/* ============================================================
   SPOON — website styles
   Dark-canvas marketing site. Builds on tokens.css.
   Pairs with: index / evenings / approach / enquire.
   ============================================================ */

/* ---- base ---- */
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 96px);
}

.skip-link {
  position: absolute; left: -999px;
  background: var(--cream); color: var(--ink);
  padding: 10px 16px; z-index: 200;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-link:focus { left: 16px; top: 16px; }

.eyebrow { color: var(--burgundy-bright); }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 15px 28px; text-decoration: none;
  border: 1px solid currentColor; cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn--primary { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--primary:hover { background: var(--burgundy-bright); color: var(--cream); border-color: var(--burgundy-bright); }
.btn--secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--secondary:hover { background: var(--cream); color: var(--ink); }
.btn--text {
  border: 0; border-bottom: 1px solid var(--burgundy-bright);
  padding: 5px 0; letter-spacing: 0.22em; color: var(--cream);
}
.btn--text:hover { color: var(--burgundy-bright); }

/* ---- rule ---- */
.rule { width: 28px; height: 1px; background: var(--burgundy-bright); margin: 36px auto; border: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav { padding: clamp(28px, 5vw, 52px) 0 0; }
.nav-lockup {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.nav-lockup .mark { width: 76px; height: auto; color: var(--cream); }
.nav-lockup .wordmark {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
}
.nav-lockup,
.nav-lockup:hover { text-decoration: none; color: var(--cream); }

.nav-row {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
.nav-links { grid-column: 2; display: flex; gap: 34px; justify-content: center; }
.nav-links a {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--burgundy-bright); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--burgundy-bright); }
.nav-city {
  grid-column: 3; justify-self: end;
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 640px) {
  .nav-row { grid-template-columns: 1fr; gap: 14px; }
  .nav-links { grid-column: 1; flex-wrap: wrap; gap: 22px; }
  .nav-city { grid-column: 1; justify-self: center; }
}

/* ============================================================
   HERO  /  PAGE HEADER
   ============================================================ */
.hero {
  text-align: center;
  padding: clamp(56px, 9vw, 124px) 0 clamp(44px, 6vw, 88px);
}
.hero .eyebrow { display: block; margin-bottom: 24px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; }
.hero .standfirst {
  font-family: var(--font-body); font-size: 18px; line-height: 1.5;
  letter-spacing: normal; max-width: 42ch; margin: 0 auto;
  color: var(--fg-muted);
}
.hero .standfirst em { font-style: italic; color: var(--cream); }
.hero .cta { margin-top: 8px; }

.page-head {
  text-align: center;
  padding: clamp(48px, 7vw, 100px) 0 clamp(36px, 5vw, 64px);
}
.page-head .eyebrow { display: block; margin-bottom: 20px; }
.page-head h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 84px); line-height: 1.0;
  letter-spacing: -0.014em; margin: 0 0 22px;
}
.page-head h1 em { font-style: italic; }
.page-head .standfirst {
  font-family: var(--font-body); font-size: 18px; line-height: 1.5;
  max-width: 42ch; margin: 0 auto; color: var(--fg-muted);
}

/* The tagline reads as a brand declaration — the largest type on the site. */
.tagline-declaration {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  margin: 0 0 40px;
}
.tagline-declaration em { font-style: italic; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(56px, 9vw, 120px) 0;
  border-top: 1px solid var(--rule-soft);
}
.section-grid {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: clamp(28px, 5vw, 72px);
}
.section-grid .col-head .eyebrow {
  display: block; margin-bottom: 12px;
}
.section-grid h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.08;
  letter-spacing: -0.008em; margin: 0;
}
.section-grid h2 em { font-style: italic; }
.section-body p {
  font-family: var(--font-body); font-size: var(--t-prose);
  line-height: 1.62; color: var(--fg-muted); margin: 0;
}
.section-body p + p { margin-top: 1em; }
.section-body p em { font-style: italic; color: var(--cream); }
.section-body .btn--text { margin-top: 28px; }
@media (max-width: 760px) {
  .section-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---- pillars ---- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px); margin-top: clamp(36px, 5vw, 56px);
}
.pillar { border-top: 2px solid var(--cream); padding-top: 22px; }
.pillar .p-no {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--burgundy-bright); margin-bottom: 14px;
}
.pillar h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(30px, 3.4vw, 40px); line-height: 1; margin: 0 0 14px;
}
.pillar p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  color: var(--fg-muted); margin: 0;
}
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   PHOTOGRAPHY
   ============================================================ */
.photo-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.photo-band img {
  width: 100%; height: 100%; aspect-ratio: 3 / 4;
  object-fit: cover; background: var(--ink-soft);
}
@media (max-width: 720px) {
  .photo-band { grid-template-columns: 1fr 1fr; }
}

/* ---- three-up band ---- */
.photo-band.band-3 { grid-template-columns: repeat(3, 1fr); }

/* ---- single feature image, full-bleed between text sections ---- */
.photo-feature { display: block; }
.photo-feature img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
  background: var(--ink-soft);
}

/* ---- editorial blockquote + cite inside section-body ---- */
.section-body blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1.3; color: var(--cream);
}
.section-body .cite {
  display: block; margin-top: 12px;
  font-family: var(--font-sans); font-size: 9px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-muted);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.approach-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  background: var(--ink-soft);
}
.approach-copy .eyebrow { display: block; }
.approach-copy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.04;
  letter-spacing: -0.012em; margin: 16px 0 24px;
}
.approach-copy h2 em { font-style: italic; }
.approach-copy .lead {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; line-height: 1.35; color: var(--cream); margin: 0 0 1em;
}
.approach-copy p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.62;
  color: var(--fg-muted); margin: 0 0 1em;
}
.approach-copy blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1.3; color: var(--cream);
}
.approach-copy .cite {
  display: block; margin-top: 12px;
  font-family: var(--font-sans); font-size: 9px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 760px) {
  .approach-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ENQUIRE
   ============================================================ */
.enquire-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: start;
}
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone);
}
.field input,
.field textarea {
  font-family: var(--font-body); font-size: 17px;
  background: transparent; color: var(--cream);
  border: 0; border-bottom: 1px solid var(--rule-soft);
  padding: 10px 2px; border-radius: 0;
  transition: border-color var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--burgundy-bright); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.form .form-actions {
  grid-column: 1 / -1; display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap; margin-top: 6px;
}
.form .form-note {
  font-family: var(--font-body); font-style: italic; font-size: 14px;
  color: var(--fg-muted); margin: 0;
}
.bot-field { position: absolute; left: -9999px; }

.enquire-aside { border-top: 1px solid var(--cream); padding-top: 24px; }
.enquire-aside .a-block { margin-bottom: 26px; }
.enquire-aside .a-block:last-child { margin-bottom: 0; }
.enquire-aside .a-label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--burgundy-bright); display: block; margin-bottom: 8px;
}
.enquire-aside .a-block p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  color: var(--cream); margin: 0;
}
.enquire-aside .a-block a { color: var(--cream); }
.enquire-aside .a-photo { margin-top: 30px; }
.enquire-aside .a-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
@media (max-width: 760px) {
  .enquire-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
}

/* ============================================================
   CLOSING BAND
   ============================================================ */
.closing {
  background: var(--ink-soft);
  text-align: center;
  padding: clamp(64px, 11vw, 144px) 0;
}
.closing .mark-sm { width: 88px; height: auto; color: var(--cream); margin: 0 auto 30px; }
.closing h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px); line-height: 1.08;
  letter-spacing: -0.01em; margin: 0;
}
.closing h2 em { font-style: italic; }
.closing p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.5;
  max-width: 46ch; margin: 0 auto; color: var(--fg-muted);
}
.closing .cta { margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--rule-soft);
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 4vw, 52px);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px 32px;
}
.footer-row a { text-decoration: none; }
.footer-row .f-item {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-muted);
}
.footer-row .f-brand { color: var(--cream); }

/* ============================================================
   VIBE GALLERY — the "An evening" page
   ============================================================ */
.vibe-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px; grid-auto-flow: dense; gap: 8px;
}
.vibe-tile {
  position: relative; overflow: hidden; background: var(--ink-soft);
}
.vibe-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 600ms var(--ease);
}
.vibe-tile:hover img { transform: scale(1.04); }
.vibe-tile.tall { grid-row: span 2; }
.vibe-tile.wide { grid-column: span 2; }
@media (max-width: 760px) {
  .vibe-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .vibe-tile.tall { grid-row: span 1; }
}

/* A quiet evocative line, used between vibe sections */
.vibe-statement {
  text-align: center;
  padding: clamp(56px, 9vw, 112px) 0;
}
.vibe-statement p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.2;
  color: var(--cream); max-width: 22ch; margin: 0 auto;
}

/* ============================================================
   MOTION — sections fade up on scroll (progressive enhancement)
   With JS off, content is fully visible (no .js class is added).
   ============================================================ */
.js .fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.js .fade-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .fade-up { opacity: 1; transform: none; transition: none; }
}
