/* ========================================================
   NANXIANG SOUP DUMPLING
   Authentic Chinese Soup Dumpling Restaurant
   Pinellas Park, FL

   Palette:
     --cream: #FBF7F0 (background)
     --red: #C53030 (primary / imperial red)
     --red-dark: #8B1A1A (deep red)
     --red-light: rgba(197,48,48,0.08)
     --gold: #C9A84C (accent)
     --gold-light: #E8D48B
     --gold-dark: #A07C30
     --jade: #3D7A5F (secondary accent)
     --charcoal: #2D1810 (text)
     --charcoal-light: #5A4A3E
     --warm-gray: #8B7E70
     --bone: #F5EDE0
     --ivory: #FFFDF8

   Fonts:
     Display/Headings: Playfair Display
     Body: DM Sans
     Accent: Caveat
   ======================================================== */

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FBF7F0;
  --red: #C53030;
  --red-dark: #8B1A1A;
  --red-light: rgba(197, 48, 48, 0.08);
  --red-glow: rgba(197, 48, 48, 0.15);
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07C30;
  --jade: #3D7A5F;
  --jade-light: rgba(61, 122, 95, 0.1);
  --charcoal: #2D1810;
  --charcoal-light: #5A4A3E;
  --warm-gray: #8B7E70;
  --bone: #F5EDE0;
  --ivory: #FFFDF8;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Caveat', cursive;

  --nav-height: 72px;
  --nav-height-scrolled: 64px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(45, 24, 16, 0.06);
  --shadow: 0 4px 12px rgba(45, 24, 16, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 24, 16, 0.12);
  --shadow-xl: 0 20px 60px rgba(45, 24, 16, 0.15);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

/* ===================== UTILITY ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(197, 48, 48, 0.3);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

.btn--outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Scroll reveal animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .steam,
  .hero__steam-wisp,
  .hero__particle,
  .hero__scroll-dot,
  .hero__lid,
  .contact__spinner {
    animation: none !important;
  }
}

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(251, 247, 240, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.15);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  z-index: 1001;
}

.nav__logo-mark {
  color: var(--red);
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--red);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(197, 48, 48, 0.25);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(197, 48, 48, 0.35);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  z-index: 1001;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--cream);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(197, 48, 48, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(197, 48, 48, 0.06);
  top: 10%;
  left: -5%;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(201, 168, 76, 0.06);
  top: 60%;
  right: -5%;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(61, 122, 95, 0.04);
  bottom: 10%;
  left: 30%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--red-light);
  border: 1px solid rgba(197, 48, 48, 0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--red);
  display: inline-block;
}

.hero__description {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.hero__stat-word {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--red);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 2px;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 168, 76, 0.3);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Steam animation */
.steam {
  animation: steamFloat 3s ease-in-out infinite;
}

.steam--1 { animation-delay: 0s; }
.steam--2 { animation-delay: 0.8s; }
.steam--3 { animation-delay: 1.6s; }

@keyframes steamFloat {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(-4px); }
}

/* Hero SVG steam wisps */
.hero__steam-wisp {
  animation: steamRise 4s ease-in-out infinite;
}

.hero__steam-wisp--1 { animation-delay: 0s; }
.hero__steam-wisp--2 { animation-delay: 1.2s; }
.hero__steam-wisp--3 { animation-delay: 2.4s; }

@keyframes steamRise {
  0% { opacity: 0; transform: translateY(10px); }
  30% { opacity: 0.6; }
  70% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-20px); }
}

/* Lid gentle float */
.hero__lid {
  animation: lidFloat 4s ease-in-out infinite;
}

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

/* Floating particles */
.hero__particle {
  animation: particleFloat var(--dur, 6s) ease-in-out infinite;
}

.hero__particle--1 { --dur: 7s; animation-delay: 0s; }
.hero__particle--2 { --dur: 5s; animation-delay: 1s; }
.hero__particle--3 { --dur: 8s; animation-delay: 2s; }
.hero__particle--4 { --dur: 6s; animation-delay: 0.5s; }
.hero__particle--5 { --dur: 7s; animation-delay: 1.5s; }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -12px); }
  50% { transform: translate(-4px, -8px); }
  75% { transform: translate(6px, 4px); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-size: 0.75rem;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: -10px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ===================== ABOUT ===================== */
.about {
  padding: 100px 0;
  background: var(--ivory);
}

.about__header {
  margin-bottom: 48px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--red);
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  margin-bottom: 24px;
}

.about__text p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.about__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.about__photo {
  margin-bottom: 20px;
}

.about__photo-placeholder {
  display: flex;
  justify-content: center;
}

.about__photo-placeholder svg {
  border-radius: var(--radius);
}

.about__card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about__card-role {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 12px;
}

.about__card-bio {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--bone);
  transition: all 0.3s var(--ease-out);
}

.about__value:hover {
  border-color: rgba(197, 48, 48, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about__value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  color: var(--red);
  flex-shrink: 0;
}

.about__value-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ===================== MENU ===================== */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu__header {
  margin-bottom: 48px;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bone);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.menu__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}

.menu__card--featured {
  border-color: rgba(197, 48, 48, 0.2);
  box-shadow: var(--shadow);
}

.menu__card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(197, 48, 48, 0.15);
}

.menu__card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu__card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__card-placeholder--xlb {
  background: linear-gradient(135deg, #F5E0E0 0%, #F8EDE0 50%, #FDF5E8 100%);
}

.menu__card-placeholder--buns {
  background: linear-gradient(135deg, #F8EDE0 0%, #FDF5E8 50%, #FBF0D8 100%);
}

.menu__card-placeholder--noodles {
  background: linear-gradient(135deg, #E8F0E8 0%, #F0F5E8 50%, #F5F8F0 100%);
}

.menu__card-placeholder--dimsum {
  background: linear-gradient(135deg, #F5E0E0 0%, #F0E0E8 50%, #F8E8F0 100%);
}

.menu__card-placeholder--panfried {
  background: linear-gradient(135deg, #FDF5E8 0%, #F8E8D0 50%, #F5E0C8 100%);
}

.menu__card-placeholder--boba {
  background: linear-gradient(135deg, #E8F0E8 0%, #E0F0F0 50%, #E8F5F0 100%);
}

.menu__card-content {
  padding: 24px;
}

.menu__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.menu__card-subtitle {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.menu__card-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.menu__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.menu__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s;
}

.menu__card:hover .menu__tag {
  background: rgba(197, 48, 48, 0.12);
}

/* ===================== THE CRAFT ===================== */
.craft {
  padding: 100px 0;
  background: var(--ivory);
}

.craft__header {
  margin-bottom: 56px;
}

.craft__timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.craft__step {
  display: flex;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}

.craft__step:last-child {
  padding-bottom: 0;
}

.craft__step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border: 2px solid rgba(197, 48, 48, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease-out);
}

.craft__step:hover .craft__step-number {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.craft__step-line {
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: rgba(197, 48, 48, 0.1);
}

.craft__step:last-child .craft__step-line {
  display: none;
}

.craft__step-content {
  flex: 1;
  padding-top: 4px;
}

.craft__step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.craft__step-desc {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.craft__step-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50px;
}

.craft__step-detail svg {
  color: var(--gold);
}

/* ===================== FEATURES ===================== */
.features {
  padding: 80px 0;
  background: var(--charcoal);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.features__card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.features__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.features__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 48, 48, 0.12);
  color: var(--red);
  border-radius: var(--radius);
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease-out);
}

.features__card:hover .features__icon {
  background: var(--red);
  color: var(--white);
}

.features__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}

.features__desc {
  font-size: 0.875rem;
  color: rgba(255, 253, 248, 0.6);
  line-height: 1.6;
}

/* ===================== REVIEWS ===================== */
.reviews {
  padding: 100px 0;
  background: var(--cream);
}

.reviews__header {
  margin-bottom: 48px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reviews__card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s var(--ease-out);
}

.reviews__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reviews__card--featured {
  background: var(--charcoal);
  border-color: rgba(201, 168, 76, 0.2);
}

.reviews__card--featured .reviews__text {
  color: rgba(255, 253, 248, 0.85);
}

.reviews__card--featured .reviews__name {
  color: var(--ivory);
}

.reviews__card--featured .reviews__location {
  color: rgba(255, 253, 248, 0.5);
}

.reviews__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.reviews__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviews__card--featured .reviews__avatar {
  background: rgba(197, 48, 48, 0.2);
}

.reviews__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.reviews__location {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #A02828 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ===================== VISIT ===================== */
.visit {
  padding: 100px 0;
  background: var(--ivory);
}

.visit__header {
  margin-bottom: 48px;
}

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

.visit__info-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit__info-group {
  display: flex;
  gap: 16px;
}

.visit__info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: var(--radius);
  color: var(--red);
  flex-shrink: 0;
}

.visit__info-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.visit__address {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.visit__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--charcoal-light);
}

.visit__hours li span:last-child {
  font-weight: 500;
  color: var(--charcoal);
}

.visit__link {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 500;
}

.visit__link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.visit__areas {
  margin-top: 24px;
}

.visit__areas-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.visit__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visit__area-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: all 0.3s var(--ease-out);
}

.visit__area-tag:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.visit__map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bone);
  box-shadow: var(--shadow);
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact__header {
  text-align: center;
  margin-bottom: 48px;
}

.contact__header .section-tag {
  justify-content: center;
}

.contact__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.contact__form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact__form-group {
  margin-bottom: 16px;
  position: relative;
}

.contact__form-row .contact__form-group {
  margin-bottom: 0;
}

.contact__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

.contact__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A4A3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
  background: var(--white);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--warm-gray);
}

.contact__error {
  display: none;
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 4px;
}

.contact__form-group--error .contact__input,
.contact__form-group--error .contact__select,
.contact__form-group--error .contact__textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.08);
}

.contact__form-group--error .contact__error {
  display: block;
}

.contact__submit {
  margin-top: 8px;
  position: relative;
}

.contact__submit-loading {
  display: none;
}

.contact__submit--loading .contact__submit-text {
  opacity: 0;
}

.contact__submit--loading .contact__submit-loading {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}

.contact__spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.contact__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact__success.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 0.5s var(--ease-out);
}

.contact__success h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--jade);
}

.contact__success p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  color: var(--gold);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.5);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 253, 248, 0.6);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 18px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 253, 248, 0.5);
  transition: color 0.3s, padding-left 0.3s;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__address {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 253, 248, 0.5);
  margin-bottom: 12px;
}

.footer__contact-line {
  margin-bottom: 6px;
}

.footer__contact-line a {
  font-size: 0.875rem;
  color: rgba(255, 253, 248, 0.5);
}

.footer__contact-line a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.35);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(197, 48, 48, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero__scroll-hint {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__card {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__values {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__card:nth-child(3) {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .visit__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    box-shadow: -8px 0 30px rgba(45, 24, 16, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
  }

  .nav__links[aria-hidden="false"].open {
    transform: translateX(0);
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--bone);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    border-radius: var(--radius);
    padding: 14px 22px;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    width: calc(50% - 8px);
  }

  .about {
    padding: 70px 0;
  }

  .about__values {
    grid-template-columns: 1fr;
  }

  .menu {
    padding: 70px 0;
  }

  .menu__grid {
    grid-template-columns: 1fr;
  }

  .craft {
    padding: 70px 0;
  }

  .features {
    padding: 60px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .reviews {
    padding: 70px 0;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__card:nth-child(3) {
    grid-column: span 1;
    max-width: none;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .visit {
    padding: 70px 0;
  }

  .visit__hours li {
    flex-direction: column;
    gap: 2px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact__form {
    padding: 24px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

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

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__legal {
    gap: 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ===================== PRINT ===================== */
@media print {
  .nav,
  .hero__orb,
  .hero__bg-pattern,
  .hero__scroll-hint,
  .cta-banner,
  .back-to-top,
  .nav__link--cta,
  .hero__actions,
  .contact__form,
  .footer__social {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  section {
    padding: 30px 0 !important;
    break-inside: avoid;
  }
}
