/* Prachason Neue (licensed font — drop the purchased/demo files in
   assets/fonts/ as PrachasonNeue-Light.woff2 / .woff to activate.
   Until then the title falls back to Sinkin Sans). */
@font-face {
  font-family: "Prachason Neue";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    url("assets/fonts/PrachasonNeue-Light.woff2") format("woff2"),
    url("assets/fonts/PrachasonNeue-Light.woff") format("woff");
}

@font-face {
  font-family: "Prachason Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("assets/fonts/PrachasonNeue-Regular.woff2") format("woff2"),
    url("assets/fonts/PrachasonNeue-Regular.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-100Thin.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-200XLight.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-300Light.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-400Regular.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-500Medium.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-600SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Sinkin Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/SinkinSans-700Bold.woff") format("woff");
}

:root {
  --ink: #2b2620;
  --ink-soft: rgba(43, 38, 32, 0.6);
  --line: rgba(43, 38, 32, 0.18);
}

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

html,
body {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  color: var(--ink);
  font-family: "Sinkin Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;

  background-color: #d8d2c7;
}

/* Background image on its own layer so it can gently sway like curtains */
.bg {
  position: fixed;
  inset: -6%;
  z-index: 0;
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: transform, filter;
  animation: sway 26s ease-in-out infinite alternate;
}

@keyframes sway {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
    filter: brightness(1);
  }

  35% {
    transform: scale(1.09) translate3d(-1.4%, 0.5%, 0) rotate(0.3deg);
    filter: brightness(1.03);
  }

  70% {
    transform: scale(1.07) translate3d(1.2%, -0.6%, 0) rotate(-0.25deg);
    filter: brightness(0.99);
  }

  100% {
    transform: scale(1.08) translate3d(0.4%, 0.4%, 0) rotate(0.15deg);
    filter: brightness(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg {
    animation: none;
    transform: scale(1.04);
  }
}

/* Soft wash to keep dark text legible over the photo */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0.32) 100%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Logo sits top-left */
.hero {
  text-align: left;
  padding-top: clamp(0.5rem, 2vw, 1.5rem);
}

.logo {
  font-family: "Prachason Neue", "Sinkin Sans", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(4rem, 20vw, 15rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #333333;
}

.tagline {
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
  font-size: clamp(0.7rem, 1.4vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 22em;
  text-wrap: balance;
}

/* Details pinned to the bottom, split left / right */
.info {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.info__left,
.info__right {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.info__right {
  text-align: right;
  align-items: flex-end;
}

.detail__label {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.hours {
  list-style: none;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

.hours li {
  display: flex;
  gap: 1.25rem;
  padding: 0.15rem 0;
}

.hours li span:last-child {
  color: var(--ink-soft);
}

.address,
.instagram {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.5;
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: opacity 0.25s ease;
}

.address:hover,
.instagram:hover {
  opacity: 0.6;
}

.address__hint {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.copyright {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .info__right {
    text-align: left;
    align-items: flex-start;
  }
}