/* ============================================================
   FA Fitness — Sector 141, Noida
   Hand-written. No framework, no third-party request.

   Where the colours come from:
     graphite   #121210 / #1C1C19  the ground their own logo artwork is
                                   supplied on (#1D1D1B, sampled), and the
                                   colour of the building itself at night
     crimson    #B00A2E / #E8153F  the figure mark in the logo, sampled
                                   (#AB042F deep, #E50633 bright)
     pale steel #EFF0F1            the mirrors, the chrome bars and the
                                   hexagon wall behind reception
     warm white rgba(255,244,230)  the LED linework on the facade and the
                                   ceilings — used only for hairlines
   ============================================================ */

/* ---------- fonts, self-hosted ---------- */
@font-face {
  font-family: 'Saira';
  src: url('/assets/fonts/saira-var.woff2') format('woff2-variations');
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/schibsted-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens: light ---------- */
:root {
  --bg:          #EFF0F1;
  --bg-2:        #FFFFFF;
  --ink:         #17181A;
  --muted:       #5C5E61;
  --line:        rgba(23, 24, 26, .14);
  --line-soft:   rgba(23, 24, 26, .07);
  --accent:      #B00A2E;
  --accent-text: #A00828;
  --accent-ink:  #FFFFFF;

  /* the graphite panels keep their own scheme in both modes */
  --panel:        #121210;
  --panel-2:      #1C1C19;
  --panel-ink:    #F2F0EB;
  --panel-muted:  #A3A199;
  --panel-line:   rgba(255, 244, 230, .13);
  --panel-accent: #E8153F;

  --lockup-dark:  none;
  --lockup-light: block;

  --radius: 2px;
  --shell: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- tokens: dark ---------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:          #121210;
    --bg-2:        #1A1A18;
    --ink:         #F2F0EB;
    --muted:       #A3A199;
    --line:        rgba(255, 244, 230, .13);
    --line-soft:   rgba(255, 244, 230, .07);
    --accent:      #E8153F;
    --accent-text: #FF3355;
    --accent-ink:  #FFFFFF;

    --panel:        #1C1C19;
    --panel-2:      #232320;
    --panel-ink:    #F2F0EB;
    --panel-muted:  #A3A199;
    --panel-line:   rgba(255, 244, 230, .14);
    --panel-accent: #E8153F;

    --lockup-dark:  block;
    --lockup-light: none;
  }
}

:root[data-theme="dark"] {
  --bg:          #121210;
  --bg-2:        #1A1A18;
  --ink:         #F2F0EB;
  --muted:       #A3A199;
  --line:        rgba(255, 244, 230, .13);
  --line-soft:   rgba(255, 244, 230, .07);
  --accent:      #E8153F;
  --accent-text: #FF3355;
  --accent-ink:  #FFFFFF;

  --panel:        #1C1C19;
  --panel-2:      #232320;
  --panel-ink:    #F2F0EB;
  --panel-muted:  #A3A199;
  --panel-line:   rgba(255, 244, 230, .14);
  --panel-accent: #E8153F;

  --lockup-dark:  block;
  --lockup-light: none;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Schibsted Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, .num, .btn, .eyebrow, .stat__k {
  font-family: 'Saira', ui-sans-serif, system-ui, sans-serif;
}

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.018em; line-height: 1.03; }

h1 { font-size: clamp(2.45rem, 6.4vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.05rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); letter-spacing: -.008em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 1px;
}

.vh {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--accent);
  vertical-align: .28em;
  margin-right: .7em;
}
.panel .eyebrow { color: var(--panel-muted); }
.panel .eyebrow::before { background: var(--panel-accent); }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
}
h1 + .lede, h2 + .lede { margin-top: 1.25rem; }
.panel .lede { color: var(--panel-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn--accent:hover { background: var(--accent-text); border-color: var(--accent-text); color: #fff; }

.panel .btn { border-color: var(--panel-line); color: var(--panel-ink); }
.panel .btn:hover { background: var(--panel-ink); color: var(--panel); border-color: var(--panel-ink); }
.panel .btn--accent { background: var(--panel-accent); border-color: var(--panel-accent); color: #fff; }
.panel .btn--accent:hover { background: #FF3355; border-color: #FF3355; color: #fff; }

.btn--sm { min-height: 44px; padding: 0 1rem; font-size: .76rem; }

.btnrow { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ---------- masthead ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
@supports not (backdrop-filter: blur(2px)) {
  .masthead { background: var(--bg); }
}
.masthead__in {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
}
.brand { display: block; flex: none; line-height: 0; text-decoration: none; }
.brand img { width: 168px; height: auto; }
.brand .on-dark  { display: var(--lockup-dark); }
.brand .on-light { display: var(--lockup-light); }

.nav { margin-left: auto; }
.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.9rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav a {
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .78rem 0;
  display: block;
  transition: color .16s var(--ease);
}
.nav a:hover { color: var(--ink); }

.masthead__act { display: flex; align-items: center; gap: .5rem; flex: none; }

.tog {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.tog:hover { border-color: var(--ink); }
.tog svg { width: 17px; height: 17px; }
.tog .i-moon { display: block; }
.tog .i-sun  { display: none; }
.tog[aria-pressed="true"] .i-moon { display: none; }
.tog[aria-pressed="true"] .i-sun  { display: block; }

.burger { display: none; }
.burger svg { width: 18px; height: 18px; }
.burger .i-close { display: none; }
.burger[aria-expanded="true"] .i-bars { display: none; }
.burger[aria-expanded="true"] .i-close { display: block; }

@media (max-width: 900px) {
  .brand img { width: 138px; }
  .burger {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .burger:hover { border-color: var(--ink); }

  .nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav[data-open="true"] { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .4rem var(--gut) 1.2rem; }
  .nav li + li { border-top: 1px solid var(--line-soft); }
  .nav a { padding: 1rem 0; font-size: .9rem; color: var(--ink); }
}
@media (max-width: 430px) {
  /* Call stays — it is the whole point of the header. It just loses its word. */
  .masthead .btn--sm { padding: 0; width: 44px; }
  .masthead .btn--sm .btn__t { display: none; }
  .brand img { width: 118px; }
  .masthead__act { gap: .35rem; }
}

/* ---------- panels: the graphite bands ---------- */
.panel {
  background: var(--panel);
  color: var(--panel-ink);
  /* the fluted slat wall behind reception, at a whisper */
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 244, 230, .028) 0 1px,
    transparent 1px 13px
  );
}
.panel h1, .panel h2, .panel h3 { color: var(--panel-ink); }
.panel a { color: var(--panel-ink); }

/* ---------- hero ---------- */
.hero { padding: clamp(3.4rem, 8vw, 6.4rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.3rem; text-wrap: balance; }
.hero h1 em {
  font-style: normal;
  color: var(--panel-accent);
}
.hero .btnrow { margin-top: 2rem; }

.hero__plate {
  --notch: 46px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  /* the angled cut is the logo's figure mark and the LED chevrons */
  clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch),
                     100% 100%, var(--notch) 100%, 0 calc(100% - var(--notch)));
}
@media (max-width: 700px) { .hero__plate { --notch: 26px; } }

@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__plate { order: -1; max-height: 62vh; }
  .hero__plate img { width: 100%; object-fit: cover; height: 100%; }
}
.hero__plate img { width: 100%; }

.rating {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--panel-line);
  font-size: .92rem;
  color: var(--panel-muted);
  text-decoration: none;
  transition: color .16s var(--ease);
}
.rating:hover { color: var(--panel-ink); }
.rating b { color: var(--panel-ink); font-weight: 600; }
.rating .stars { display: inline-flex; gap: 2px; }
.rating .stars svg { width: 13px; height: 13px; fill: #E0A72C; }

/* ---------- the facts strip ---------- */
.strip { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.strip li {
  padding: 1.5rem 0;
  padding-right: 1.5rem;
}
.strip li + li { border-left: 1px solid var(--line-soft); padding-left: clamp(1rem, 3vw, 2.4rem); }
.strip .k {
  display: block;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .4rem;
}
.strip .v { font-size: clamp(.95rem, 1.4vw, 1.06rem); font-weight: 500; }
.strip a { color: var(--accent-text); text-decoration: none; text-underline-offset: 3px; }
.strip a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .strip ul { grid-template-columns: 1fr; }
  .strip li { padding: 1.05rem 0; }
  .strip li + li { border-left: 0; border-top: 1px solid var(--line-soft); padding-left: 0; }
}

/* ---------- section frame ---------- */
.sect { padding: clamp(3.6rem, 8vw, 7rem) 0; }
.sect__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
  padding-bottom: clamp(1.4rem, 2.5vw, 2.2rem);
  border-bottom: 1px solid var(--line);
}
.sect__head h2 { text-wrap: balance; max-width: 18ch; }
.sect__head > p { margin: 0 0 .3rem; color: var(--muted); max-width: 46ch; }
.panel .sect__head { border-bottom-color: var(--panel-line); }
.panel .sect__head > p { color: var(--panel-muted); }
.sect__head a { color: var(--accent-text); text-underline-offset: 3px; }

@media (max-width: 820px) {
  .sect__head { grid-template-columns: 1fr; align-items: start; gap: 1.1rem; }
  .sect__head h2 { max-width: none; }
}

/* ---------- the floor ---------- */
.floor__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.floor__media { display: grid; gap: 1rem; }
.floor__media img { border: 1px solid var(--line); width: 100%; object-fit: cover; }
.floor__media img:first-of-type { aspect-ratio: 3 / 4; }
.floor__media img:last-of-type  { aspect-ratio: 4 / 5; }
.floor__cap {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .02em;
}

.rows { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: clamp(.9rem, 2vw, 2rem);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.num {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent-text);
  padding-top: .18rem;
}
.row h3 { margin-bottom: .5rem; }
.row p { color: var(--muted); font-size: .98rem; }

@media (max-width: 860px) {
  .floor__grid { grid-template-columns: 1fr; }
  .floor__media { position: static; }
}

/* ---------- classes band ---------- */
.classes__in {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.classes__media { border: 1px solid var(--panel-line); overflow: hidden; }
.classes__list { list-style: none; margin: 2rem 0 0; padding: 0; }
.classes__list li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--panel-line);
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
}
.classes__list b {
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -.005em;
}
.classes__list span { color: var(--panel-muted); font-size: .96rem; }
.classes .note {
  margin-top: 1.8rem;
  font-size: .95rem;
  color: var(--panel-muted);
  border-left: 2px solid var(--panel-accent);
  padding-left: 1.05rem;
}
.classes .note a { color: var(--panel-ink); text-underline-offset: 3px; }

@media (max-width: 860px) {
  .classes__in { grid-template-columns: 1fr; }
  .classes__list li { grid-template-columns: 1fr; gap: .25rem; }
}

/* ---------- gallery ---------- */
.gal {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1.1rem);
}
.gal figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  height: var(--gh);
}
.gal img { width: 100%; height: 100%; object-fit: cover; }
.gal figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 3rem .95rem .85rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #F4F2ED;
  background: linear-gradient(to top,
              rgba(8, 8, 7, .94) 0%, rgba(8, 8, 7, .78) 40%, rgba(8, 8, 7, 0) 100%);
}
/* Two rows of unequal height, unequal spans — a mosaic rather than a grid. */
.g-a { grid-column: span 7; --gh: clamp(300px, 39vw, 552px); }
.g-b { grid-column: span 5; --gh: clamp(300px, 39vw, 552px); }
.g-c { grid-column: span 5; --gh: clamp(260px, 30vw, 424px); }
.g-d { grid-column: span 7; --gh: clamp(260px, 30vw, 424px); }

@media (max-width: 760px) {
  .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-a, .g-b, .g-c, .g-d { grid-column: span 1; --gh: 46vw; }
  .g-a { grid-column: span 2; --gh: 58vw; }
}
@media (max-width: 420px) {
  .gal { grid-template-columns: 1fr; }
  .g-a, .g-b, .g-c, .g-d { grid-column: span 1; --gh: 68vw; }
}

/* ---------- about ---------- */
.about__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about__body { max-width: 56ch; }
.about__body p { color: var(--muted); }
.about__body p:first-of-type {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.5;
}
.about__media img { border: 1px solid var(--line); }
.hiring {
  margin-top: 2.2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: .95rem;
}
.hiring b { font-family: 'Saira', sans-serif; letter-spacing: .01em; }
.hiring a { color: var(--accent-text); text-underline-offset: 3px; }

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

/* ---------- visit ---------- */
.visit__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}
.dl { margin: 0; }
.dl > div {
  padding: 1.2rem 0;
  border-top: 1px solid var(--panel-line);
  display: grid;
  grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
  gap: 1rem;
}
.dl dt {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--panel-muted); padding-top: .28rem;
}
.dl dd { margin: 0; font-size: 1rem; }
.dl dd a { text-underline-offset: 3px; }
.visit .btnrow { margin-top: 2rem; }

@media (max-width: 860px) {
  .visit__in { grid-template-columns: 1fr; }
  .dl > div { grid-template-columns: 1fr; gap: .2rem; }
}

/* ---------- enquiry form ---------- */
.enquiry {
  border: 1px solid var(--panel-line);
  background: var(--panel-2);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.enquiry__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enquiry__field { margin-bottom: 1.1rem; }
.enquiry label {
  display: block;
  font-size: .7rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--panel-muted); margin-bottom: .45rem;
}
.enquiry__optional { letter-spacing: .06em; text-transform: none; font-weight: 400; }
.enquiry input, .enquiry textarea {
  width: 100%;
  min-height: 48px;
  padding: .7rem .85rem;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  color: var(--panel-ink);
  font: inherit;
  font-size: 16px; /* stops iOS zooming on focus */
}
.enquiry textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.enquiry input:focus, .enquiry textarea:focus {
  outline: 2px solid var(--panel-accent);
  outline-offset: 1px;
  border-color: transparent;
}
.enquiry input::placeholder { color: color-mix(in srgb, var(--panel-muted) 70%, transparent); }
.enquiry button[type="submit"] {
  width: 100%;
  min-height: 52px;
  margin-top: .4rem;
  border: 1px solid var(--panel-accent);
  border-radius: var(--radius);
  background: var(--panel-accent);
  color: #fff;
  font-family: 'Saira', sans-serif;
  font-size: .86rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .18s var(--ease);
}
.enquiry button[type="submit"]:hover { background: #FF3355; border-color: #FF3355; }
.enquiry button[type="submit"]:disabled { opacity: .6; cursor: default; }
.enquiry__done { margin: 0; font-size: 1rem; color: var(--panel-ink); }
.enquiry__note { margin: .9rem 0 0; font-size: .82rem; color: var(--panel-muted); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: clamp(2.6rem, 5vw, 4rem) 0 2rem; }
.foot__in {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 2rem clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.foot h4 {
  margin: 0 0 .9rem;
  font-family: 'Saira', sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.foot ul { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.foot li { margin-bottom: .45rem; }
.foot a { text-decoration: none; text-underline-offset: 3px; }
.foot a:hover { text-decoration: underline; }
.foot__brand img { width: 176px; }
.foot__brand .on-dark  { display: var(--lockup-dark); }
.foot__brand .on-light { display: var(--lockup-light); }
.foot__addr { margin-top: 1.1rem; font-size: .95rem; color: var(--muted); max-width: 30ch; }

.foot__end {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  color: var(--muted);
}
.built-by {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--muted);
  opacity: .8;
  transition: opacity .16s var(--ease);
}
.built-by:hover { opacity: 1; }
.built-by img { width: 82px; height: auto; }
.built-by .on-dark  { display: var(--lockup-dark); }
.built-by .on-light { display: var(--lockup-light); }

@media (max-width: 760px) {
  .foot__in { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: span 2; }
}

/* ---------- 404 ---------- */
.oops { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 4rem 0; }
.oops p { color: var(--muted); margin: 1.1rem 0 2rem; }

/* ---------- print: menus and price lists get printed ---------- */
@media print {
  .masthead, .btnrow, .enquiry, .tog, .burger, .nav, .gal, .hero__plate,
  .classes__media, .about__media, .floor__media, .built-by { display: none !important; }
  :root { --bg: #fff; --ink: #000; --muted: #333; --panel: #fff; --panel-ink: #000; --panel-muted: #333; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .panel { background: #fff !important; background-image: none !important; color: #000 !important; }
  .panel h1, .panel h2, .panel h3, .panel a { color: #000 !important; }
  .sect, .hero { padding: .8rem 0; }
  .hero__in, .classes__in, .about__in, .visit__in, .floor__grid { display: block; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #555; }
  a[href^="#"]::after, a[href^="tel"]::after, a[href^="mailto"]::after,
  a[href*="maps.google"]::after { content: ''; }
}
