@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Outlined');

:root {
  color: #171717;
  background: #f8f5ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ivory: #f8f5ef;
  --porcelain: #fffdf8;
  --stone: #ddd6c8;
  --charcoal: #171717;
  --ink: #26221d;
  --taupe: #8b8173;
  --gold: #b8975a;
  --gold-dark: #8a6a35;
  --teal: #2f8f83;
}

* { box-sizing: border-box; }
body { min-width: 320px; min-height: 100svh; margin: 0; background: var(--ivory); color: var(--charcoal); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(221, 214, 200, 0.75); background: rgba(255, 253, 248, 0.88); backdrop-filter: blur(16px); }
.site-header__inner { display: flex; max-width: 80rem; align-items: center; justify-content: space-between; gap: 1rem; margin: 0 auto; padding: 1rem 1.25rem; }
.brand { text-decoration: none; }
.brand img { display: block; width: auto; height: 2rem; max-width: 13.125rem; }
.brand__tagline { display: block; margin-top: 0.25rem; color: var(--taupe); font-size: 0.75rem; }
.desktop-nav { display: none; align-items: center; gap: 0.5rem; }
.desktop-nav a, .mobile-nav a { color: var(--taupe); text-decoration: none; transition: color 160ms ease, background 160ms ease, border-color 160ms ease; }
.desktop-nav a { border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 1rem; }
.desktop-nav a:hover, .mobile-nav a:hover { background: var(--ivory); color: var(--charcoal); }
.desktop-nav a.is-active, .mobile-nav a.is-active { background: var(--charcoal); color: var(--ivory); }
.desktop-nav .nav-button { background: var(--charcoal); color: var(--ivory); font-weight: 600; }
.sign-out-button { border: 1px solid var(--stone); border-radius: 999px; background: var(--porcelain); color: var(--charcoal); padding: 0.6rem 1.1rem; font-size: 1rem; transition: border-color 160ms ease; }
.sign-out-button:hover { border-color: var(--gold); }
.menu-button { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border: 1px solid rgba(221, 214, 200, 0.8); border-radius: 999px; background: rgba(255, 253, 248, 0.96); color: var(--charcoal); box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); transition: background 160ms ease, border-color 160ms ease; }
.menu-button:hover { background: var(--stone); }
.menu-icon { width: 1.25rem; height: 1.25rem; }
.menu-icon--close { display: none; }
.menu-button[aria-expanded="true"] .menu-icon--open { display: none; }
.menu-button[aria-expanded="true"] .menu-icon--close { display: block; }
.mobile-nav { display: grid; gap: 0.25rem; border-top: 1px solid rgba(221, 214, 200, 0.55); padding: 0.75rem 1.25rem 1rem; background: rgba(255, 253, 248, 0.96); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { border-radius: 0.75rem; padding: 0.85rem 1rem; font-size: 1rem; font-weight: 600; }
.mobile-sign-out-button { width: 100%; border: 1px solid var(--stone); border-radius: 0.75rem; background: var(--ivory); color: var(--charcoal); padding: 0.85rem 1rem; text-align: left; font-size: 1rem; font-weight: 600; transition: border-color 160ms ease; }
.mobile-sign-out-button:hover { border-color: var(--gold); }

.hero { display: grid; min-height: calc(100svh - 5.75rem); width: min(80rem, 100%); align-items: center; gap: 3rem; margin: 0 auto; padding: 4rem 1.25rem 3rem; }
.pill, .eyebrow { display: inline-flex; width: fit-content; border: 1px solid rgba(221, 214, 200, 0.8); border-radius: 999px; background: var(--porcelain); padding: 0.5rem 1rem; color: var(--taupe); font-size: 0.875rem; font-weight: 600; }
h1, h2, h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; color: var(--charcoal); line-height: 1.12; letter-spacing: 0; }
.hero h1 { max-width: 46rem; margin-top: 1.75rem; font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 650; }
.hero p:not(.pill) { max-width: 42rem; margin: 1.5rem 0 0; color: var(--taupe); font-size: 1.125rem; line-height: 1.75; }
.primary-action, .secondary-action { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; border-radius: 999px; padding: 0.75rem 1.5rem; text-decoration: none; font-size: 0.92rem; font-weight: 700; }
.primary-action { margin-top: 2rem; background: var(--charcoal); color: var(--ivory); box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.secondary-action { margin-top: 1.5rem; border: 1px solid rgba(221, 214, 200, 0.9); background: var(--ivory); color: var(--charcoal); }
.hero__art { margin: 0; border: 1px solid rgba(221, 214, 200, 0.85); border-radius: 1rem; background: var(--porcelain); padding: 1rem; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.hero__art img { width: 100%; border-radius: 0.75rem; object-fit: cover; }

.content-band { width: min(80rem, 100%); margin: 0 auto; padding: 0 1.25rem 3rem; }
.supported-panel { display: grid; gap: 2rem; overflow: hidden; border: 1px solid rgba(221, 214, 200, 0.85); border-radius: 1rem; background: var(--porcelain); padding: 1.5rem; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.supported-panel img { aspect-ratio: 1 / 1; width: 100%; border: 1px solid rgba(221, 214, 200, 0.75); border-radius: 0.75rem; object-fit: cover; }
.supported-panel h2 { margin-top: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.supported-panel p:not(.eyebrow) { color: var(--taupe); line-height: 1.75; }
.privacy-badges { display: grid; gap: 1rem; margin-top: 1.5rem; border: 1px solid rgba(221, 214, 200, 0.85); border-radius: 1rem; background: var(--porcelain); padding: 1.5rem; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.privacy-badges article { display: grid; grid-template-columns: 3.5rem 1fr; column-gap: 1rem; align-items: center; }
.privacy-badges span { display: grid; grid-row: span 2; width: 3.5rem; height: 3.5rem; place-items: center; border: 1px solid rgba(221, 214, 200, 0.75); border-radius: 999px; color: var(--taupe); font-size: 1.5rem; }
.privacy-badges h2 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 0.95rem; }
.privacy-badges p { margin: 0.25rem 0 0; color: var(--taupe); font-size: 0.9rem; }
.artwork-carousel { width: 100%; padding: 1rem 0 6rem; }
.artwork-carousel__header { max-width: 80rem; margin: 0 auto; padding: 0.5rem 1.25rem 2.5rem; text-align: center; }
.artwork-carousel__header h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); }
.artwork-carousel__header p { margin: 0.75rem 0 0; color: var(--taupe); }
.artwork-carousel__stage { position: relative; }
.artwork-carousel__track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2rem 0; outline: none; scrollbar-width: none; }
.artwork-carousel__track::-webkit-scrollbar { display: none; }
.carousel-spacer { flex: 0 0 calc(50% - 9rem); }
.carousel-card { flex: 0 0 18rem; width: 18rem; overflow: hidden; scroll-snap-align: center; border: 1px solid rgba(221, 214, 200, 0.35); border-radius: 1rem; background: var(--porcelain); color: var(--charcoal); opacity: 0.5; padding: 0; text-align: left; box-shadow: 0 12px 32px rgba(23, 23, 23, 0.08); transform: scale(0.88); transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.carousel-card.is-featured { border-color: rgba(221, 214, 200, 0.75); opacity: 1; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25); transform: translateY(-0.25rem) scale(1); }
.carousel-card:focus-visible { outline: 2px solid var(--charcoal); outline-offset: 4px; }
.carousel-card img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
.carousel-card span { display: block; padding: 0.85rem 1rem; font-size: 0.9rem; font-weight: 700; }
.carousel-arrow { position: absolute; top: 50%; z-index: 5; display: none; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid rgba(221, 214, 200, 0.8); border-radius: 999px; background: rgba(255, 253, 248, 0.92); color: var(--charcoal); font-size: 2rem; line-height: 1; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); transform: translateY(-50%); }
.carousel-arrow--prev { left: 1rem; }
.carousel-arrow--next { right: 1rem; }
.carousel-arrow:disabled { pointer-events: none; opacity: 0.3; }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; }
.carousel-dots button { width: 0.4rem; height: 0.4rem; border: 0; border-radius: 999px; background: var(--stone); padding: 0; transition: width 160ms ease, background 160ms ease; }
.carousel-dots button.is-active { width: 1rem; background: var(--charcoal); }
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(38, 34, 29, 0.92); }
.lightbox__panel { position: relative; z-index: 1; display: flex; width: min(48rem, 100%); max-height: calc(100svh - 2rem); flex-direction: column; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.lightbox__bar button { display: grid; width: 2.25rem; height: 2.25rem; place-items: center; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.85); font-size: 1.5rem; }
.lightbox__image-frame { position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1rem; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25); }
.lightbox__image-frame img { width: 100%; max-height: calc(100svh - 12rem); object-fit: contain; background: #0f0f0e; }
.lightbox__arrow { position: absolute; top: 50%; width: 2.5rem; height: 2.5rem; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px; background: rgba(0, 0, 0, 0.52); color: rgba(255, 255, 255, 0.86); font-size: 2rem; line-height: 1; transform: translateY(-50%); }
.lightbox__arrow--prev { left: 0.75rem; }
.lightbox__arrow--next { right: 0.75rem; }
.lightbox__arrow:disabled { display: none; }
.lightbox__panel p { margin: 0.75rem 0 0; color: rgba(255, 255, 255, 0.72); text-align: center; font-size: 0.9rem; font-weight: 700; }

.page-section { min-height: calc(100svh - 5.75rem); padding: 4rem 1.25rem; }
.document-card { max-width: 56rem; margin: 0 auto; border: 1px solid rgba(221, 214, 200, 0.85); border-radius: 1rem; background: var(--porcelain); padding: clamp(1.5rem, 5vw, 2.5rem); box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.wide .document-card { max-width: 72rem; }
.document-card h1 { margin-top: 1rem; font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 650; }
.lead { max-width: 48rem; margin: 1.25rem 0 0; color: var(--taupe); line-height: 1.75; }
.policy-document { margin-top: 2.5rem; border-top: 1px solid rgba(221, 214, 200, 0.85); padding-top: 2rem; color: var(--taupe); line-height: 1.75; }
.policy-document section + section, .faq-list section + section { margin-top: 2.25rem; }
.policy-document h2, .faq-list h2, .info-card h2 { margin-bottom: 1rem; font-size: 1.55rem; }
.policy-document p { margin: 0; }
.policy-document p + p { margin-top: 1rem; }
.policy-document a { color: var(--gold-dark); font-weight: 700; text-underline-offset: 0.18em; }
.policy-document strong { color: var(--charcoal); }
.two-column { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.info-card { border: 1px solid rgba(221, 214, 200, 0.85); border-radius: 0.75rem; background: var(--ivory); padding: 1.5rem; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.info-card p, .info-card li { color: var(--taupe); line-height: 1.75; }
.info-card p + p { margin-top: 1rem; }
.info-card ul { margin: 0; padding-left: 1.25rem; }
.info-card li + li { margin-top: 0.75rem; }
.notice { margin-top: 1.5rem; border: 1px solid rgba(47, 143, 131, 0.25); border-radius: 0.75rem; background: rgba(47, 143, 131, 0.1); padding: 1.25rem; line-height: 1.7; }
.faq-list { margin-top: 2.5rem; border-top: 1px solid rgba(221, 214, 200, 0.85); padding-top: 2rem; }
.faq-list details { border: 1px solid rgba(221, 214, 200, 0.85); border-radius: 0.75rem; background: var(--ivory); padding: 1.25rem; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); }
.faq-list details + details { margin-top: 0.75rem; }
.faq-list summary { display: flex; cursor: pointer; list-style: none; align-items: center; justify-content: space-between; gap: 1rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list b { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--stone); border-radius: 999px; color: var(--gold-dark); transition: transform 160ms ease; }
.faq-list details[open] b { transform: rotate(45deg); }
.faq-list p { color: var(--taupe); line-height: 1.75; }

.site-footer { border-top: 1px solid rgba(221, 214, 200, 0.75); background: var(--charcoal); color: var(--ivory); }
.site-footer__inner { display: grid; gap: 2.5rem; max-width: 80rem; margin: 0 auto; padding: 3rem 1.25rem 2rem; }
.site-footer h2 { color: var(--ivory); font-size: 1.65rem; }
.site-footer section:not(:first-child) h2 { color: var(--gold); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 0.875rem; text-transform: uppercase; }
.site-footer p, .site-footer a { color: var(--stone); font-size: 0.9rem; line-height: 1.7; }
.site-footer nav { display: grid; gap: 0.75rem; margin-top: 1rem; }
.site-footer a { width: fit-content; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer__bottom { display: flex; max-width: 80rem; flex-direction: column; gap: 0.75rem; margin: 0 auto; border-top: 1px solid rgba(248, 245, 239, 0.16); padding: 1.25rem; }
.site-footer__bottom p { margin: 0; color: var(--stone); font-size: 0.75rem; }
.cookie-banner { position: fixed; right: 0; bottom: 0; left: 0; z-index: 50; display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid rgba(221, 214, 200, 0.85); background: rgba(255, 253, 248, 0.96); padding: 1rem 1.25rem; box-shadow: 0 20px 60px rgba(23, 23, 23, 0.08); backdrop-filter: blur(16px); }
.cookie-banner p { max-width: 64rem; margin: 0; color: var(--taupe); font-size: 0.875rem; line-height: 1.6; }
.cookie-banner a { color: var(--gold-dark); font-weight: 700; text-underline-offset: 0.18em; }
.cookie-banner button { width: fit-content; border: 0; border-radius: 999px; background: var(--charcoal); color: var(--ivory); padding: 0.55rem 1.5rem; font-weight: 700; }

@media (min-width: 48rem) {
  .desktop-nav { display: flex; }
  .menu-button { display: none; }
  .hero { grid-template-columns: 0.86fr 1.14fr; padding-inline: 2rem; }
  .content-band { padding-inline: 2rem; }
  .supported-panel { grid-template-columns: 0.92fr 1.08fr; padding: 2rem; }
  .privacy-badges { grid-template-columns: repeat(3, 1fr); padding: 1.75rem 2rem; }
  .carousel-arrow { display: grid; }
  .two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__inner { grid-template-columns: repeat(3, 1fr); padding-inline: 2rem; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; padding-inline: 2rem; }
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; padding-inline: 2rem; }
}
