/* ============================================================
   Düzce Sarma — paylaşılan site stilleri
   ============================================================ */

:root {
  --green-900: #2c3f18;
  --green-700: #3f5e25;
  --green-600: #4e7a2f;
  --green-500: #6b9a3e;
  --green-400: #8bb35e;
  --green-200: #cfe0b4;
  --cream: #f5f8ef;
  --paper: #ffffff;
  --ink: #28331a;
  --muted: #5c6b4c;
  --accent: #DC571D;
  --shadow: none;
  --radius: 18px;
  --maxw: 1140px;
  --glass-white: rgba(255, 255, 255, 0.05);
  --glass-green: rgba(207, 224, 180, 0.1);
  --glass-blur: blur(4px);
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

html.has-wood-bg {
  background-color: var(--cream);
  background-repeat: repeat;
  background-size: 1024px 1024px;
  background-position: center top;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: transparent;
  animation: pageFadeIn 0.5s ease both;
}

html.page-leaving body {
  opacity: 0;
  transition: opacity 0.22s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.15;
  color: var(--green-900);
}

a {
  color: var(--green-700);
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(78, 122, 47, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(28, 45, 12, 0.22);
  overflow-x: clip;
}

.site-header .container.header-inner {
  position: relative;
}

.site-header .container {
  max-width: min(var(--maxw), 100%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  height: 116px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--green-900);
}

.brand img {
  height: 108px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
}

.brand strong {
  display: none;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.7vw, 6px);
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}

.main-nav a {
  position: relative;
  padding: 9px clamp(8px, 1.15vw, 16px);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.84rem, 1.35vw, 1rem);
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 1 auto;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.main-nav a.active {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.header-order-cta,
.header-map-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 8px);
  padding: 9px clamp(8px, 1vw, 12px);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  line-height: 1.25;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.18s ease, filter 0.18s ease;
}

.header-order-cta {
  grid-column: 3;
}

.header-map-cta {
  grid-column: 4;
}

.header-order-cta svg {
  width: clamp(28px, 3.2vw, 35px);
  height: clamp(28px, 3.2vw, 35px);
  flex: none;
  animation: headerOrderPulse 1.1s ease-in-out infinite;
  transform-origin: center;
}

.header-map-cta svg {
  width: auto;
  height: clamp(28px, 3.2vw, 35px);
  flex: none;
}

.header-order-cta:hover,
.header-map-cta:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  filter: brightness(1.08);
}

@keyframes headerOrderPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-order-cta svg {
    animation: none;
  }
}

.header-map-cta {
  padding: 9px clamp(8px, 1vw, 12px);
}

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

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(245, 130, 32, 0.35);
}

.btn-primary:hover {
  background: #dc6f12;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-700);
  border-color: var(--green-500);
}

.btn-outline:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ---------- Hero banner (ana sayfa) ---------- */
.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  height: clamp(180px, 28vw, 300px);
  overflow: hidden;
  line-height: 0;
  margin-bottom: 0;
}

.hero-banner img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px) 0;
}

.hero-bg {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  top: 50%;
  width: min(38vw, 500px);
  height: min(52vh, 430px);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 63, 24, 0.1), rgba(44, 63, 24, 0.26));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(48vw, 640px);
  max-width: 640px;
  margin-left: max(20px, calc((100vw - var(--maxw)) / 2 + 20px));
  margin-right: auto;
  padding: clamp(28px, 5vw, 42px);
  border-radius: 28px;
  background: rgba(63, 94, 37, 0.55);
  backdrop-filter: var(--glass-blur);
  box-shadow: none;
  border: none;
}

.hero .eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 16px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  margin-bottom: 28px;
  max-width: 540px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

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

.hero--text-only {
  min-height: auto !important;
  justify-content: center;
  padding: clamp(52px, 8vw, 72px) 0;
}

.hero--text-only .hero-inner {
  width: min(92vw, 720px);
  max-width: 720px;
  margin: 0 auto;
}

.hero--home {
  position: relative;
  z-index: 2;
  min-height: auto;
  padding: 0 0 clamp(48px, 7vw, 72px);
  margin-top: 0;
}

.hero--home .hero-inner {
  width: min(92vw, 640px);
  max-width: 640px;
  margin: 0 auto;
  background: transparent;
  backdrop-filter: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}

.hero--home .hero-inner h1,
.hero--home .hero-inner > p {
  color: var(--green-900);
  text-shadow: none;
}

/* Ana sayfa: hero altındaki ilk bölüm — yeşil cam yalnızca kartlarda */
.hero--home + .section .section-head,
.hero--home + .section .card.feature {
  background: rgba(63, 94, 37, 0.55);
  backdrop-filter: var(--glass-blur);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(48px, 8vw, 88px) 0;
  background: transparent;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(28px, 5vw, 48px);
  padding: clamp(20px, 4vw, 28px);
  border-radius: var(--radius);
  background: var(--glass-white);
  backdrop-filter: var(--glass-blur);
  box-shadow: none;
  border: none;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero--home + .section .section-head .eyebrow {
  color: var(--accent);
  filter: brightness(1.35) saturate(1.2);
  text-shadow:
    0 0 10px rgb(255, 255, 255),
    0 0 22px rgb(255, 255, 255),
    0 0 40px rgb(255, 255, 255);
}

.section-head h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}

/* Ana içerik açıklama metinleri (header/footer/qr-menu hariç) */
main .feature p,
main .split-body p,
main .info-card p {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

main .feature p {
  font-size: 1.05rem;
}

main .split-body p {
  font-size: 1.06rem;
}

main .info-card p {
  font-size: 1.02rem;
}

.section-alt {
  background: transparent;
  border: none;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--glass-white);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  box-shadow: none;
  overflow: hidden;
  border: none;
  transition: transform 0.18s ease;
}

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

.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card:not(a):hover {
  transform: none;
  box-shadow: none;
}

.card:not(a):hover .card-img img {
  transform: none;
}

.card-body {
  padding: 20px 22px 24px;
}

.card-body h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.5;
}

.feature {
  text-align: center;
  padding: 28px 22px;
}

.feature .ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-200);
  font-size: 1.9rem;
}

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

.feature h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 4 / 3;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-body h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 16px;
}

.split-body {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--glass-green);
  backdrop-filter: var(--glass-blur);
  box-shadow: none;
  border: none;
}

.split-body p {
  color: var(--muted);
  margin-bottom: 14px;
}

.split-body strong {
  color: var(--accent);
  font-size: 1.08em;
  font-weight: 800;
}

.split.reverse .split-media {
  order: 2;
}

/* ---------- Info / contact ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--glass-white);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
  border: none;
}

.info-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card p,
.info-card a {
  color: var(--muted);
  text-decoration: none;
  word-break: break-word;
}

.info-card a:hover {
  color: var(--green-700);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.order-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.order-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 54px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  transition: filter 0.16s ease;
  animation: orderPlatformPulse 1.8s ease-in-out infinite;
}

.order-platform:nth-child(1) {
  animation-delay: 0s;
}

.order-platform:nth-child(2) {
  animation-delay: 0.35s;
}

.order-platform:nth-child(3) {
  animation-delay: 0.7s;
}

.order-platform:hover {
  filter: brightness(1.05);
}

@keyframes orderPlatformPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-platform {
    animation: none;
  }
}

.order-platform img {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.order-platform img[alt="Getir"] {
  height: 70px;
  max-width: 148px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  border: none;
  margin-top: 28px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Social / WhatsApp icon ---------- */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-600);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.16s ease, transform 0.16s ease;
}

.info-card .social-btn,
.info-card .social-btn:hover {
  color: #fff;
}

.social-btn.wa-link,
.social-btn.wa-link .wa-icon,
.social-btn .ic {
  color: #fff;
  fill: #fff;
}

.social-btn:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.social-btn .ic {
  width: 20px;
  height: 20px;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(40, 51, 26, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.16s ease, background 0.16s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  background: var(--green-700);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- Footer ---------- */
.payment-ticker {
  padding: 18px 0;
  background: none;
}

.payment-ticker-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.payment-ticker-track img {
  height: clamp(40px, 5vw, 58px);
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.payment-ticker-track img[alt="MetropolCard"],
.payment-ticker-track img[alt="Setcard"],
.payment-ticker-track img[alt="Multinet"] {
  height: clamp(52px, 8vw, 78px);
  max-width: 210px;
}

.site-footer {
  background: rgba(78, 122, 47, 0.96);
  color: #eef8e5;
  padding: 48px 0 24px;
  box-shadow: 0 -8px 22px rgba(28, 45, 12, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer h4 {
  font-family: "Baloo 2", sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 76px;
  width: auto;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list a:not(.footer-contact-link) {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.footer-list a:not(.footer-contact-link):hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.footer-hours {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-contact-link svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: currentColor;
}

.footer-contact-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  filter: brightness(1.08);
}

.footer-list li:last-child .footer-contact-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.footer-platforms {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 48px;
  padding: 0;
  background: none;
}

.footer-platforms img {
  height: 40px;
  width: auto;
  max-width: 130px;
  min-height: 40px;
  object-fit: contain;
  display: block;
}

.footer-platforms img[alt="Getir"] {
  height: 70px;
  max-width: 148px;
  min-height: 48px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Responsive ---------- */
@media (min-width: 761px) and (max-width: 1020px) {
  .brand img {
    height: clamp(88px, 10vw, 108px);
  }
}

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

  .header-inner {
    grid-template-columns: auto 1fr auto auto auto;
  }

  .header-order-cta {
    grid-column: 3;
    font-size: clamp(0.78rem, 3.2vw, 0.92rem);
    gap: 6px;
    padding: 8px 10px;
  }

  .header-order-cta svg {
    width: 30px;
    height: 30px;
  }

  .header-map-cta {
    grid-column: 4;
    padding: 8px 10px;
  }

  .header-map-cta svg {
    height: 30px;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 116px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(78, 122, 47, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 16px 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

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

  .split.reverse .split-media {
    order: 0;
  }

  .hero {
    min-height: auto !important;
    flex-direction: column;
    gap: 16px;
    padding: 28px 0 46px;
  }

  .hero-bg {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: calc(100% - 40px);
    height: 220px;
    transform: none;
    margin: 0 auto;
    z-index: 1;
    border-radius: 24px;
    order: 1;
  }

  .hero-inner {
    width: auto;
    max-width: none;
    margin: 0 20px;
    z-index: 2;
    order: 2;
  }

  .hero--text-only .hero-inner {
    margin: 0 20px;
  }

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