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

:root {
  --orange: #f89b2d;
  --orange-dark: #e08a1a;
  --dark: #2d2d2d;
  --light: #fff8f0;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Hero ---- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  text-align: center;
  padding: 2rem 1.25rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 240px;
  max-width: 60vw;
  height: auto;
  margin-bottom: 0.5rem;
  mix-blend-mode: multiply;
}

.location {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  opacity: 0.85;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 2rem;
  background: var(--dark);
  color: var(--orange);
  font-family: "Permanent Marker", cursive;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:active {
  transform: scale(0.97);
}

/* ---- Section defaults ---- */

section {
  padding: 3.5rem 0;
}

section h2 {
  font-family: "Permanent Marker", cursive;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* ---- About ---- */

.about {
  background: var(--light);
}

.about p {
  text-align: center;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Signatures ---- */

.signatures {
  background: var(--dark);
  color: var(--orange);
}

.signatures h2 {
  color: var(--orange);
}

.signatures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
}

.signatures-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  background: var(--white);
  transition: transform 0.2s ease;
}

/* ---- Menu ---- */

.menu {
  background: var(--orange);
  text-align: center;
}

.menu p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.menu-button {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--dark);
  color: var(--orange);
  font-family: "Permanent Marker", cursive;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s ease;
}

.menu-button:active {
  transform: scale(0.97);
}

/* ---- Hours ---- */

.hours {
  background: var(--light);
}

.hours-list {
  list-style: none;
  max-width: 400px;
  margin: 0 auto;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

/* ---- Find Us ---- */

.find-us {
  background: var(--orange);
  text-align: center;
}

.address {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.map-link {
  display: inline-block;
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 2px;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.map-link:active {
  opacity: 0.7;
}

/* ---- Contact ---- */

.contact {
  background: var(--light);
  text-align: center;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-list a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-list a:active {
  opacity: 0.7;
}

/* ---- Footer ---- */

.footer {
  background: var(--dark);
  color: var(--orange);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

/* ---- Desktop (tablets+) ---- */

@media (min-width: 768px) {
  .logo {
    width: 340px;
  }

  .signatures-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .signatures-grid img:hover {
    transform: scale(1.05);
  }

  section h2 {
    font-size: 2rem;
  }

  .container {
    max-width: 720px;
  }

  .cta-button:hover,
  .menu-button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .map-link:hover {
    opacity: 0.7;
  }

  .contact-list a:hover {
    opacity: 0.7;
  }
}

/* safe-area for notched iPhones */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}
