/*
  ============================================
  GRAVAZ - COMING SOON PAGE
  ============================================
  Standalone stylesheet for this temporary page only. It does not reuse the
  real site's CSS on purpose, so this page stays fully isolated from the
  real website in assets/css/. Colours are the same brand values, copied
  here as plain numbers rather than shared files or tokens.
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Removes native OS button chrome (grey box, default border) so buttons only
   ever look like what their own class defines. Needed since this page uses
   real <button> elements for Cookie Settings and Accept/Reject. */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

html {
  color-scheme: dark;
}

body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-block: calc(1.5rem + env(safe-area-inset-top, 0px)) calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background: #120c09;
  color: #f1e7d8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon__logo {
  width: min(11rem, 45vw);
  height: auto;
}

.coming-soon__label {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #5c4432;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #e5a95d;
}

.coming-soon__text {
  margin-top: 1rem;
  max-width: 26rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #c9bba7;
}

.coming-soon__text a {
  color: #f1e7d8;
  border-bottom: 1px solid #b98444;
}

.coming-soon__text a:hover,
.coming-soon__text a:focus-visible {
  color: #e5a95d;
}

/*
  404 page only (public/404.html). Reuses .coming-soon and .coming-soon__label
  above, but replaces the logo with a large numeral in the same position.
*/

.not-found__code {
  /* Same typeface and colour as .coming-soon__label, so it reads as one
     design system. This is the dominant element on the page, like a
     conventional 404 numeral, with "Page Not Found" as the smaller
     heading beneath it. */
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(3.25rem, 2.25rem + 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e5a95d;
}

.not-found__back {
  display: inline-block;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #b98444;
}

/* Explicit link/visited/hover/focus/active states so no browser default
   (blue, purple-visited, or the default focus outline) can ever show. */
.not-found__back:link,
.not-found__back:visited {
  color: #f1e7d8;
}

.not-found__back:hover,
.not-found__back:focus-visible,
.not-found__back:active {
  color: #e5a95d;
  border-bottom-color: #e5a95d;
}

.not-found__back:focus-visible {
  outline: 2px solid #e5a95d;
  outline-offset: 4px;
}

/*
  Cookie Settings link, shown under the page content. Built into the HTML
  (not JS) so it always exists; consent.js only wires its click handler.
*/
.coming-soon__settings {
  margin-top: 3rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #9a8b79;
  border-bottom: 1px solid transparent;
}

.coming-soon__settings:hover,
.coming-soon__settings:focus-visible {
  color: #e5a95d;
  border-bottom-color: #b98444;
}

.coming-soon__settings:focus-visible {
  outline: 2px solid #e5a95d;
  outline-offset: 3px;
}

/*
  ============================================
  COOKIE BANNER (Google Analytics consent)
  Built by /consent.js. Accept and Reject share the exact same button
  style on purpose, so neither choice looks more prominent than the other.
  ============================================
*/

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 20;
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  background: #1a110d;
  border-top: 1px solid #5c4432;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}

.cookie-banner__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5a95d;
}

.cookie-banner__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #c9bba7;
}

.cookie-banner__text a {
  color: #f1e7d8;
  border-bottom: 1px solid #b98444;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus-visible {
  color: #e5a95d;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding-inline: 1.5rem;
  border: 1px solid #e5a95d;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1e7d8;
  background: transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}

.cookie-banner__button .icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  background: #e5a95d;
  color: #120c09;
}

.cookie-banner__button:focus-visible {
  outline: 2px solid #f0c184;
  outline-offset: 3px;
}

/*
  ============================================
  COOKIE POLICY PAGE ONLY (public/cookie-policy/index.html)
  Longer, left-aligned reading content, so it overrides the shared
  centered/vertically-centered body layout used by the short pages above.
  ============================================
*/

.policy-page {
  align-items: flex-start;
  padding-block: calc(3rem + env(safe-area-inset-top, 0px)) calc(6rem + env(safe-area-inset-bottom, 0px));
}

.policy {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  text-align: left;
}

.policy__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5a95d;
}

.policy__title {
  margin-top: 0.75rem;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 400;
  color: #f1e7d8;
}

.policy h2 {
  margin-top: 2rem;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #e5a95d;
}

.policy p {
  margin-top: 0.75rem;
  line-height: 1.7;
  color: #c9bba7;
}

.policy code {
  padding: 0.1rem 0.35rem;
  background: #2b1c18;
  color: #f1e7d8;
  font-size: 0.875em;
}

.policy__todo {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #5c4432;
  font-size: 0.8125rem;
  color: #9a8b79;
}

.policy .not-found__back {
  margin-top: 2.5rem;
}
