:root {
  --green: #1a5f5a;
  --green-light: #2a7d76;
  --green-dark: #0d3d39;
  --white: #ffffff;
  --red: #a52020;
  --red-dark: #7a1818;
  --gold: #e8c97a;
  --gold-dark: #c9a85e;
  --cream: #f5f0e8;
  --dark: #1a2e2c;
  --muted: #5c6e6c;
  --border: #e0dcd4;
  --shadow: 0 12px 40px rgba(13, 61, 57, 0.12);
  --shadow-lg: 0 24px 56px rgba(13, 61, 57, 0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Menü kartları animasyondan etkilenmesin */
.menu-board .product-card,
.menu-board .reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.home-hero.reveal-on-scroll {
  transform: none;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

.container {
  width: min(1200px, 98%);
  margin-inline: auto;
}

.flag-bar {
  display: flex;
  height: 5px;
}

.flag-bar span {
  flex: 1;
}

.flag-bar span:nth-child(1) {
  background: var(--green);
}

.flag-bar span:nth-child(2) {
  background: var(--gold);
}

.flag-bar span:nth-child(3) {
  background: var(--red);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--gold), var(--red)) 1;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(13, 61, 57, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.brand img {
  height: 64px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(26, 95, 90, 0.18));
}

.brand-logo-only .brand-text {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-dark);
}

.brand-text small {
  font-size: 0.75rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-weight: 500;
  color: var(--dark);
}

.site-nav a.active {
  color: var(--green);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  color: var(--white);
  background: var(--green-light);
  box-shadow: 0 8px 24px rgba(26, 95, 90, 0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  color: var(--green-dark);
  background: #f0d896;
  box-shadow: 0 8px 24px rgba(232, 201, 122, 0.45);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  color: var(--white);
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(165, 32, 32, 0.35);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 42%, #2d4a48 70%, var(--red-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.home-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(232, 201, 122, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(165, 32, 32, 0.2), transparent 45%),
    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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 38ch;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
}

.hero-float-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--dark);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  animation: float-card 4s ease-in-out infinite;
}

.hero-float-icon {
  font-size: 1.5rem;
}

.hero-float-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
}

.hero-float-card small {
  font-size: 0.75rem;
  color: var(--muted);
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 201, 122, 0.25);
  border: 1px solid rgba(232, 201, 122, 0.5);
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  max-width: 32ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(232, 201, 122, 0.35);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.hero-visual:hover .hero-image {
  transform: rotate(0deg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 5rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Home categories strip */
.home-categories {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}

.category-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.category-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  color: inherit;
}

.category-pill-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.category-pill-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.category-pill-text strong {
  font-size: 0.95rem;
  color: var(--green-dark);
}

.category-pill-text small {
  font-size: 0.75rem;
  color: var(--muted);
}

.category-pill-arrow {
  color: var(--gold-dark);
  font-size: 0.85rem;
  transition: transform 0.2s;
}

.category-pill:hover .category-pill-arrow {
  transform: translateX(4px);
  color: var(--red);
}

/* Features */
.home-features {
  padding-top: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(26, 95, 90, 0.1), rgba(165, 32, 32, 0.08));
  border-radius: 50%;
}

.feature-card i {
  font-size: 1.35rem;
  color: var(--red);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Menü ürünleri — her zaman yan yana 3 sütun */
.menu-board {
  display: block;
  width: 100%;
}

.menu-panel-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 6rem;
}

.menu-category-store {
  display: none !important;
}

.menu-grid-3,
.menu-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu-grid-3 > .product-card,
.menu-products-grid > .product-card {
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0;
  flex: none !important;
  grid-column: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.menu-products-grid > .menu-empty {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .menu-products-grid {
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .product-card-body {
    padding: 0.85rem;
  }

  .product-card-body h3 {
    font-size: 0.9rem;
  }

  .product-card-body > p:not(.product-meta) {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
    margin-bottom: 0.5rem;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .product-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.75rem;
  }

  .price {
    font-size: 0.95rem;
  }

  .product-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
  }
}

@media (max-width: 400px) {
  .menu-grid-3,
  .menu-products-grid {
    gap: 0.5rem;
  }

  .product-card-body h3 {
    font-size: 0.8rem;
  }

  .product-footer .btn {
    font-size: 0.7rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  width: auto;
  max-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 1;
  transform: none;
  visibility: visible;
}

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

.menu-board .product-card:hover {
  transform: translateY(-4px) !important;
}

.home-menu {
  scroll-margin-top: 5rem;
}

.home-menu .menu-tabs {
  margin-bottom: 2rem;
}

.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 2rem;
}

.product-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(26, 95, 90, 0.08), rgba(165, 32, 32, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.menu-grid-3 .product-card-image,
.menu-products-grid .product-card-image {
  aspect-ratio: 4/3;
  min-height: 0;
}

.menu-grid-3 .product-card-image img,
.menu-products-grid .product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.menu-panel .product-category {
  display: none;
}

.product-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.product-card-body > p:not(.product-meta) {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.25rem;
  flex-wrap: wrap;
}

.product-footer .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green);
}

.price-old {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

/* About */
.home-about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--green), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-placeholder {
  font-size: 4rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.about-text {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.about-list i {
  color: var(--green);
  margin-top: 0.2rem;
}

/* CTA */
.cta-band {
  padding: 0;
}

.home-cta {
  padding: 3rem 0 4.5rem;
  background: var(--cream);
}

.home-cta .cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green) 50%, var(--red-dark));
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.home-cta p {
  opacity: 0.9;
  max-width: 42ch;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-cta .btn-red:hover,
.home-cta .btn-green:hover {
  transform: translateY(-2px);
}

/* Page header */
.page-hero {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--green), var(--white), var(--red)) 1;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0.5rem auto 0;
}

/* Menu tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.menu-tab {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-tab:hover,
.menu-tab.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}


/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: var(--green);
}

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-info i {
  color: var(--red);
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 146, 70, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Alert */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-weight: 500;
}

.alert-success {
  background: #e8f5ee;
  color: #006b33;
  border: 1px solid #b8e6cc;
}

.alert-error {
  background: #fce8ea;
  color: #9b1c28;
  border: 1px solid #f5c2c6;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-logo {
  height: 96px;
  width: auto;
  max-width: 220px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #ddd;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image {
    max-height: 300px;
    transform: none;
  }

  .hero-float-card {
    left: 0.5rem;
    bottom: -0.5rem;
  }

  .home-categories {
    margin-top: -1.5rem;
  }

  .home-cta .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .home-cta p {
    margin-inline: auto;
  }

  .cta-actions {
    justify-content: center;
  }

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

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

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 1.5rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 200;
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
}
