/* ── Chef's Table at HoI ── */

:root {
  --ink:   #0b0d10;
  --bone:  #e9e3d8;
  --brass: rgba(197, 173, 120, .65);
  --line:  rgba(233, 227, 216, .10);
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
           "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--brass); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

/* ── Typography ── */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .6px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brass);
  margin-bottom: 12px;
}

/* ── Layout ── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

/* ── Fade-in on scroll ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(197,173,120,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-image {
  max-width: min(480px, 80vw);
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-bottom: 36px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 3px;
  color: var(--bone);
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 28px);
  color: var(--bone);
  font-weight: 400;
  opacity: .7;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--brass);
  font-weight: 400;
  font-style: italic;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--brass);
  border: none;
  margin-bottom: 32px;
}

.hero-scroll {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brass);
  opacity: .6;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .4; }
  50%      { opacity: .8; }
}

/* ═══════════════════════════
   ABOUT
   ═══════════════════════════ */

.about .content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 28px;
  color: var(--bone);
}

.about p {
  font-size: 17px;
  color: rgba(233, 227, 216, .75);
  margin-bottom: 18px;
}

.about .highlight {
  color: var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  margin-top: 28px;
}

/* ═══════════════════════════
   GALLERY
   ═══════════════════════════ */

.gallery h2 {
  font-size: clamp(26px, 4vw, 40px);
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  background: rgba(233, 227, 216, .04);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color .3s;
}

.gallery-item:hover {
  border-color: var(--brass);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) saturate(1.25) brightness(.85);
  transition: filter .4s;
}

.gallery-item:hover img {
  filter: contrast(1.1) saturate(1.15) brightness(.95);
}

/* Placeholder state — shown when no image is loaded */
.gallery-item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item--placeholder::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid rgba(233, 227, 216, .12);
  border-radius: 50%;
}

/* ═══════════════════════════
   CONTACT
   ═══════════════════════════ */

.contact {
  border-bottom: none;
}

.contact .content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 28px;
}

.contact p {
  font-size: 17px;
  color: rgba(233, 227, 216, .75);
  margin-bottom: 16px;
}

.contact .email-link {
  display: inline-block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--brass);
  letter-spacing: .4px;
  margin: 20px 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s;
}

.contact .email-link:hover {
  border-color: var(--brass);
}

.contact .hoi-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brass);
  opacity: .7;
  transition: opacity .3s;
}

.contact .hoi-link:hover { opacity: 1; }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */

footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 12px;
  color: rgba(233, 227, 216, .3);
  letter-spacing: 1px;
}

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

@media (max-width: 600px) {
  section { padding: 72px 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

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