/* ========================================================================
   Aroma - Essentials tier demo · micro.netweb
   Warm, cozy, restrained. Clean and professional but intentionally simple.
   ===================================================================== */

:root {
  --cream:      #f6efe3;
  --cream-2:    #efe4d2;
  --ink:        #2a211b;
  --ink-soft:   #5c4f44;
  --terra:      #c0603a;
  --terra-dk:   #9c4a2b;
  --green:      #5f6b4a;
  --line:       #e0d3bd;
  --radius:     6px;
  --shadow:     0 2px 6px rgba(42, 33, 27, .1);
  --ff-disp:    "Fraunces", Georgia, serif;
  --ff-body:    "Karla", system-ui, sans-serif;
  --wrap:       1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--ff-disp); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
.eyebrow {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--terra-dk); font-weight: 700; margin-bottom: .9rem;
}

/* ---- Demo tier badge -------------------------------------------------- */
.demobar {
  background: var(--ink); color: var(--cream);
  font-size: .8rem; text-align: center; padding: .55rem 1rem;
  letter-spacing: .01em;
}
.demobar b { color: #e7a77f; font-weight: 700; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; padding: .8rem 1.5rem;
  border-radius: 4px; border: 2px solid var(--terra);
  background: var(--terra); color: #fff; cursor: pointer;
  transition: background .18s ease;
}
.btn:hover { background: var(--terra-dk); border-color: var(--terra-dk); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

/* ---- Header ----------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { font-family: var(--ff-disp); font-size: 1.5rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.brand b { color: var(--terra); }
.brand span.dot { color: var(--terra); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { font-weight: 600; font-size: .95rem; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--terra); transition: width .2s; }
.nav-links a:hover::after { width: 100%; }
.nav-tools { display: flex; align-items: center; gap: .9rem; }

.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 50px; overflow: hidden; background: #fff;
}
.lang button {
  border: 0; background: transparent; font-family: var(--ff-body); font-weight: 700;
  font-size: .8rem; padding: .42rem .7rem; cursor: pointer; color: var(--ink-soft);
}
.lang button.active { background: var(--terra); color: #fff; }

.burger { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--ink); }

/* ---- Hero ------------------------------------------------------------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-img .tag {
  margin-top: .9rem; display: flex; align-items: baseline; gap: .6rem;
  font-family: var(--ff-disp); font-size: 1.05rem; color: var(--ink-soft);
}
.hero-img .tag b { color: var(--terra); font-size: 1.4rem; }

/* ---- Sections --------------------------------------------------------- */
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.sec-head { max-width: 60ch; margin-bottom: 2.6rem; }
.sec-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .8rem; }
.sec-head p { color: var(--ink-soft); font-size: 1.08rem; }

.about { background: var(--cream-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-grid img { border-radius: var(--radius); aspect-ratio: 5/4; object-fit: cover; box-shadow: var(--shadow); }
.about-grid h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: .9rem 0 1rem; }
.about ul { list-style: none; margin-top: 1.4rem; display: grid; gap: .8rem; }
.about li { display: flex; gap: .7rem; align-items: flex-start; }
.about li::before { content: "✦"; color: var(--terra); font-size: 1.1rem; line-height: 1.5; }

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.menu-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.menu-card img { aspect-ratio: 3/2; object-fit: cover; }
.menu-card .body { padding: 1.2rem 1.3rem 1.5rem; }
.menu-card h3 { font-size: 1.3rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-card .price { font-family: var(--ff-body); color: var(--terra); font-weight: 700; font-size: 1.05rem; }
.menu-card p { color: var(--ink-soft); font-size: .95rem; margin-top: .4rem; }

/* Visit */
.visit { background: var(--ink); color: var(--cream); }
.visit .sec-head h2 { color: var(--cream); }
.visit .sec-head p { color: #cdbfae; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.hours { list-style: none; display: grid; gap: .7rem; }
.hours li { display: flex; justify-content: space-between; padding-bottom: .7rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.hours li b { color: #e7a77f; }
.visit .map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.15); aspect-ratio: 16/11; }
.visit .map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* Contact */
.contact { text-align: center; }
.contact .wrap { max-width: 640px; }
.contact h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.contact p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 2rem; }
.contact-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn--wa { background: #1faf54; border-color: #1faf54; }
.btn--wa:hover { background: #178a42; border-color: #178a42; }

/* Footer */
.site-foot { background: var(--cream-2); border-top: 1px solid var(--line); padding: 2.5rem 0; }
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.foot-grid .brand { font-size: 1.3rem; }
.powered { font-size: .92rem; color: var(--ink-soft); }
.powered a { color: var(--terra-dk); font-weight: 700; border-bottom: 1px dotted currentColor; }
.powered a:hover { color: var(--terra); }

/* Essentials tier: intentionally static - no scroll animation. */

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column;
    background: var(--cream); padding: 6rem 2rem; gap: 1.4rem; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: var(--shadow); border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: none; }
  .burger { display: block; z-index: 60; }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-img .tag { left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
