/* ============ MIZU group — landing ============ */

:root {
  --bg: #0a0a0a;
  --bg-elev: #131313;
  --bg-card: #161616;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --ink: #f5f1e8;
  --ink-dim: rgba(245,241,232,0.66);
  --ink-mute: rgba(245,241,232,0.44);
  --gold: #c9a35a;
  --gold-soft: #e6c98a;
  --flame-1: #ff1a00;
  --flame-2: #ff6a00;
  --flame-3: #ffc400;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 460px;
  --pad: 22px;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(255,106,0,0.08) 0%, transparent 60%),
    radial-gradient(100% 60% at 0% 100%, rgba(201,163,90,0.06) 0%, transparent 60%),
    var(--bg);
}

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

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

/* ============ Frame (mobile-first, capped width) ============ */

.frame {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  background: var(--bg);
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px var(--pad) calc(env(safe-area-inset-bottom) + 48px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.65) 0%,
      rgba(10,10,10,0.30) 35%,
      rgba(10,10,10,0.55) 70%,
      rgba(10,10,10,0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero__logo {
  width: 150px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.7));
}

.hero__brand {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin-bottom: 10px;
  text-indent: 0.32em;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
}

.hero__scroll {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  opacity: 0.5;
}

.hero__scroll span {
  width: 2px;
  height: 6px;
  background: var(--ink);
  border-radius: 2px;
  animation: scroll 1.6s ease-in-out infinite;
}

@keyframes scroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  user-select: none;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  color: #1a0a00;
  background: linear-gradient(135deg, var(--flame-3) 0%, var(--flame-2) 55%, var(--flame-1) 100%);
  box-shadow:
    0 8px 30px rgba(255,106,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
  font-weight: 600;
}

.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--ghost:active { background: rgba(255,255,255,0.08); }

.btn--block {
  display: flex;
  width: 100%;
}

/* ============ Sections ============ */

main { display: block; }

.section {
  padding: 72px var(--pad);
  border-top: 1px solid var(--line);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow--flame {
  background: linear-gradient(90deg, var(--flame-3), var(--flame-2), var(--flame-1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}

.title em {
  font-style: italic;
  color: var(--gold-soft);
}

.lede {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-dim);
}

/* ============ Quote (about) ============ */

.quote {
  position: relative;
  margin: 0;
  padding: 8px 0 0 26px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--flame-3), var(--flame-2), var(--flame-1)) 1;
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: var(--ink);
}

/* ============ CTA block ============ */

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.cta-card--primary {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,106,0,0.14) 0%, transparent 70%),
    var(--bg-card);
  border-color: rgba(255,106,0,0.25);
}

.cta-card__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}

.cta-card--primary .cta-card__lede {
  color: var(--gold-soft);
}

.cta-card__note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  text-align: center;
}

/* ============ Coming Soon ============ */

.coming-soon {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--line);
}

.coming-soon__inner {
  position: relative;
  margin: 0;
  padding: 80px var(--pad) 84px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255,106,0,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #120907 0%, #0a0a0a 100%);
  overflow: hidden;
}

.coming-soon__inner::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--flame-2), transparent);
  opacity: 0.6;
}

.coming-soon__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,196,0,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,26,0,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.coming-soon .title { font-size: 38px; }

/* ============ Temp location & hours ============ */

.addr {
  font-style: normal;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 8px 0 18px;
}

.hours {
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.hours__title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hours__list {
  list-style: none;
}

.hours__list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.hours__list li:last-child { border-bottom: 0; }

.hours__list li > span:first-child {
  color: var(--ink-dim);
  font-weight: 500;
}

.hours__list li > span:last-child {
  text-align: right;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}

.closed {
  color: var(--ink-mute) !important;
  font-style: italic;
}

/* ============ Contact ============ */

.contact__list {
  list-style: none;
  margin: 8px 0 32px;
  border-top: 1px solid var(--line);
}

.contact__list li {
  border-bottom: 1px solid var(--line);
}

.contact__list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  transition: opacity 0.18s ease;
}

.contact__list a:active { opacity: 0.6; }

.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.contact__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social:active {
  background: rgba(255,255,255,0.08);
  color: var(--gold-soft);
  border-color: var(--gold);
}

/* ============ Footer ============ */

.footer {
  padding: 48px var(--pad) calc(env(safe-area-inset-bottom) + 36px);
  text-align: center;
  border-top: 1px solid var(--line);
  background: #060606;
}

.footer__mark {
  width: 64px;
  margin: 0 auto 18px;
  opacity: 0.85;
}

.footer p {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ============ Desktop note ============ */

.desktop-note {
  display: none;
}

@media (min-width: 720px) {
  body {
    background:
      radial-gradient(60% 50% at 50% 0%, rgba(255,106,0,0.10) 0%, transparent 70%),
      #050505;
    padding: 32px 0;
  }

  .frame {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .desktop-note {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(20,20,20,0.92);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 100;
    max-width: 90vw;
  }

  .desktop-note > div {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .desktop-note img {
    width: 32px;
    height: 32px;
  }

  .desktop-note p {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.4;
  }
}

/* ============ Small screen tweaks ============ */

@media (max-height: 640px) {
  .hero { padding-bottom: 36px; }
  .hero__logo { width: 90px; }
  .hero__tagline { font-size: 19px; }
  .section { padding: 56px var(--pad); }
  .title { font-size: 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__scroll span { animation: none; }
  * { transition: none !important; }
}
