/* ==========================================================
   OBSIDIAN GT — site styles
   Colours live in :root so the whole palette changes in one place.
   ========================================================== */
/* Self-hosted fonts (SIL Open Font Licence) */
@font-face { font-family: "Michroma"; src: url("assets/fonts/michroma-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --black: #0a0908;
  --leather: #14110e;
  --leather-2: #1c1813;
  --line: rgba(200, 151, 58, 0.22);
  --gold: #c8973a;
  --gold-bright: #e6b965;
  --gold-deep: #8a6420;
  --champagne: #e4dccb;
  --text: #d8d2c6;
  --muted: #9a9286;
  --radius: 18px;
  --max: 1160px;
  --display: "Michroma", "Eurostile", "Arial Black", sans-serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--champagne); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(var(--max), 100% - 32px); margin-inline: auto; }

/* subtle leather grain used on sections */
.grain {
  background-color: var(--leather);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(200,151,58,.07), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: .06em;
  line-height: 1.25;
  margin: 0 0 .6em;
}
h2 { font-size: clamp(1.35rem, 3.2vw, 2.1rem); text-transform: uppercase; }
h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }
p { margin: 0 0 1em; }
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; color: var(--champagne); max-width: 62ch; }
.muted { color: var(--muted); }
.metal {
  background: linear-gradient(180deg, #f6f1e6 0%, #cfc6b3 45%, #8f8676 55%, #e2dac8 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 9, 8, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--champagne); }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand span { font-family: var(--display); font-size: .78rem; letter-spacing: .28em; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--text); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-bright); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); color: var(--champagne);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px 16px 18px;
    background: rgba(10, 9, 8, .97); border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--black);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 8px 30px -12px rgba(230, 185, 101, .6);
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { color: var(--black); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(230,185,101,.75); }
.btn.ghost { background: transparent; color: var(--champagne); box-shadow: none; }
.btn.ghost:hover { background: rgba(200,151,58,.12); color: var(--champagne); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: 96px 0 84px; overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/hero.webp") center / cover no-repeat;
  transform: scale(1.08);
  animation: heroPush 18s ease-out both;
}
@media (max-width: 900px) { .hero-bg { background-image: url("assets/hero-1280.webp"); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(10,9,8,.45) 0%, rgba(10,9,8,.82) 62%, var(--black) 100%);
}
@keyframes heroPush { from { transform: scale(1.18); } to { transform: scale(1.04); } }

/* the spinning obsidian arrowhead */
.arrow-stage { position: relative; perspective: 900px; height: clamp(210px, 33vh, 340px); width: min(640px, 100%); margin: 0 auto 10px; display: grid; place-items: center; }
.arrow-stage::before { content: ""; position: absolute; left: 50%; top: 50%; width: min(420px, 80%); aspect-ratio: 1; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214,160,70,.13) 0%, rgba(214,160,70,.05) 40%, transparent 70%); pointer-events: none; }
.arrow-stage canvas {
  position: absolute; top: -14%; bottom: -14%; left: -22%; right: -22%; width: 144%; height: 128%;
  pointer-events: none; opacity: 0; transition: opacity 1s ease;
  /* soft edges so the close-up at the start fades out instead of being cut off */
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 62%, transparent 100%);
          mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 62%, transparent 100%);
}
.arrow-stage.gl-ready canvas { opacity: 1; }
/* the flat SVG arrow is only a fallback for devices without 3D */
.js .arrow-stage .arrow { display: none; }
.js .arrow-stage.gl-fail .arrow { display: block; }
.arrow {
  height: clamp(170px, 30vh, 290px); width: auto; aspect-ratio: 2 / 3; overflow: visible;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.8)) drop-shadow(0 0 22px rgba(200,151,58,.18));
  transform-style: preserve-3d;
  animation: arrowIntro 3.4s cubic-bezier(.16,.8,.2,1) both, arrowSpin 16s linear 3.4s infinite;
}
@keyframes arrowIntro {
  0%   { transform: translateY(18%) scale(5.5) rotateY(-35deg); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateY(0) scale(1) rotateY(0deg); opacity: 1; }
}
@keyframes arrowSpin {
  0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); }
}
.wordmark { position: relative; animation: fadeUp 1.2s ease 2.3s both; }
.wordmark .ob {
  display: block; font-family: var(--display);
  font-size: clamp(1.3rem, 4.6vw, 2.6rem); letter-spacing: .42em; padding-left: .42em;
}
.wordmark .gt {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(3.6rem, 13vw, 7.4rem); line-height: 1; letter-spacing: .06em; margin-top: 4px;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
}
.hero-sub { position: relative; animation: fadeIn 1.2s ease 2.9s both; margin-top: 26px; }
.hero-roles span { white-space: nowrap; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-name { font-family: var(--body); font-weight: 700; color: var(--champagne); letter-spacing: .3em; padding-left: .3em; font-size: clamp(.95rem, 2.2vw, 1.15rem); text-transform: uppercase; margin: 0; -webkit-font-smoothing: antialiased; }
.hero-roles { font-family: var(--body); font-weight: 600; color: var(--gold-bright); font-size: clamp(.8rem, 1.6vw, .9rem); letter-spacing: .2em; text-transform: uppercase; line-height: 1.9; max-width: 90ch; margin: 10px auto 30px; -webkit-font-smoothing: antialiased; text-shadow: 0 1px 12px rgba(0,0,0,.8); }
.hero .btn-row { justify-content: center; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid var(--line); border-radius: 14px;
  animation: fadeUp 1s ease 3.6s both;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 2px; background: var(--gold); animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- "met me on the lot" strip ---------- */
.spotted {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(200,151,58,.1), rgba(200,151,58,.02) 60%, rgba(200,151,58,.1));
}
.spotted .wrap { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 22px 0; text-align: center; flex-wrap: wrap; }
.spotted p { margin: 0; color: var(--champagne); }
.spotted strong { color: var(--gold-bright); font-weight: 700; }

/* ---------- sections ---------- */
section { position: relative; }
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.gold-rule { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold-bright), transparent); margin: 0 0 22px; border: 0; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fact { background: var(--leather); padding: 22px 20px; }
.fact b { display: block; font-family: var(--display); font-weight: 400; color: var(--champagne); font-size: .92rem; letter-spacing: .08em; margin-bottom: 4px; }
.fact span { color: var(--muted); font-size: .88rem; }
@media (max-width: 860px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .facts { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.quote {
  border-left: 2px solid var(--gold); padding: 6px 0 6px 22px; margin: 28px 0 0;
  font-family: var(--display); font-size: .95rem; letter-spacing: .05em; color: var(--champagne); line-height: 1.7;
}

/* cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  position: relative; padding: 28px 24px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--leather-2), var(--leather));
  border: 1px solid var(--line);
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(230,185,101,.5); }
.card .ico { width: 40px; height: 40px; color: var(--gold-bright); margin-bottom: 16px; }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* departments */
.depts { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.dept {
  padding: 18px 18px 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
}
.dept b { display: block; color: var(--champagne); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 4px; font-weight: 700; }
.dept span { color: var(--muted); font-size: .9rem; line-height: 1.5; display: block; }

/* licences */
.licences { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 18px; }
@media (max-width: 900px) { .licences { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .licences { grid-template-columns: repeat(2, 1fr); } }
.lic {
  text-align: center; padding: 22px 12px 18px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(200,151,58,.12), rgba(200,151,58,.02));
  border: 1px solid var(--line);
}
.lic .code { font-family: var(--display); font-size: 1.5rem; color: var(--champagne); display: block; }
.lic .what { color: var(--muted); font-size: .82rem; line-height: 1.4; display: block; margin-top: 6px; }
.lic.top { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(230,185,101,.25); }
.lic.top .code { color: var(--gold-bright); }
.note { font-size: .9rem; color: var(--muted); }

/* kit hire */
.kit { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.kit .card { display: flex; flex-direction: column; }
.kit .tag { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 700; }
.kit ul { margin: 14px 0 0; padding: 0; list-style: none; }
.kit li { color: var(--text); font-size: .92rem; padding: 7px 0 7px 22px; border-top: 1px solid rgba(255,255,255,.05); position: relative; }
.kit li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 8px; height: 8px; transform: rotate(45deg); border: 1px solid var(--gold); }

/* studio corridor */
.studios { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.studios span {
  padding: 8px 14px; border-radius: 999px; font-size: .82rem; letter-spacing: .06em;
  border: 1px solid var(--line); color: var(--champagne); background: rgba(200,151,58,.05);
}
.studios span.home { border-color: var(--gold); color: var(--gold-bright); }

/* showreel */
.reel {
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--line);
  background: url("assets/hero-1280.webp") center / cover;
  display: grid; place-items: center; text-align: center;
}
.reel::before { content: ""; position: absolute; inset: 0; background: rgba(10,9,8,.72); }
.reel > * { position: relative; }
.reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel .soon { font-family: var(--display); letter-spacing: .3em; color: var(--champagne); font-size: .9rem; padding: 0 16px; }

/* contact */
.contact-panel {
  border-radius: 24px; padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(200,151,58,.18), transparent 50%),
    linear-gradient(180deg, var(--leather-2), var(--leather));
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
@media (max-width: 860px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contact-list li span { color: var(--muted); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-list a { word-break: break-word; }

.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-label { margin: 22px 0 10px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.socials a {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px;
  border: 1px solid var(--line); color: var(--champagne); font-size: .85rem;
}
.socials a:hover { border-color: var(--gold); background: rgba(200,151,58,.08); }
.socials svg { width: 18px; height: 18px; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0 44px; color: var(--muted); font-size: .85rem; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-footer img { width: 38px; height: 38px; opacity: .9; }
.foot-brand { display: flex; align-items: center; gap: 12px; }

/* ---------- acting page ---------- */
.page-hero { padding: 140px 0 60px; }
.headshot {
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold); position: relative;
  background: linear-gradient(160deg, var(--leather-2), var(--black));
  display: grid; place-items: center;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9), 0 0 0 6px rgba(200,151,58,.06);
}
.headshot img { width: 100%; height: 100%; object-fit: cover; }
.headshot .ph { text-align: center; color: var(--muted); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; padding: 20px; }
.headshot .ph img { width: 90px; height: 90px; margin: 0 auto 14px; opacity: .8; object-fit: contain; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 26px 0; }
.stats div { background: var(--leather); padding: 14px 16px; }
.stats span { display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.stats b { font-weight: 600; color: var(--champagne); }
.skills { display: flex; flex-wrap: wrap; gap: 8px; }
.skills span { padding: 7px 12px; border-radius: 999px; font-size: .82rem; border: 1px solid rgba(255,255,255,.1); color: var(--text); }

.photos { display: flex; gap: 18px; flex-wrap: wrap; }
.photos a { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: border-color .25s; }
.photos a:hover { border-color: var(--gold); }
.photos img { height: clamp(360px, 48vw, 600px); width: auto; }
@media (max-width: 640px) { .photos a { width: 100%; } .photos img { width: 100%; height: auto; } }

/* ---------- scroll reveal (only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
/* home page acting teaser */
.acting-teaser { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.teaser-photo { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold); aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9), 0 0 0 6px rgba(200,151,58,.06); }
.teaser-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.teaser-photo:hover img { transform: scale(1.03); }
.teaser-stats { color: var(--champagne); font-size: .88rem; letter-spacing: .08em; }
@media (max-width: 760px) { .acting-teaser { grid-template-columns: 1fr; } .teaser-photo { max-width: 280px; } }
/* hero link to the acting page */
.hero-acting { display: inline-block; margin-top: 22px; font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--champagne); border-bottom: 1px solid rgba(230,185,101,.35); padding-bottom: 4px; transition: color .2s, border-color .2s; }
.hero-acting span { color: var(--gold-bright); }
.hero-acting:hover { color: #fff; border-color: var(--gold-bright); }
/* enquiry form */
.enquiry { margin-top: 26px; display: grid; gap: 14px; }
.enquiry .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .enquiry .row2 { grid-template-columns: 1fr; } }
.enquiry label { display: grid; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.enquiry .opt { color: var(--muted); font-weight: 400; letter-spacing: .08em; text-transform: none; }
.enquiry input, .enquiry select, .enquiry textarea {
  width: 100%; font: 400 1rem/1.4 var(--body); color: var(--champagne); letter-spacing: 0; text-transform: none;
  background: rgba(10,9,8,.6); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s; }
.enquiry select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.enquiry select option { background: #14110e; color: var(--champagne); }
.enquiry textarea { resize: vertical; min-height: 110px; }
.enquiry input::placeholder, .enquiry textarea::placeholder { color: #6f685e; }
.enquiry input:focus, .enquiry select:focus, .enquiry textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,58,.18); }
.enquiry button { cursor: pointer; font-family: var(--body); }
.form-error { margin: 0; color: #f0a37a; font-size: .9rem; }
.form-note { margin: 0; color: var(--muted); font-size: .85rem; }
/* if the 3D jewel arrives after the flat backup was shown, hide the backup again */
.js .arrow-stage.gl-ready .arrow { display: none; }
/* company details in the footer (required for a limited company) */
.site-footer .legal { margin: 18px auto 0; font-size: .75rem; color: var(--muted); line-height: 1.6; }
.site-footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.site-footer a:hover { color: var(--gold-bright); }
/* privacy page */
.prose { max-width: 720px; }
.prose h2 { font-size: 1rem; margin-top: 2.2em; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 1.2em; }
