/* MANKAI CAFÉ static landing page */

:root {
  --bg: #efe8dc;
  --paper: #f5efe6;
  --ink: #1f1d1b;
  --muted: #7d684b;
  --brass: #9a7338;
  --shadow: rgba(44, 31, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 20%, rgba(255,255,255,0.56), transparent 34%),
    linear-gradient(135deg, #f8f2ea 0%, #efe8dc 55%, #e5d7c5 100%);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.2vw, 34px);
}

.hero {
  width: min(1180px, 100%);
  min-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 58%);
  overflow: hidden;
  border-radius: 18px;
  background: rgba(248, 241, 232, 0.68);
  box-shadow: 0 28px 80px var(--shadow);
}

.copy {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 5vw, 82px) clamp(34px, 5vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.logo {
  width: min(330px, 84%);
  height: auto;
  margin-bottom: clamp(54px, 8vh, 84px);
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  font-style: italic;
}

.rule {
  width: 56px;
  height: 1.5px;
  margin: 44px 0 34px;
  background: var(--brass);
}

.descriptor {
  margin: 0 0 54px;
  color: var(--brass);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.opening {
  margin: 0;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.2;
  font-weight: 500;
}

.location {
  margin: 13px 0 70px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 14px;
  font-weight: 700;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 12px;
  transition: opacity .2s ease, transform .2s ease;
}

.instagram:hover {
  opacity: .68;
  transform: translateY(-1px);
}

.ig-icon {
  display: inline-grid;
  place-items: center;
  color: var(--brass);
}

.visual {
  position: relative;
  margin: 0;
  min-height: 100%;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,239,230,.98) 0%, rgba(245,239,230,.48) 16%, rgba(245,239,230,0) 42%),
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(0,0,0,.04));
  pointer-events: none;
}

.visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.mobile-break {
  display: none;
}

@media (max-width: 760px) {
  .page {
    padding: 0;
  }

  .hero {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    background: var(--paper);
  }

  .copy {
    align-items: center;
    text-align: center;
    padding: 40px 26px 22px;
  }

  .logo {
    width: min(260px, 80%);
    margin-bottom: 42px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1.02;
  }

  .rule {
    margin: 30px 0 26px;
    width: 44px;
  }

  .descriptor {
    margin-bottom: 36px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .opening {
    font-size: 20px;
  }

  .location {
    margin-bottom: 32px;
    font-size: 12px;
  }

  .instagram {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .visual {
    min-height: 42vh;
    max-height: 48vh;
  }

  .visual::after {
    background: linear-gradient(180deg, rgba(245,239,230,0.9) 0%, rgba(245,239,230,0.12) 26%, rgba(245,239,230,0) 100%);
  }

  .visual img {
    object-position: 58% 57%;
  }

  .mobile-break {
    display: initial;
  }
}

@media (max-width: 420px) {
  .copy {
    padding-top: 34px;
  }

  .logo {
    margin-bottom: 34px;
  }

  .descriptor {
    margin-bottom: 30px;
  }

  .visual {
    min-height: 38vh;
  }
}
