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

:root {
  --red: #8B1A1A;
  --red-dark: #6B1010;
  --red-light: #A52A2A;
  --tan: #F5E6C8;
  --tan-dark: #E8D5AD;
  --tan-light: #FDF6EC;
  --cream: #FFFBF3;
  --text-dark: #3B2314;
  --text-mid: #6B5744;
  --text-light: #8B7B6B;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(59, 35, 20, 0.08);
  --shadow-lg: 0 8px 32px rgba(59, 35, 20, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--cream);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */

.header {
  background-color: var(--cream);
  box-shadow: 0 1px 8px rgba(59, 35, 20, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 52px;
  width: auto;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.external-icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 4px;
  vertical-align: baseline;
  opacity: 0.6;
}

.footer-right a .external-icon {
  filter: brightness(0) invert(1);
}

.nav-menu a:hover .external-icon,
.footer-right a:hover .external-icon {
  opacity: 1;
}

.nav-order-btn {
  background-color: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.nav-order-btn:hover {
  background-color: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */

.hero {
  background: linear-gradient(170deg, var(--tan) 0%, var(--tan-dark) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(139, 26, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-mascot {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.btn-order-hero {
  background-color: var(--red);
  color: var(--white);
  padding: 18px 56px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
}

.btn-order-hero:hover {
  background-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.35);
}

/* ===== QUICK LINKS ===== */

.quick-links {
  padding: 64px 24px;
  background-color: var(--cream);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  background-color: var(--white);
  border: 1px solid var(--tan-dark);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.link-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.link-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.link-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== LOCATION ===== */

.location-section {
  padding: 64px 24px;
  background-color: var(--tan-light);
}

.location-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.location-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--red);
  margin-bottom: 32px;
  text-align: center;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

.phone-text a {
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

.phone-text a:hover {
  color: var(--red-dark);
}

.btn-order-large {
  background-color: var(--white);
  color: var(--red);
  padding: 20px 64px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-order-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ===== ABOUT ===== */

.about-section {
  padding: 64px 24px;
  background-color: var(--cream);
}

.about-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.about-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--red);
  margin-bottom: 24px;
}

.about-card p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* ===== APP PAGE ===== */

.app-hero {
  min-height: calc(100vh - 76px - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, var(--tan) 0%, var(--tan-dark) 100%);
  padding: 60px 24px;
}

.app-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.app-mascot {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.app-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 16px;
  line-height: 1.15;
}

.app-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.6;
}

.app-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.app-badge-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  opacity: 0.7;
}

.badge-icon {
  font-size: 28px;
}

.badge-small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  text-align: left;
}

.badge-large {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.app-meanwhile {
  border-top: 1px solid rgba(139, 26, 26, 0.15);
  padding-top: 32px;
}

.app-meanwhile p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 40px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-left p {
  font-size: 14px;
  opacity: 0.6;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-right a:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    padding: 16px 24px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    padding: 12px 0;
    border-bottom: 1px solid var(--tan-dark);
  }

  .nav-menu li:last-child {
    border-bottom: none;
    padding-top: 16px;
  }

  .nav-order-btn {
    text-align: center;
    display: block;
  }

  .hero {
    padding: 60px 24px 48px;
  }

  .hero-mascot {
    width: 130px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .btn-order-hero {
    padding: 16px 40px;
    font-size: 18px;
  }

  .links-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .location-card {
    padding: 32px 24px;
  }

  .location-details {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .btn-order-large {
    padding: 16px 40px;
    font-size: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 12px;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .app-content h1 {
    font-size: 32px;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .link-card {
    padding: 28px 20px;
  }
}
