:root {
  --bg: #081411;
  --bg-soft: #0d1d19;
  --panel: rgba(14, 32, 28, 0.86);
  --text: #f4efe6;
  --muted: #b9b0a0;
  --accent: #d6a75c;
  --border: rgba(214, 167, 92, 0.24);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --radius: 28px;
  --transition: 320ms cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 167, 92, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(57, 103, 79, 0.22), transparent 26%),
    linear-gradient(180deg, #06100e 0%, #081411 45%, #091714 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -120px;
  left: -90px;
  background: #2c5c46;
}

body::after {
  right: -110px;
  bottom: -120px;
  background: #c4914a;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 14, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 78px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: -0.35rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-2px);
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn {
  background: linear-gradient(135deg, #d6a75c, #be8640);
  color: #111;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(214, 167, 92, 0.25);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn:hover,
.btn-secondary:hover,
.btn:focus-visible,
.btn-secondary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.hero {
  padding: 1.4rem 0 3rem;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
  min-height: calc(100vh - 110px);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(214, 167, 92, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(10, 22, 18, 0.94), rgba(7, 16, 14, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 1rem 0.5rem 1rem 0.25rem;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 5.6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 9ch;
  margin: 0.35rem 0 1rem;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.94;
}

.hero-copy p,
.section-copy {
  color: var(--muted);
  line-height: 1.8;
  max-width: 62ch;
}

.hero-copy p {
  margin: 0;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.04rem;
  margin-bottom: 0;
}

.hero-kicker {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.meta-card,
.glass-card,
.menu-card,
.contact-card,
.map-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 1.15rem 1rem;
}

.meta-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 1.05rem;
}

.hero-showcase {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(214, 167, 92, 0.15);
  background: rgba(10, 21, 18, 0.82);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.hero-showcase-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 12, 0.08), rgba(6, 14, 12, 0.42)),
    linear-gradient(90deg, rgba(6, 14, 12, 0.08), rgba(6, 14, 12, 0.3));
}

.hero-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(214, 167, 92, 0.24);
  background: rgba(7, 16, 14, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1), opacity 700ms ease;
}

.hero-panel strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.hero-panel small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-panel-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-top {
  top: 1.5rem;
  left: 1.5rem;
}

.hero-panel-bottom {
  right: 1.5rem;
  bottom: 1.5rem;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 3rem 2.5rem auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 167, 92, 0.18), transparent 70%);
  pointer-events: none;
}

section {
  position: relative;
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 34px;
  min-height: 540px;
  border: 1px solid var(--border);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.story-card {
  padding: 2.1rem;
}

.story-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.story-points div {
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 18px 18px 0;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-card {
  padding: 1.65rem;
}

.menu-card h3 {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), border-color var(--transition);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  transform: translateX(6px);
  border-color: var(--border);
}

.menu-item strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 1.05rem;
}

.menu-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  align-self: start;
  white-space: nowrap;
  color: var(--accent);
  font-weight: 800;
}

.reservation-strip {
  padding: 0;
}

.reservation-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: #0a1512;
  box-shadow: var(--shadow);
}

.reservation-media {
  min-height: 420px;
  background:
    linear-gradient(rgba(8, 20, 17, 0.12), rgba(8, 20, 17, 0.48)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.reservation-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card,
.map-card {
  padding: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.7rem;
}

.contact-list div {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-value {
  color: var(--text);
  font-size: 1rem;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-actions {
  margin-top: 1.2rem;
}

.footer {
  padding: 2.5rem 0 4rem;
  color: var(--muted);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 54px;
  min-width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1fd15b, #18a548);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
  transition: transform var(--transition), box-shadow var(--transition);
  font-weight: 700;
}

.whatsapp-fab span {
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.whatsapp-fab small {
  display: none;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-shell:hover .hero-showcase-image img {
  transform: scale(1.06);
}

.hero-shell:hover .hero-panel-top {
  transform: translate(8px, 8px);
}

.hero-shell:hover .hero-panel-bottom {
  transform: translate(-8px, -8px);
}

.story-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding: 1.35rem;
  }

  .hero-copy {
    padding: 0.35rem 0;
  }

  .hero-showcase {
    min-height: 560px;
  }
}

@media (max-width: 980px) {
  .story-grid,
  .contact-grid,
  .reservation-card {
    grid-template-columns: 1fr;
  }

  .hero-meta,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reservation-media {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
    max-width: 9.5ch;
  }

  .hero-shell {
    border-radius: 28px;
    padding: 1rem;
  }

  section {
    padding: 4rem 0;
  }

  .section-head,
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-card,
  .reservation-copy,
  .contact-card,
  .map-card,
  .menu-card {
    padding: 1.35rem;
  }

  .hero-showcase {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero-panel {
    position: static;
    max-width: none;
    margin: 0.85rem;
  }

  .whatsapp-fab {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}
