/* ==========================================================================
   Marlow Ridge — concept build
   Austere symmetry. No boxes, no badges, no decorative rules. Content sits
   on the page held by whitespace alone; hairlines appear only where two
   things genuinely need separating. Copper is used three times on the
   whole page.
   Type: Archivo 400–600 (never heavy) + Source Sans 3
   ========================================================================== */

:root {
  --slate:      #22272b;
  --slate-deep: #14181a;

  --bone:       #f6f2ea;
  --bone-deep:  #efe9dd;
  --rule:       #ddd6c8;
  --rule-dark:  #2e3438;

  --copper:     #a85a28;
  --copper-ink: #8f4a1e;
  --copper-lit: #c9834f;

  --ink:        #23282a;
  /* Quiet greys, but every one measured against its own background.
     Pale micro-labels are the signature failure of this style. */
  --ink-soft:   #5a5f59;   /* 5.9:1 on bone            */
  --ink-faint:  #656963;   /* 5.0:1 bone, 4.6:1 alt    */
  --faint-dark: #8f948d;   /* 4.9:1 slate, 5.8:1 deep  */

  --head: 'Archivo', system-ui, sans-serif;
  --body: 'Source Sans 3', system-ui, sans-serif;

  --shell: 1080px;
  --bay:   clamp(88px, 13vw, 190px);   /* the page is mostly this */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
h1, h2 { font-family: var(--head); margin: 0; font-weight: 500; letter-spacing: -0.02em; }
p, ul { margin: 0; }
sup { font-size: .65em; vertical-align: super; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 48px);
}

.skip { position: absolute; left: -9999px; background: var(--slate); color: var(--bone); padding: 12px 20px; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }

/* the one small-caps voice used for every label on the page */
.label, .nav a, .credentials, .list-note, .list-price,
.fld label, .foot-meta, .callbar a, .concept-bar {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------- concept */

.concept-bar {
  background: var(--slate-deep); color: #8d8f88;
  padding: 11px 0; text-align: center; font-size: 10px;
}
.concept-bar a { color: var(--copper-lit); text-decoration: none; }

/* ------------------------------------------------------------ header */

.head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246, 242, 234, 0.96);
  backdrop-filter: blur(6px);
}
.head-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; min-height: 104px; gap: 24px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav-l { justify-content: flex-start; }
.nav-r { justify-content: flex-end; }
.nav a { color: var(--ink-soft); text-decoration: none; padding-block: 14px; transition: color .2s ease; }
.nav a:hover { color: var(--ink); }

.brand {
  display: grid; justify-items: center; align-content: center;
  gap: 6px; min-height: 44px; text-decoration: none;
}
.brand strong {
  font-family: var(--head); font-weight: 500; font-size: 19px;
  color: var(--slate); letter-spacing: 0.02em; line-height: 1;
}
.brand em {
  font-style: normal; font-family: var(--head);
  font-size: 9px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-faint);
}

.burger {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.burger span { width: 22px; height: 1px; background: var(--slate); display: block; }

.mnav { display: none; text-align: center; padding-bottom: 20px; }
.mnav.open { display: block; }
.mnav a {
  display: block; padding: 16px 0;
  font-family: var(--head); font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}

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

.hero { padding-top: clamp(56px, 9vw, 130px); text-align: center; }

.label { color: var(--ink-faint); display: block; }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 86px);
  line-height: 1.04;
  color: var(--slate);
  margin: clamp(30px, 4vw, 52px) 0 clamp(34px, 4.4vw, 58px);
}

.link {
  display: inline-flex;
  align-items: flex-end;
  min-height: 44px;                 /* tap target — the underline stays thin */
  font-family: var(--head); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper-ink); text-decoration: none;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--copper);
  transition: opacity .2s ease;
}
.link:hover { opacity: .6; }

.bleed { margin: clamp(56px, 8vw, 110px) 0 0; }
.bleed img { width: 100%; height: clamp(300px, 42vw, 620px); object-fit: cover; }

.credentials {
  display: block; text-align: center;
  color: var(--ink-faint); font-size: 10px;
  padding-top: clamp(30px, 4vw, 48px);
}

/* ------------------------------------------------------------- bands */

.band { padding: var(--bay) 0; text-align: center; }
.band-alt { background: var(--bone-deep); }
.band-dark { background: var(--slate); color: var(--bone); }

.band h2 {
  font-size: clamp(11px, 1.1vw, 12px);
  font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: clamp(46px, 6vw, 78px);
}
.contact h2 { margin-bottom: clamp(30px, 4vw, 46px); }

/* -------------------------------------------------------- price list */

.list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; }
.list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 6px 24px;
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid var(--rule);
  text-align: left;
}
.list li:last-child { border-bottom: 1px solid var(--rule); }

.list-name {
  font-family: var(--head); font-weight: 400;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.015em; color: var(--slate);
}
.list-price { color: var(--ink-soft); font-size: 10px; justify-self: end; }
.list-note {
  grid-column: 1 / -1;
  color: var(--ink-faint); font-size: 10px; letter-spacing: 0.16em;
}

/* ------------------------------------------------------------ plates */

.plates { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.plates figure { margin: 0; }
.plates img {
  width: 100%;
  height: auto;              /* overrides the html height="" attribute so
                                 aspect-ratio below is what actually sizes it */
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* a spec stack, not a caption: what it is, how big, what it cost */
.plates figcaption { display: grid; justify-items: center; margin-top: 20px; }

.pl-place {
  font-family: var(--head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint);
}
.pl-name {
  font-family: var(--head); font-weight: 400;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.28;
  letter-spacing: -0.01em; color: var(--slate);
  margin-top: 14px;
}
.pl-size {
  font-family: var(--head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  margin-top: 12px;
}
.pl-price {
  font-family: var(--head); font-weight: 400;
  font-size: clamp(20px, 2vw, 25px); color: var(--slate);
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--rule); width: 100%;
}
.pl-price small {
  display: block; margin-top: 6px;
  font-family: var(--head); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint);
}
.pl-link {
  display: inline-flex; align-items: flex-end; min-height: 44px;
  margin-top: 8px;
  font-family: var(--head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper-ink); text-decoration: none;
  padding-bottom: 5px; border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.pl-link:hover { border-bottom-color: var(--copper); }

.plates-foot {
  max-width: 52ch; margin: clamp(46px, 5.5vw, 70px) auto 0;
  font-size: 13.5px; line-height: 1.7; color: var(--ink-faint);
}

/* ------------------------------------------------------------- quote */

.quote-band { padding-block: clamp(76px, 11vw, 160px); }
.quote-band blockquote {
  margin-inline: auto;   /* .shell centring, restored after the margin reset */
  margin-block: 0;
  font-family: var(--head); font-weight: 400;
  font-size: clamp(20px, 2.7vw, 34px);
  line-height: 1.34; letter-spacing: -0.015em;
  color: var(--slate);
  max-width: 900px;
}
.quote-band cite {
  display: block; margin-top: clamp(26px, 3.4vw, 42px);
  font-family: var(--head); font-style: normal;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* -------------------------------------------------------------- form */

/* the number itself is the call to action */
.contact { background: var(--bone-deep); }

.dial {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px;                 /* it is a phone link before it is type */
  font-family: var(--head); font-weight: 400;
  font-size: clamp(38px, 6.6vw, 88px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--slate); text-decoration: none;
  transition: color .2s ease;
}
.dial:hover { color: var(--copper-ink); }

.hours {
  font-family: var(--head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint);
  margin-top: clamp(26px, 3vw, 38px);
}

.callback { max-width: 400px; margin: clamp(56px, 7vw, 96px) auto 0; }
.callback label {
  display: block; font-size: 13.5px; color: var(--ink-soft);
  margin-bottom: 14px; letter-spacing: 0; text-transform: none;
  font-family: var(--body); font-weight: 400;
}
.callback-row { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 14px; }
.callback input {
  min-height: 46px; width: 100%;
  background: transparent; color: var(--ink);
  border: none; border-bottom: 1px solid var(--rule); border-radius: 0;
  padding: 0 0 8px;
  font-family: var(--body); font-size: 17px;
  transition: border-color .2s ease;
}
.callback input:hover { border-color: #c4b9a5; }
.callback input:focus { outline: none; border-color: var(--copper); }

.callback button {
  min-height: 46px; padding: 0 22px;
  background: transparent; color: var(--slate);
  border: none; border-bottom: 1px solid var(--slate); border-radius: 0;
  font-family: var(--head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: color .2s ease, border-color .2s ease;
}
.callback button:hover { color: var(--copper-ink); border-bottom-color: var(--copper); }
.callback button:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.note { margin-top: 20px; font-size: 13.5px; color: var(--copper-ink); min-height: 1.3em; }

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

.foot { background: var(--slate-deep); color: var(--faint-dark); padding: clamp(52px, 6vw, 78px) 0; text-align: center; }
.foot-brand { font-family: var(--head); font-weight: 500; font-size: 17px; letter-spacing: 0.02em; color: var(--bone); }
.foot-meta { display: block; margin-top: 14px; font-size: 10px; color: var(--faint-dark); }
.foot-fine { margin-top: clamp(30px, 3.6vw, 44px); font-size: 12.5px; color: var(--faint-dark); }
.foot-fine a { color: var(--bone); }

/* --------------------------------------------------------- call bar */

.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; grid-template-columns: 1fr 1fr; }
.callbar a {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; text-decoration: none;
  background: var(--slate); color: var(--bone); font-size: 10px;
}
.callbar .callbar-alt { background: var(--copper); color: #fff; }

/* ------------------------------------------------------- responsive */

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; justify-self: end; grid-column: 3; }
  .brand { grid-column: 2; }
  .head-inner { min-height: 78px; }

  .plates { grid-template-columns: 1fr; gap: 54px; }
  .plates img { aspect-ratio: 16 / 10; }
  .plates figcaption { max-width: 420px; margin-inline: auto; }

  .callbar { display: grid; }
  body { padding-bottom: 56px; }
}

@media (max-width: 560px) {
  .list li { grid-template-columns: 1fr; }
  .list-price { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
