:root {
  /* Earth tone palette */
  --bg: #0c0907;
  --bg-muted: #15100d;
  --surface: #201712;
  --surface-soft: #241a14;
  --accent: #d2a679;
  --accent-soft: rgba(210, 166, 121, 0.16);
  --accent-strong: #f2c385;
  --border-subtle: rgba(209, 213, 219, 0.22);
  --text-main: #f9f5f1;
  --text-muted: #c4b9ac;
  --text-soft: #a19282;

  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1c130f 0, #0b0705 40%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Generic */

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

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

p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.97rem;
  color: var(--text-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: radial-gradient(circle at top, #18100c, #090605 70%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-header h2 {
  font-size: 1.9rem;
}

.section-subtitle {
  max-width: 380px;
  font-size: 0.94rem;
}

/* Eyebrow label */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* Navbar */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(10, 7, 5, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-soft);
}

.brand-main {
  font-size: 1.05rem;
  font-weight: 600;
}

.nav {
  display: flex;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.9rem;
  color: var(--text-soft);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent-strong);
  transition: width 0.18s ease;
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

/* Hamburger */

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 999px;
  padding: 6px 7px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  margin: 3px 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero */

.hero {
  padding-top: 3.2rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0.6rem 0 0.9rem;
}

.hero-text {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1.4rem 0 1.6rem;
}

.hero-meta {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.24);
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top, #3b2314, #120a06);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  left: 16px;
  bottom: -12px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.34);
  box-shadow: var(--shadow-subtle);
}

.hero-tag p {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f2c385, #d29b65);
  color: #3a2413;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 166, 121, 0.5);
  font-size: 0.9rem;
  color: var(--accent-strong);
  background: rgba(15, 9, 6, 0.4);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-ghost:hover {
  background: rgba(210, 166, 121, 0.08);
  border-color: var(--accent-strong);
}

.btn-full {
  width: 100%;
}

/* Gallery Postcard Style */

.postcard-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.postcard-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: calc(50% - 0.75rem);
}

.postcard-divider {
  width: 1px;
  background-color: var(--border-subtle);
}

.gallery-item {
  position: relative;
  padding: 0;
  border: none;
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-caption {
  padding: 0.8rem 1rem;
}

.gallery-item-caption h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.gallery-item-caption p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* Menu */

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

.menu-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.menu-category-description {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 90%;
  margin-bottom: 0.8rem;
}

.menu-title-spaced {
  margin-top: 1.8rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(209, 213, 219, 0.25);
  background: radial-gradient(circle at top, #20130d, #0b0705 70%);
  box-shadow: var(--shadow-subtle);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.5rem 0;
}

.menu-item + .menu-item {
  border-top: 1px dashed rgba(148, 163, 184, 0.25);
}

.menu-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.menu-item p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.menu-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-strong);
  white-space: nowrap;
}

.menu-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Contact */

.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin: 0.4rem 0 0.9rem;
}

.contact-block {
  margin-top: 1.2rem;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-block a {
  color: var(--accent-strong);
  font-size: 0.94rem;
}

.contact-inline {
  display: flex;
  gap: 2rem;
}

.contact-form-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(209, 213, 219, 0.25);
  background: radial-gradient(circle at top, #24160f, #0a0503 70%);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.6rem;
}

.contact-form-card h3 {
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.field input,
.field textarea {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.55rem 0.7rem;
  background: rgba(8, 5, 4, 0.9);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(242, 195, 133, 0.3);
}

.field textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.8);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  background: #050302;
  border-radius: 20px;
  padding: 0.9rem;
  max-width: 960px;
  width: calc(100% - 3rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(209, 213, 219, 0.4);
}

.modal-dialog img {
  border-radius: 14px;
  max-height: 80vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 0.2rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 1.7rem;
  cursor: pointer;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.8rem 0 2.2rem;
  background: #060304;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer-text {
  max-width: 360px;
  font-size: 0.85rem;
}

.footer-meta {
  text-align: right;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .menu-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.6rem 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2.4rem;
  }
}

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

  .nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(7, 5, 4, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .nav.is-open {
    max-height: 220px;
  }

  .nav ul {
    flex-direction: column;
    padding: 0.6rem 1.5rem 1rem;
  }

  .nav li {
    padding: 0.25rem 0;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .contact-inline {
    flex-direction: column;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}
