﻿:root {
  --bg: #0d0d0f;
  --panel: #111118;
  --text: #f7f7fb;
  --muted: #b8b8c7;
  --accent: #ea9f92;
  --card: #161621;
  --border: #242436;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html, body {
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100svh;
}

.is-locked {
  overflow: hidden;
}

.site-shell {
  min-height: 100svh;
  transition: filter 200ms ease, opacity 200ms ease;
}

.is-locked .site-shell {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.intro-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(234, 159, 146, 0.16), rgba(13, 13, 15, 0.92));
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.intro-screen.intro--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__card {
  background: rgba(17, 17, 24, 0.9);
  border: 1px solid rgba(234, 159, 146, 0.25);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.intro__title {
  font-family: 'Playfair Display', serif;
  margin: 6px 0 10px;
  font-size: clamp(34px, 6vw, 52px);
}

.intro__subhead {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.intro__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  line-height: 1.1;
}

p {
  margin: 0 0 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  background: rgba(13, 13, 15, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.96rem;
  color: var(--text);
  z-index: 30;
  justify-content: center;
  flex: 1 1 auto;
}

.nav.nav--open {
  display: flex !important;
}

.lang-switch {
  display: flex;
  gap: 8px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(234, 159, 146, 0.35);
}

.btn-solid {
  background: var(--accent);
  color: #1a1a1f;
  border-color: var(--accent);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 200px 0 140px;
  min-height: 100svh;
  overflow: hidden;
  background-attachment: scroll;
  /* Use relative path so it works in subfolders on Hostinger */
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 159, 146, 0.16), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 36%),
    url('pictures/j01.jpg') center/cover no-repeat,
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13, 13, 15, 0.88) 0%, rgba(13, 13, 15, 0.3) 60%, rgba(13, 13, 15, 0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__headline {
  display: grid;
  gap: 4px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 56px);
}

.hero__headline .accent {
  color: var(--accent);
}

.hero__headline .line:first-child {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.hero__subhead {
  max-width: 620px;
  color: var(--text);
  font-size: 1.08rem;
  margin: 18px 0 28px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transition: opacity 180ms ease;
}

.is-locked .hero__actions {
  opacity: 0;
  pointer-events: none;
}

.has-entered .hero__actions {
  display: none;
}

.section {
  padding: 90px 0;
}

#collabs {
  padding-top: 30px;
}

.section--conditional {
  display: none;
}

.section--conditional.is-visible {
  display: block;
  padding-top: 40px;
}

.stack-tight p {
  margin-bottom: 4px;
}

.stack-tight p:last-child {
  margin-bottom: 8px;
}
.section--light {
  background: var(--panel);
}

.section__header {
  margin-bottom: 28px;
}

.section__header--split {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.section__header-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section__header-controls .btn.is-active {
  background: var(--accent);
  color: #1a1a1f;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 6px;
}

.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
}

.muted {
  color: var(--text);
}

.small {
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

#keyholding .two-col {
  align-items: start;
}

#keyholding .stack-tight {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#keyholding .stack-tight p {
  margin-bottom: 0;
}

#keyholding .cta--tight {
  padding: 10px 12px;
  margin-left: 0;
  margin-right: auto;
  margin-top: 18px;
}

@media (max-width: 900px) {
  #keyholding .cta--tight {
    margin-left: auto;
    margin-right: auto;
  }
}

#keyholding .card--photo {
  align-self: start;
  margin-top: -112px;
  margin-left: 12px;
}

#keyholding .photo-placeholder {
  margin-top: 0;
}

#keyholding figure {
  margin: 0;
}

@media (max-width: 900px) {
  #keyholding .card--photo {
    margin-top: 0;
  }
}

#shibari .two-col > div {
  text-align: center;
}

#shibari .two-col {
  align-items: start;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  align-self: start;
  justify-self: end;
  max-width: 360px;
}

.mini-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f18;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.card--photo {
  padding: 0;
  overflow: hidden;
}

.photo-placeholder {
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.12), rgba(234, 159, 146, 0.32));
  color: #1a1a1f;
  font-weight: 700;
  display: grid;
  place-items: center;
  height: 260px;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.details-layout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.profile-column {
  flex: 0 0 280px;
}

.profile-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.profile-toggle {
  border: 1px solid var(--border);
  background: #0f0f18;
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  width: 100%;
}

.profile-toggle .photo-placeholder {
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
}

.profile-toggle img {
  object-position: center 20%;
}

.profile-toggle span {
  display: block;
  margin-top: 10px;
}

.profile-toggle.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 159, 146, 0.25), 0 18px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.profile-toggle.is-active .photo-placeholder {
  box-shadow: 0 0 0 3px rgba(234, 159, 146, 0.35);
}

.card__body {
  padding: 14px 16px 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card--stacked {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.booking-card {
  cursor: pointer;
}

.booking-card:hover {
  border-color: rgba(234, 159, 146, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.card__img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f18;
  height: 200px;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.tile {
  background: #0f0f18;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.tile--media {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 12px;
}

.tile__img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 110px;
}

.tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.measurements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 0;
  flex: 1;
}

.measurements .measure {
  display: none;
}

.measurements .measure.is-visible {
  display: grid;
}

@media (max-width: 900px) {
  .profile-switch {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
  .details-layout {
    flex-direction: column;
  }
  .profile-column {
    width: 100%;
    flex: none;
  }
}

.measure {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(234, 159, 146, 0.08), rgba(234, 159, 146, 0.02));
  border: 1px solid rgba(234, 159, 146, 0.18);
  border-radius: 14px;
  min-height: 96px;
}

@media (max-width: 600px) {
  .measure {
    min-height: 110px;
  }
}

.measure--wide {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .measure--wide {
    grid-column: span 1;
  }
}
@media (max-width: 600px) {
  .measurements {
    grid-template-columns: 1fr;
  }
}
.measure__label {
  color: #a2b3ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0;
}

.measure__value {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  word-break: keep-all;
  white-space: normal;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.14), rgba(234, 159, 146, 0.05));
  border: 1px solid rgba(234, 159, 146, 0.2);
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.tag--person {
  display: none;
}

.tag--person.is-visible {
  display: inline-flex;
}

#prints .mini-gallery {
  justify-self: end;
}

#prints .two-col > div {
  text-align: left;
}

#prints .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

#prints h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 10px;
}

#prints .muted {
  max-width: 520px;
  line-height: 1.55;
}

#prints .two-col {
  align-items: start;
}

#prints .mini-gallery {
  align-self: start;
  justify-self: start;
}

#custom .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

#custom .form-grid .form-field:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  #custom .form-grid {
    grid-template-columns: 1fr;
  }
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  border: 1px solid rgba(234, 159, 146, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.10), rgba(234, 159, 146, 0.03));
  padding: 12px 14px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 8px 0 0;
  color: var(--text);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  align-items: start;
  min-width: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: #0f0f18;
  border: 1px solid rgba(234, 159, 146, 0.16);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 159, 146, 0.25);
  background: #111118;
}

.form-field span,
.form-field legend {
  color: #f0e0d8;
  font-weight: 700;
  border-bottom: 1px solid rgba(234, 159, 146, 0.25);
  padding-bottom: 4px;
  display: inline-block;
}

.inline-check span {
  border-bottom: none;
  padding-bottom: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8f8fa3;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  align-items: start;
}

.inline-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.inline-check input {
  width: auto;
  margin-top: 4px;
}

fieldset.form-field {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  align-items: start;
  min-width: 0;
}

fieldset.form-field legend {
  padding: 0 6px;
  color: var(--text);
  font-weight: 700;
}

.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.radio-row label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  white-space: normal;
  max-width: 100%;
  line-height: 1.4;
}

.radio-row input {
  flex-shrink: 0;
}

.form-note {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
  .contact-form {
    margin: 0 auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-note {
    flex-direction: column;
    align-items: flex-start;
  }
  fieldset.form-field {
    width: 100%;
  }
  .radio-row {
    gap: 8px;
    width: 100%;
  }
  .radio-row label {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.4;
    align-items: center;
  }
}

/* Safari/iOS safety: force single column and stacking to prevent overlap */
@supports (-webkit-touch-callout: none) {
  .form-grid,
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .form-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .radio-row {
    gap: 8px;
    width: 100%;
  }
  .radio-row label {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(234, 159, 146, 0.2);
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.12), rgba(234, 159, 146, 0.04));
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.link-card[href*="onlyfans.com"],
.link-card[href*="fansly.com"] {
  border-color: rgba(234, 159, 146, 0.75);
  background: linear-gradient(135deg, rgba(234, 159, 146, 0.22), rgba(234, 159, 146, 0.06));
  box-shadow: 0 20px 40px rgba(234, 159, 146, 0.25);
}

.link-card[href*="onlyfans.com"] h3,
.link-card[href*="fansly.com"] h3 {
  color: #ffd7b8;
}

.link-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f172a;
  display: grid;
  place-items: center;
}

.link-card__icon img {
  width: 26px;
  height: 26px;
  display: block;
}

.link-card__icon svg {
  width: 26px;
  height: 26px;
  fill: #f8fafc;
  display: block;
}
.link-card__body h3 {
  margin: 0;
}

.throne-bubble {
  display: flex;
  justify-content: flex-start;
  margin-top: 14px;
}

.throne-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 18px 18px 22px;
  padding-right: 70px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(234,159,146,0.12), rgba(17,17,24,0.8));
  box-shadow: var(--shadow);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
}

.throne-card p {
  margin: 0 0 8px;
}

.throne-card .throne-highlight {
  background: rgba(234, 159, 146, 0.16);
  border: 1px solid rgba(234, 159, 146, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
}

.throne-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  color: #f7f7fb;
  opacity: 0.35;
  transform: rotate(14deg);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  pointer-events: none;
}

.throne-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: var(--accent);
  border: 1px solid rgba(234, 159, 146, 0.4);
  border-radius: 12px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
}


.collab-highlight {
  color: #ffd7b8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f18;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gallery-shell {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0f0f18;
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.auto-gallery {
  width: max-content;
  animation: auto-scroll 48s linear infinite;
}

.gallery-track img {
  height: 240px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@keyframes auto-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tile__label {
  color: #a2b3ff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.tile__value {
  font-weight: 700;
  margin: 0 0 6px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(234, 159, 146, 0.24), rgba(234, 159, 146, 0.08));
  border: 1px solid rgba(234, 159, 146, 0.4);
  border-radius: 18px;
  padding: 20px;
}

.cta--inline {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: transparent;
  border: none;
  padding: 0;
}
.cta--tight {
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}
.cta--tight .btn {
  white-space: nowrap;
  padding: 8px 10px;
}
@media (max-width: 900px) {
  .cta--tight {
    flex-wrap: wrap;
  }
  .cta--tight .btn {
    width: 100%;
    justify-content: center;
  }
}

.etiquette .bullet-list {
  color: var(--text);
  padding-left: 18px;
  margin: 12px 0 0;
}

.etiquette li {
  margin-bottom: 8px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 26px;
  background: #0b0b0f;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  background: rgba(17, 17, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.cookie-banner__text {
  max-width: 680px;
  padding-right: 96px;
}

.cookie-banner__text .link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-banner__text .link:hover {
  color: #f6f2ff;
}

.cookie-banner__options {
  width: 100%;
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.cookie-option label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-lang-switch {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-lang-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-lang-toggle.is-active {
  background: #f4f4f8;
  color: #0b0b0f;
}

.cookie-remember {
  width: 100%;
}

@media (max-width: 900px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__text {
    padding-right: 0;
  }
  .cookie-lang-switch {
    position: static;
    align-self: flex-end;
    margin-left: auto;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 10px;
  color: var(--text);
}

.footer__links a:hover {
  color: var(--accent);
}

/* Small pill buttons for fallback mail links */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(234, 159, 146, 0.08);
}

.pill-alt {
  background: rgba(234, 159, 146, 0.14);
  color: var(--accent);
  border-color: rgba(234, 159, 146, 0.4);
}

#mailto-options a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 10px;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.05em;
  gap: 8px;
}

.nav-toggle__icon {
  display: block;
  width: 18px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 999px;
}

.nav-toggle__text {
  display: inline-flex;
  align-items: center;
}

/* Desktop nav */
@media (min-width: 901px) {
  .nav {
    display: flex !important;
    position: static;
  }
  .nav-toggle {
    display: none !important;
  }
}

/* Mobile nav (hidden until opened) */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    right: 12px;
    top: 64px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background: rgba(17,17,24,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 12;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__inner {
    position: relative;
  }

  /* Hide the standalone Book button on mobile; rely on nav link */
  .header__actions .btn-outline[href="#contact"] {
    display: none;
  }

  .hero {
    padding-top: 160px;
    min-height: 100svh;
    background-position: center top;
  }

  .cta {
    align-items: flex-start;
  }

  .tile--media {
    grid-template-columns: 1fr;
  }

  .measure--wide {
    grid-column: span 1;
  }

  .form-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .throne-bubble {
    justify-content: center;
  }

  .throne-card {
    max-width: 100%;
  }

  .mini-gallery {
    justify-self: center;
    max-width: 300px;
  }
}
