:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.12);
  --text: #f6f2e8;
  --muted: rgba(246,242,232,0.75);
  --gold: #c8a96b;
  --gold-soft: rgba(200,169,107,0.18);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200,169,107,0.12), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 20%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 6rem 0; }
.eyebrow {
  display: inline-block;
  padding: .45rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.03);
}
.eyebrow.dark { background: rgba(0,0,0,0.06); }
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.5rem, 4vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 3vw, 3.3rem); max-width: 16ch; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--white); }

.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7,7,7,0.82);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 86px;
}
.brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.brand-logo {
  width: 56px; height: 56px; object-fit: cover; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); background: #fff;
}
.brand-name { font-weight: 700; letter-spacing: .04em; }
.brand-subtitle { color: var(--muted); font-size: .92rem; }
.menu { display: flex; gap: 1.4rem; color: var(--muted); }
.menu a:hover { color: var(--white); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.35rem; border-radius: 16px; font-weight: 700; border: 1px solid transparent;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold { background: linear-gradient(135deg, #e3cb9b, var(--gold)); color: #111; }
.button-dark { background: rgba(255,255,255,0.03); border-color: var(--line); color: var(--text); }
.button.full { width: 100%; }

.hero { padding: 4.5rem 0 3rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
}
.hero-text { font-size: 1.14rem; max-width: 58ch; }
.signature-quote {
  color: var(--gold); font-size: 1.06rem; font-style: italic; max-width: 54ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-tags { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-tags span, .pillars span {
  padding: .7rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line); border-radius: 32px; overflow: hidden; box-shadow: var(--shadow);
}
.portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-card-caption {
  display: flex; flex-direction: column; gap: .25rem; padding: 1.1rem 1.2rem 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.22));
}
.hero-card-caption span { color: var(--muted); }

.dark-panel, .accent-panel {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}
.accent-panel {
  background:
    radial-gradient(circle at left top, rgba(200,169,107,0.12), transparent 30%),
    rgba(255,255,255,0.03);
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; align-items: center; }
.about-logo-wrap {
  display: flex; justify-content: center; align-items: center;
  padding: 2rem; border-radius: 30px; background: #fff; min-height: 420px;
}
.about-logo { width: min(100%, 360px); object-fit: contain; }

.cards { display: grid; gap: 1.4rem; margin-top: 2rem; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 28px;
  padding: 1.7rem; box-shadow: var(--shadow);
}
.card.compact { padding: 1.5rem; }
.card-gold { background: linear-gradient(180deg, rgba(200,169,107,0.12), rgba(255,255,255,0.03)); }
.section-intro { max-width: 70ch; }
.pillars { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.white-section {
  background: linear-gradient(180deg, #f8f4ec, #ffffff);
  color: #111;
}
.white-section p { color: rgba(17,17,17,0.72); }
.white-section h2, .white-section h3, .white-section strong { color: #111; }
.businesses { align-items: start; }
.business-list {
  display: grid; gap: 1rem;
}
.business-list div {
  padding: 1rem 1.1rem; border-radius: 20px; background: #111; color: #f8f4ec;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.quote-card p { color: var(--text); font-style: italic; font-size: 1.04rem; }

.reservation-grid { align-items: start; }
.contact-box {
  display: grid; gap: 1rem; margin: 1.5rem 0 2rem;
  padding: 1.2rem; border-radius: 24px; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
}
.contact-panel {
  background: #fff; color: #111; border-radius: 30px; padding: 1.2rem; box-shadow: var(--shadow);
}
.contact-form {
  display: grid; gap: .9rem; margin-bottom: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .95rem 1rem; border: 1px solid rgba(17,17,17,0.12);
  border-radius: 16px; font: inherit; background: #fff; color: #111;
}
.contact-form textarea { min-height: 130px; resize: vertical; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
}
.footer-content {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
}
.footer-quote { color: var(--muted); max-width: 38ch; text-align: right; }

@media (max-width: 1024px) {
  .menu { display: none; }
  .hero-grid, .split, .cards.four, .cards.three, .cards.two { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .footer-quote { text-align: left; }
}

@media (max-width: 640px) {
  .nav { min-height: auto; padding: .8rem 0; flex-wrap: wrap; }
  .brand { width: 100%; }
  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .section { padding: 4.5rem 0; }
  .contact-panel { padding: .9rem; }
}
