/* ---- Tokens: a charred-iron kitchen at night, cream order tickets, brass cutlery ---- */
:root {
  --char: #2b0805;       /* charred cast-iron, base dark surface */
  --char-2: #3a0f0a;     /* ember-lifted surface, one step up */
  --char-3: #451309;     /* second step, hover/active surfaces */
  --linen: #faf6e3;      /* cream ticket paper */
  --linen-dim: #e8e0c8;  /* aged linen, muted text on cream */
  --brass: #c9a66b;      /* brass cutlery accent, used sparingly */
  --brass-dim: #8a6f45;
  --ok: #3f7a4c;

  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-script: 'Caveat', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --container-w: 1120px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--linen);
  color: var(--char);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* Paper grain — barely-there texture so cream sections aren't a flat fill */
.section, .site-footer {
  background-image: radial-gradient(rgba(43, 8, 5, 0.035) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
}
.hero, .services {
  background-image: radial-gradient(rgba(250, 246, 227, 0.045) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
}

/* ---- Type helpers ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--brass-dim);
  margin: 0 0 10px;
}
.eyebrow.center { justify-content: center; }
.cut-mark { width: 16px; height: 14px; color: var(--brass); flex-shrink: 0; }

.section-title {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 16px;
  line-height: 1.2;
}
.section-title.center { text-align: center; }

.lead { font-size: 1.15rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  transition: transform 0.18s var(--ease-out), background 0.18s var(--ease-out), color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
  cursor: pointer;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

.btn-whatsapp {
  background: var(--linen);
  color: var(--char);
  border-color: var(--linen);
}
.btn-whatsapp:hover { background: var(--brass); border-color: var(--brass); }

.btn-outline {
  background: transparent;
  color: var(--linen);
  border-color: var(--linen);
}
.btn-outline:hover { background: var(--linen); color: var(--char); }

.btn-solid {
  background: var(--char);
  color: var(--linen);
  border-color: var(--char);
  width: 100%;
  justify-content: center;
}
.btn-solid:hover { background: var(--char-2); box-shadow: 0 4px 14px rgba(43, 8, 5, 0.25); }

.btn-small { padding: 10px 18px; font-size: 0.75rem; }

.icon-wa { width: 18px; height: 18px; fill: currentColor; }
.icon-inline { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 227, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43, 8, 5, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.logo {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 2rem;
  color: var(--char);
}
.nav {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav a { position: relative; padding-bottom: 4px; transition: color 0.18s var(--ease-out); }
.nav a span { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}
.nav a:hover { color: var(--brass-dim); }
.nav a:hover::after { transform: scaleX(1); }

.site-header .btn-whatsapp {
  background: var(--char);
  color: var(--linen);
  border-color: var(--char);
}
.site-header .btn-whatsapp:hover { background: var(--brass); border-color: var(--brass); color: var(--char); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--char);
  color: var(--linen);
  overflow: hidden;
  padding: 130px 0 150px;
}
.hero-inner { position: relative; z-index: 2; text-align: left; }
.hero .eyebrow { color: var(--brass); }
.hero-title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: -0.01em;
  margin: 8px 0;
  line-height: 1;
}
.hero-sub {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brass);
  display: inline-block;
  margin: 0 0 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-icon {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 260px;
  height: 260px;
  color: var(--char-2);
  z-index: 1;
}

/* Seam badge — the business-card medallion, stamped on the hero/about seam */
.seam {
  position: relative;
  display: flex;
  justify-content: center;
  height: 0;
  z-index: 6;
}
.seam-badge {
  width: 132px;
  height: 132px;
  color: var(--char);
  margin-top: -66px;
  filter: drop-shadow(0 10px 20px rgba(43, 8, 5, 0.22));
}

/* ---- Sections ---- */
.section { padding: 104px 0; }
.about { padding-top: 128px; }

/* Reveal-on-scroll (progressive enhancement; script.js toggles .is-visible) */
.reveal > .container > *,
.reveal .service-card,
.reveal .gallery-item {
  opacity: 1;
}
.reveal:not(.is-visible) .about-photo,
.reveal:not(.is-visible) .about-text > * ,
.reveal:not(.is-visible) .service-card,
.reveal:not(.is-visible) .gallery-item,
.reveal:not(.is-visible) .contact-info > *,
.reveal:not(.is-visible) .contact-form {
  opacity: 0;
  transform: translateY(14px);
}
.reveal .about-photo, .reveal .about-text > *, .reveal .service-card,
.reveal .gallery-item, .reveal .contact-info > *, .reveal .contact-form {
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal .service-card:nth-child(1) { transition-delay: 0.03s; }
.reveal .service-card:nth-child(2) { transition-delay: 0.09s; }
.reveal .service-card:nth-child(3) { transition-delay: 0.15s; }
.reveal .service-card:nth-child(4) { transition-delay: 0.21s; }
.reveal .gallery-item:nth-child(1) { transition-delay: 0.02s; }
.reveal .gallery-item:nth-child(2) { transition-delay: 0.06s; }
.reveal .gallery-item:nth-child(3) { transition-delay: 0.1s; }
.reveal .gallery-item:nth-child(4) { transition-delay: 0.14s; }
.reveal .gallery-item:nth-child(5) { transition-delay: 0.18s; }
.reveal .gallery-item:nth-child(6) { transition-delay: 0.22s; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5;
  background: var(--char-2);
  border-radius: 8px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.role {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--brass-dim);
  text-transform: uppercase;
  margin-top: -8px;
}

/* Services — kitchen order tickets */
.services { background: var(--char); color: var(--linen); }
.services .eyebrow { color: var(--brass); }
.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--char-2);
  border: 1px solid rgba(250, 246, 227, 0.1);
  border-left: 3px solid var(--brass);
  border-radius: 4px 12px 12px 4px;
  padding: 36px 24px 28px;
  text-align: left;
  transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 22px; left: 3px; right: 0;
  border-top: 1px dashed rgba(250, 246, 227, 0.16);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}
.ticket-no {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--brass-dim);
  margin-bottom: 18px;
}
.service-icon {
  width: 38px;
  height: 38px;
  margin: 0 0 18px;
  color: var(--brass);
}
.service-card h3 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.service-card p { font-size: 1rem; margin: 0; color: var(--linen-dim); }

/* Gallery */
.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--char-2);
  outline: 1px solid rgba(43, 8, 5, 0.1);
  outline-offset: -1px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px 12px;
  background: linear-gradient(to top, rgba(43, 8, 5, 0.88), rgba(43, 8, 5, 0));
  color: var(--linen);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 1rem;
}
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list a { transition: color 0.18s var(--ease-out); }
.contact-list a:hover { color: var(--brass-dim); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(43, 8, 5, 0.035);
  border: 1px solid rgba(43, 8, 5, 0.12);
  border-radius: 12px;
  padding: 32px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--char);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(43, 8, 5, 0.22);
  background: rgba(43, 8, 5, 0.03);
  color: var(--char);
  resize: vertical;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s var(--ease-out);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(43, 8, 5, 0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--linen);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.25);
}
.form-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ok);
  text-align: center;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--char);
  color: var(--linen-dim);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-badge { width: 108px; height: 108px; margin: 0 auto 20px; color: var(--char); filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35)); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  margin: 0;
  color: rgba(250, 246, 227, 0.45);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 96px 0 120px; text-align: center; }
  .hero-inner { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-icon { width: 160px; height: 160px; right: 16px; bottom: 16px; opacity: 0.6; }
  .seam-badge { width: 104px; height: 104px; margin-top: -52px; }
  .about { padding-top: 100px; }
}
