/* ---------- Self-hosted fonts (OFL-licensed, subsets from Google Fonts) ---------- */

/* cinzel normal latin-ext */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/static/fonts/cinzel-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* cinzel normal latin */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/static/fonts/cinzel-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cormorant garamond italic latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* cormorant garamond italic latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cormorant garamond normal latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* cormorant garamond normal latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --gold: #d4af37;
  --gold-light: #f4e4a6;
  --gold-deep: #8a6d1f;
  --gold-text: #e8d8a8;  /* static body-copy gold, ~13:1 on near-black */
  --black: #050505;
}

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

/* ---------- Scrollbar ---------- */
html {
  scrollbar-color: var(--gold-deep) var(--black);  /* Firefox */
  scrollbar-width: thin;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold), var(--gold-deep));
  border-radius: 5px;
  border: 2px solid var(--black);  /* inset look, lets the black track frame the gold */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
}

html, body {
  min-height: 100%;
  background: var(--black);
  color: var(--gold);
  font-family: 'Cinzel', 'Times New Roman', serif;
  overflow-x: hidden;
}

body {
  /* subtle vignette so pure black doesn't feel flat */
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, #10100c 0%, var(--black) 70%) no-repeat,
    var(--black);
  background-size: 100% 100vh;
}

/* keyboard focus must survive the dark theme */
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  opacity: 1;
}

/* ---------- Hero (first screen) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;  /* mobile browsers with dynamic toolbars */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* DOM order puts the h1 banner first for screen readers;
   flex order restores the visual rings-above-banner layout */
.hero .stage      { order: 1; }
.hero .banner     { order: 2; }
.hero .scroll-cue { order: 3; }

/* ---------- Language switcher ---------- */
.lang-switch {
  position: absolute;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  z-index: 10;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  animation: fade-in 2s ease-out both;
}

.lang-switch a,
.lang-switch .active {
  display: block;
  padding: 0.6rem 0.7rem;  /* generous touch target */
  border-radius: 4px;
  text-decoration: none;
}

.lang-switch a {
  color: color-mix(in srgb, var(--gold) 70%, transparent);
  transition: color 0.25s ease;
}

.lang-switch a:hover { color: var(--gold-light); }

.lang-switch .active {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}

.lang-switch .sep { color: color-mix(in srgb, var(--gold) 70%, transparent); }

/* ---------- Banner ---------- */
.banner {
  width: 100%;
  padding: 1.4rem 1rem 1rem;
  /* slight pull toward the rings; the stage's empty lower band absorbs it */
  margin-top: -1rem;
  text-align: center;
  animation: fade-up 1.4s ease-out both;
}

.banner h1 {
  font-size: clamp(1.4rem, 3.8vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.45em;
  margin-right: -0.45em; /* balance the trailing letter-space */
  text-transform: uppercase;
  background: linear-gradient(105deg,
    var(--gold-deep) 0%, var(--gold) 30%, var(--gold-light) 50%,
    var(--gold) 70%, var(--gold-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

/* gradient-clipped text disappears when backgrounds are stripped */
@media (forced-colors: active) {
  .banner h1 {
    background: none;
    color: CanvasText;
    animation: none;
  }
}

.banner .rule {
  width: min(420px, 70vw);
  height: 1px;
  margin: 1.1rem auto 0.7rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.banner .lede {
  max-width: 46ch;
  margin: 1.1rem auto 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--gold-text);
}

/* ---------- CTA button ---------- */
.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  margin-right: -0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  color: var(--gold-light);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* slightly compacted so both buttons fit side by side in the text column */
.cta-row .cta {
  margin-top: 0;
  padding: 0.85rem 1.5rem;
  letter-spacing: 0.18em;
  margin-right: -0.18em;
}

/* inert stand-in for the future booking link */
.cta-soon {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  color: color-mix(in srgb, var(--gold) 70%, transparent);
  cursor: default;
}

/* ---------- Ring stage ---------- */
.stage {
  flex: 1;
  width: 100%;
  display: grid;
  place-items: center;
  /* keep the rings clear of the language switcher */
  padding-top: 4.5rem;
  animation: fade-in 2s ease-out both;
}

.rings {
  position: relative;
  width: min(60vmin, 560px);
  height: min(60vmin, 560px);
  display: grid;
  place-items: center;
}

.rings svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ring {
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.25));
}

.spin-cw    { animation: spin 36s linear infinite; }
.spin-ccw   { animation: spin 48s linear infinite reverse; }
.spin-cw-2  { animation: spin 60s linear infinite; }
.spin-ccw-2 { animation: spin 90s linear infinite reverse; }
.spin-cw-3  { animation: spin 24s linear infinite; }

/* ---------- Logo ---------- */
.logo {
  position: relative;
  width: 46%;
  height: 46%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: breathe 7s ease-in-out infinite;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* soft golden aura behind the logo */
.logo::before {
  content: '';
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 65%);
  z-index: -1;
}

/* ---------- Animations ---------- */
@keyframes spin      { to { transform: rotate(360deg); } }
@keyframes shimmer   { to { background-position: 200% center; } }
@keyframes breathe   {
  0%, 100% { transform: scale(1);     filter: drop-shadow(0 0 10px rgba(212,175,55,.15)); }
  50%      { transform: scale(1.025); filter: drop-shadow(0 0 22px rgba(212,175,55,.3)); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in   { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* ---------- Scroll indicator ---------- */
.scroll-cue {
  display: grid;
  place-items: center;
  margin-top: 0.6rem;
  padding: 0.4rem 1rem 1.2rem;
  animation: fade-in 3s ease-out both;
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0);   opacity: 0.45; }
  50%      { transform: translateY(7px); opacity: 0.9; }
}

/* ---------- Section titles ---------- */
.section-title {
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
}

.section-lede {
  max-width: 72ch;  /* wide enough that the lede stays on one line */
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.4rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--gold-text);
}

/* ---------- Below the fold ---------- */
.content {
  max-width: 62ch;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}

.content p {
  margin-top: 1.4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--gold-text);
}

/* ---------- Feature trio ---------- */
.features-wrap { padding: 0 0 8rem; }

.features {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 1.5rem 0;
}

.feature {
  width: min(80vw, 340px);
  text-align: center;
}

@media (min-width: 760px) {
  .features { flex-direction: row; align-items: flex-start; }
  .feature  { width: clamp(200px, 26vw, 300px); }
}

.feature .thumb {
  aspect-ratio: 2 / 1;   /* matches the artwork */
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  border-radius: 8px;
  background: radial-gradient(ellipse at 50% 40%,
    color-mix(in srgb, var(--gold) 8%, transparent), transparent 75%);
}

.feature .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature .name {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature .desc {
  margin-top: 0.35rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--gold) 75%, transparent);
}

.feature .use {
  margin-top: 0.55rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--gold) 70%, transparent);
}

/* ---------- Process (How we work) ---------- */
.process {
  padding: 0 1.5rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps {
  list-style: none;
  padding: 0;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.step {
  position: relative;
  width: min(80vw, 340px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

@media (min-width: 760px) {
  .steps { flex-direction: row; align-items: flex-start; }
  .step  { width: clamp(200px, 26vw, 300px); }

  /* hairline connecting consecutive steps across the flex gap */
  .step + .step::before {
    content: '';
    position: absolute;
    top: 1.3rem;
    right: 100%;
    width: 2.4rem;
    height: 1px;
    background: linear-gradient(90deg,
      transparent, color-mix(in srgb, var(--gold) 45%, transparent));
  }
}

.step-num {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--gold);
  background: radial-gradient(circle at 50% 35%,
    color-mix(in srgb, var(--gold) 12%, transparent), transparent 75%);
}

.step-name {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-time {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--gold) 70%, transparent);
}

.step-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--gold) 75%, transparent);
}

.step-out {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--gold-text);
}

.step-price {
  margin-top: 0.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
}

.process-note {
  margin-top: 2.6rem;
  max-width: 62ch;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--gold-text);
}

/* ---------- Contact ---------- */
.contact {
  max-width: 62ch;
  margin: 0 auto;
  padding: 0 1.5rem 7rem;
  text-align: center;
}

.contact p {
  margin-top: 1.4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2.3vw, 1.35rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--gold-text);
}

.contact .email-line {
  margin-top: 1.6rem;
  font-size: 1.1rem;
}

.contact .email-line a,
.site-footer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--gold) 45%, transparent);
}

.contact .email-line a:hover,
.site-footer a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

/* ---------- Devs ---------- */
.devs-wrap { padding: 0 0 8rem; }

.devs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 5rem;
  padding: 2.4rem 1.5rem 0;
}

.dev {
  width: min(85vw, 340px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* portrait placeholder until the photos arrive */
.dev .portrait {
  width: clamp(130px, 16vw, 170px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  background: radial-gradient(circle at 50% 35%,
    color-mix(in srgb, var(--gold) 10%, transparent), transparent 75%);
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--gold) 70%, transparent);
}

.dev .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dev .dev-name {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.dev .about {
  margin-top: 0.6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--gold) 75%, transparent);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.4rem 1.5rem 3rem;
  border-top: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: color-mix(in srgb, var(--gold) 75%, transparent);
}

.site-footer .footer-links {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.1rem;
}

/* shared style for "coming soon" placeholders */
.soon {
  font-style: italic;
  color: color-mix(in srgb, var(--gold) 70%, transparent);
}

.site-footer .cookie-note {
  margin-top: 0.7rem;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.04em;
}
