:root {
  color-scheme: light;
  --paper: #f6efe7;
  --paper-deep: #eadfd3;
  --ink: #211b18;
  --muted: #6f625a;
  --line: #d8c9bc;
  --white: #fffdf9;
  --rose: #9a5363;
  --rose-deep: #743947;
  --focus: #2368c4;
  --shadow: 0 24px 70px rgba(54, 34, 27, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 113, 125, 0.13), transparent 27rem),
    linear-gradient(135deg, #fbf7f1 0%, var(--paper) 58%, #efe3d7 100%);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
  line-height: 1.5;
}

button, a { font: inherit; }

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(100% - 32px, 960px);
  min-height: calc(100vh - 64px);
  margin: 32px auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  overflow: hidden;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(126, 101, 87, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.identity {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #d4b49e;
}

.landscape {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31, 21, 17, 0.06), rgba(31, 21, 17, 0.52)),
    url("/assets/lauren-banner.webp") center / cover no-repeat;
  transform: scale(1.015);
}

.identity-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 40px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(25, 15, 12, 0.4);
}

.avatar {
  width: 116px;
  height: 116px;
  margin-bottom: 24px;
  display: block;
  object-fit: cover;
  border: 4px solid rgba(255, 253, 249, 0.88);
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(24, 14, 10, 0.28);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 7vw, 5.4rem); line-height: 0.92; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }

.intro {
  max-width: 28ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.destinations {
  min-width: 0;
  padding: clamp(32px, 6vw, 64px);
  display: flex;
  flex-direction: column;
}

.section-heading { margin-bottom: 32px; }
.section-heading .eyebrow { color: var(--rose-deep); }

.link-list { display: grid; gap: 12px; }

.destination-link,
.adult-link {
  width: 100%;
  min-height: 72px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.destination-link:hover,
.adult-link:hover {
  transform: translateY(-2px);
  border-color: #aa9182;
  box-shadow: 0 12px 25px rgba(67, 46, 36, 0.09);
}

.destination-link:focus-visible,
.adult-link:focus-visible,
.confirm:focus-visible,
.cancel:focus-visible,
footer a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.link-mark,
.age-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-deep);
  background: #f2e4e3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.destination-link strong,
.adult-link strong,
.destination-link small,
.adult-link small {
  display: block;
}

.destination-link strong,
.adult-link strong { font-size: 0.98rem; }
.destination-link small,
.adult-link small { margin-top: 2px; color: var(--muted); font-size: 0.76rem; overflow-wrap: anywhere; }
.arrow { color: var(--muted); font-size: 1.15rem; }

.adult-area {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.adult-link {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.adult-link .age-badge { color: var(--ink); background: var(--white); }
.adult-link small, .adult-link .arrow { color: #d9cbc2; }

.notice {
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.7rem;
}

footer a { text-underline-offset: 3px; }

dialog {
  width: min(100% - 32px, 470px);
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(23, 15, 12, 0.34);
}

dialog::backdrop { background: rgba(25, 18, 15, 0.68); backdrop-filter: blur(4px); }
.dialog-inner { padding: 34px; }
.dialog-inner .eyebrow { color: var(--rose-deep); }
.dialog-inner h2 { font-size: 2.45rem; }
.dialog-inner p:not(.eyebrow) { margin: 18px 0 26px; color: var(--muted); }
.dialog-actions { display: grid; gap: 10px; }

.confirm,
.cancel {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.confirm { color: var(--white); background: var(--rose-deep); }
.cancel { color: var(--ink); background: transparent; border: 1px solid var(--line); }

.privacy-page {
  width: min(100% - 32px, 680px);
  margin: 48px auto;
  padding: clamp(28px, 6vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.privacy-page h1 { font-size: clamp(2.6rem, 8vw, 4.7rem); }
.privacy-page h2 { margin-top: 30px; font-size: 1.6rem; }
.privacy-page p { color: var(--muted); }
.back-link { display: inline-block; margin-top: 28px; color: var(--rose-deep); font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 760px) {
  .shell {
    min-height: 0;
    grid-template-columns: 1fr;
    margin: 16px auto;
    border-radius: 22px;
  }
  .identity { min-height: 340px; }
  .identity-copy { padding: 28px; }
  .avatar { width: 92px; height: 92px; margin-bottom: 18px; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.2rem); }
  .destinations { padding: 30px 22px 26px; }
  .section-heading { margin-bottom: 24px; }
  h2 { font-size: 2.35rem; }
  footer { margin-top: 30px; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
