:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-soft: #edf8f4;
  --primary: #55c9bd;
  --primary-dark: #287174;
  --text: #223034;
  --muted: #64746e;
  --line: #ddebe5;
  --shadow: 0 18px 42px rgba(34, 48, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(85, 201, 189, 0.11), transparent 32rem),
    linear-gradient(180deg, #fbfffc 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

h1,
h2,
h3,
.brand-font {
  font-family: "Playfair Display", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 235, 229, 0.86);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-link {
  position: relative;
  color: #334349;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-panel {
  border-top: 1px solid var(--line);
  background: #fff;
}

.hero-media,
.image-panel {
  box-shadow: var(--shadow);
}

.soft-card {
  border: 1px solid rgba(221, 235, 229, 0.82);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(34, 48, 52, 0.06);
}

.action-card,
.menu-card {
  border: 1px solid rgba(221, 235, 229, 0.82);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-card:hover,
.menu-card:hover {
  border-color: rgba(85, 201, 189, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.menu-row {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  background: #f5faf7;
  padding: 0.85rem 1rem;
}

.menu-row span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.price {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--primary-dark);
}

.form-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(85, 201, 189, 0.14);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #effaf6 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  color: var(--primary-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.loader-bar {
  position: relative;
  width: min(16rem, 72vw);
  height: 3px;
  margin: 1.1rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: #deebe5;
}

.loader-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  animation: loadProgress 1.2s ease forwards;
}

.loader.hidden {
  visibility: hidden;
  opacity: 0;
}

@keyframes loadProgress {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@media (max-width: 640px) {
  .brand-wordmark {
    max-width: 11rem;
    letter-spacing: 0.1em;
    font-size: 1.15rem;
  }

  .menu-row {
    align-items: flex-start;
  }
}
