/* ========================================
   BOULET'S BOIL-N-GO — STYLESHEET
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --charcoal-900: #1a1d23;
  --charcoal-800: #242830;
  --charcoal-700: #2e333c;
  --charcoal-600: #3d4250;
  --charcoal-500: #5a6070;
  --charcoal-400: #8a90a0;
  --charcoal-300: #b0b5c0;
  --charcoal-200: #d4d8e0;
  --charcoal-100: #eef0f4;
  --charcoal-50:  #f7f8fa;

  --coral-600: #b8430e;
  --coral-500: #d35400;
  --coral-400: #e8691a;
  --coral-300: #f0823e;
  --coral-200: #f5a06a;
  --coral-100: #fcd4b8;
  --coral-50:  #fdf0e6;

  --blue-900: #0f1f3d;
  --blue-800: #162d52;
  --blue-700: #1e3a66;
  --blue-600: #25477a;
  --blue-500: #2d5590;
  --blue-400: #4a7bc8;
  --blue-300: #7ba4d6;
  --blue-200: #a8c5e6;
  --blue-100: #d0e2f2;
  --blue-50:  #eaf3fb;

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

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(26, 29, 35, 0.08), 0 1px 2px rgba(26, 29, 35, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 29, 35, 0.10), 0 2px 4px rgba(26, 29, 35, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 29, 35, 0.14), 0 4px 12px rgba(26, 29, 35, 0.08);
  --shadow-xl: 0 24px 60px rgba(26, 29, 35, 0.18), 0 8px 20px rgba(26, 29, 35, 0.10);

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

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

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

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

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal-900);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-500);
  max-width: 560px;
  line-height: 1.7;
}

.text-coral {
  color: var(--coral-500);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-coral {
  background: var(--coral-500);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(211, 84, 0, 0.35);
}

.btn-coral:hover {
  background: var(--coral-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(211, 84, 0, 0.40);
}

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

.btn-outline:hover {
  border-color: var(--coral-500);
  color: var(--coral-500);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 29, 35, 0.06);
  transition: all var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal-900);
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--coral-500);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral-500);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--coral-500);
  background: var(--coral-50);
}

.nav-cta {
  background: var(--coral-500) !important;
  color: #ffffff !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--coral-400) !important;
  color: #ffffff !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--charcoal-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 29, 35, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--charcoal-50) 0%, #ffffff 50%, var(--coral-50) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 84, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--coral-50);
  border: 1px solid var(--coral-100);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--coral-600);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--charcoal-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal-500);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal-900);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--charcoal-400);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--charcoal-200);
}

.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: var(--coral-500);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.2;
}

/* --- About Section --- */
.about {
  padding: 100px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  top: -20px;
  right: 30px;
  background: var(--charcoal-900);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.about-badge-sub {
  font-size: 0.75rem;
  color: var(--coral-300);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  color: var(--charcoal-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--coral-50);
  border: 1px solid var(--coral-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
}

.about-feature strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--charcoal-900);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--charcoal-400);
}

/* --- Menu Section --- */
.menu {
  padding: 100px 0;
  background: var(--charcoal-50);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

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

.menu-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--charcoal-100);
  transition: all var(--transition-base);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-100);
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  line-height: 1.7;
  margin-bottom: 14px;
}

.menu-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--coral-50);
  color: var(--coral-600);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Process Section --- */
.process {
  padding: 100px 0;
  background: var(--charcoal-900);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(211, 84, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.process .section-label {
  color: var(--coral-300);
}

.process .section-title {
  color: #ffffff;
}

.process .section-subtitle {
  color: var(--charcoal-400);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--coral-500), var(--coral-300), var(--coral-500));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--coral-500);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--charcoal-800);
  border: 2px solid var(--charcoal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-400);
  transition: all var(--transition-base);
}

.process-step:hover .process-step-icon {
  background: var(--coral-500);
  border-color: var(--coral-500);
  color: #ffffff;
  transform: scale(1.08);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--charcoal-400);
  line-height: 1.75;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Location Section --- */
.location {
  padding: 100px 0;
  background: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--charcoal-50);
  border: 1px solid var(--charcoal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
}

.location-detail strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--charcoal-900);
  margin-bottom: 2px;
}

.location-detail p {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

.location-detail a {
  color: var(--coral-500);
  transition: color var(--transition-fast);
}

.location-detail a:hover {
  color: var(--coral-400);
}

.location-map {
  min-height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* --- Contact Section --- */
.contact {
  padding: 100px 0;
  background: var(--charcoal-50);
}

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

.contact-content .section-title {
  margin-bottom: 16px;
}

.contact-content > p {
  color: var(--charcoal-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--charcoal-100);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--charcoal-800);
  transition: all var(--transition-fast);
}

.contact-method:hover {
  border-color: var(--coral-200);
  color: var(--coral-500);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--coral-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--charcoal-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-700);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--charcoal-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal-800);
  background: var(--charcoal-50);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-300);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--coral-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-900);
}

.form-success p {
  color: var(--charcoal-500);
  font-size: 0.9375rem;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal-900);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--charcoal-700);
}

.footer-brand p {
  color: var(--charcoal-400);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.footer-logo:hover {
  color: var(--coral-400);
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral-500);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-300);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  font-size: 0.9rem;
  color: var(--charcoal-400);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--coral-400);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--charcoal-500);
}

.footer-bottom a {
  color: var(--coral-400);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--coral-300);
}

/* --- Reveal Animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-img-wrapper {
    border-radius: var(--radius-lg);
  }

  .hero-stats {
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    max-width: 480px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-stat-divider {
    display: none;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}
