/* Myzeko — Warm contemporary hospitality */

:root {
  --ink: #1c1917;
  --paper: #ebe8e3;
  --teal: #0f5f5a;
  --teal-light: #147a73;
  --brass: #9a7b4f;
  --brass-light: #b8956a;
  --stone: #d4d0c9;
  --stone-dark: #a8a29e;
  --white: #fafaf9;
  --radius: 0.5rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max-width: 72rem;
  --header-h: 4.5rem;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Mesh gradient backgrounds */
.mesh-bg {
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(15, 95, 90, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(154, 123, 79, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(28, 25, 23, 0.03) 0%, transparent 50%);
}

.mesh-bg-dark {
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 30%, rgba(15, 95, 90, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(154, 123, 79, 0.12) 0%, transparent 55%);
  color: var(--paper);
}

img {
  display: none;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-light);
}

a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }

p + p { margin-top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(235, 232, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink);
}

.site-nav ul {
  display: flex;
  gap: 0.25rem 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--stone);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--brass);
  margin-bottom: 1rem;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  max-width: 42ch;
  color: var(--ink);
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-light);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stone-dark);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-brass {
  background: var(--brass);
  color: var(--white);
}

.btn-brass:hover {
  background: var(--brass-light);
  color: var(--white);
}

/* Sections */
section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

.section-header p {
  margin-top: 1rem;
  opacity: 0.8;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.35);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9375rem;
  opacity: 0.85;
}

.card-brass {
  border-left-color: var(--brass);
}

/* Feature band */
.feature-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.feature-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .feature-band .container {
    grid-template-columns: 1fr;
  }
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone);
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "—";
  color: var(--brass);
  margin-right: 0.75rem;
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 2rem;
}

.stat {
  min-width: 8rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  opacity: 0.7;
}

/* Page header (inner pages) */
.page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--stone);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header .hero-lead {
  max-width: 50ch;
}

/* Content prose */
.prose {
  max-width: 42rem;
}

.prose-wide {
  max-width: 52rem;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose ul, .prose ol {
  margin: 1rem 0 1rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Pricing / info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.info-table th,
.info-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--stone);
}

.info-table th {
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass);
}

/* Forms */
.form-panel {
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--stone);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* FAQ accordion */
.faq-list {
  list-style: none;
  max-width: 48rem;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  opacity: 0.85;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-band h2 {
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 38ch;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.site-footer a {
  color: var(--paper);
  opacity: 0.85;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--brass-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  color: var(--paper);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.7;
  max-width: 24rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(235, 232, 227, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  opacity: 0.65;
}

.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-compliance span {
  white-space: nowrap;
}

/* Age gate modal */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(28, 25, 23, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate-overlay[hidden] {
  display: none;
}

.age-gate-panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

.age-gate-panel h2 {
  margin-bottom: 1rem;
}

.age-gate-panel p {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate-note {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 1.25rem;
}

/* 404 page */
.error-page {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--teal);
  line-height: 1;
  opacity: 0.3;
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
