@font-face {
  font-family: 'Dia';
  src: url('assets/Dia-Light-clean.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #FBF4E9;
}

body {
  font-family: 'Dia', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: #A29994;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

a:hover {
  color: #DF6547 !important;
  -webkit-text-fill-color: #DF6547 !important;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 54px;
}

.row {
  position: relative;
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-24px);
}

.address,
.hours {
  font-size: 21px;
  line-height: 21px;
  letter-spacing: -0.02em;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
}

.hours {
  text-align: right;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 12px));
  pointer-events: none;
}

.logo img {
  display: block;
  width: 598.93px;
  height: auto;
}

/* Tablet: 800–1279px */
@media (max-width: 1279px) {
  .logo img {
    width: 330px;
  }
}

/* Mobile: below 800px */
@media (max-width: 799px) {
  .hero {
    align-items: flex-start;
    padding: 30px 0 0;
  }

  .row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: none;
    min-height: calc(100vh - 30px);
    min-height: calc(100dvh - 30px);
    justify-content: flex-start;
  }

  .address,
  .hours {
    text-align: center;
    white-space: normal;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% - 60px));
  }

  .logo img {
    width: 330px;
  }
}
