/* Dalah's Café — design system
   Palette: deep olive #334838 · warm brown #795436 · cream #F7F1E7
   · soft beige #E9DDCC · charcoal #282623 */

:root {
  --olive: #334838;
  --olive-dark: #263528;
  --brown: #795436;
  --brown-light: #9a7250;
  --cream: #F7F1E7;
  --beige: #E9DDCC;
  --charcoal: #282623;
  --white: #ffffff;
  --gold: #b08d57;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 10px rgba(40, 38, 35, .07);
  --shadow-md: 0 10px 34px rgba(40, 38, 35, .12);
  --shadow-lg: 0 24px 60px rgba(40, 38, 35, .18);
  --radius: 14px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--serif); color: var(--olive); font-weight: 600; line-height: 1.18; }

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -.01em; }
h3 { font-size: 1.35rem; }

p { max-width: 68ch; }

a { color: var(--brown); text-decoration-thickness: 1px; text-underline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}

.lede { font-size: 1.13rem; color: #4c4841; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  padding: 15px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary { background: var(--olive); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--olive-dark); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-outline:hover { background: var(--olive); color: var(--cream); }

.btn-light { background: var(--cream); color: var(--olive); }
.btn-light:hover { background: var(--white); }

.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(247,241,231,.75); }
.btn-outline-light:hover { background: rgba(247,241,231,.14); }

.btn-brown { background: var(--brown); color: var(--cream); }
.btn-brown:hover { background: #67472e; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 231, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 72, 56, .12);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--olive);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--brown); }

.nav .btn { padding: 12px 24px; font-size: .82rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero picture, .hero > img.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero picture img, .hero > img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(38, 33, 27, .68) 0%, rgba(38, 33, 27, .38) 46%, rgba(38, 33, 27, .08) 78%);
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 110px 24px; width: 100%; }
.hero-inner h1 { color: var(--cream); max-width: 13ch; text-wrap: balance; }
.hero-inner .eyebrow { color: var(--beige); }
.hero-sub { color: rgba(247, 241, 231, .93); font-size: 1.18rem; margin: 22px 0 32px; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 26px; font-size: .92rem; color: rgba(247, 241, 231, .85); letter-spacing: .02em; }
.hero-note strong { color: var(--cream); }

/* interior page hero */
.page-hero { padding: 84px 0 56px; text-align: center; }
.page-hero h1 { margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.page-hero .lede { margin: 18px auto 0; }

/* ---------- sections ---------- */

.section { padding: 88px 0; }
.section-beige { background: var(--beige); }
.section-olive { background: var(--olive); }
.section-olive h2, .section-olive h3 { color: var(--cream); }
.section-olive p { color: rgba(247, 241, 231, .88); }
.section-olive .eyebrow { color: var(--gold); }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head p { margin: 14px auto 0; }

.divider-flourish {
  width: 90px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.divider-flourish::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: .6rem;
  color: var(--gold);
  background: inherit;
}

/* ---------- category cards ---------- */

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.cat-card:hover img { transform: scale(1.05); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 26, 22, 0) 38%, rgba(30, 26, 22, .78) 100%);
}
.cat-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 1; }
.cat-card-body h3 { color: var(--cream); font-size: 1.5rem; }
.cat-card-body p { color: rgba(247, 241, 231, .88); font-size: .95rem; margin-top: 6px; }
.cat-card-body .cat-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--cream);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* text-only category card (no photo) */
.cat-card-text {
  background: var(--white);
  aspect-ratio: auto;
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.cat-card-text::after { display: none; }
.cat-card-text h3 { color: var(--olive); }
.cat-card-text p { color: #55504a; font-size: .95rem; margin-top: 8px; }

/* ---------- product cards ---------- */

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card .img-wrap { aspect-ratio: 4 / 3; overflow: hidden; }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-body h3 { font-size: 1.22rem; }
.product-card-body .desc { font-size: .93rem; color: #55504a; flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.price { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--brown); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--brown);
}
.tag.vg { background: #e2ead9; color: #3f5c33; }
.tag.gf { background: #f0e4d2; color: #8a6531; }
.tag.df { background: #e5e9ef; color: #3f5570; }

/* ---------- split (image + text) sections ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .img-side { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split .img-side img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }
.split h2 { margin-bottom: 16px; }
.split p + p { margin-top: 14px; }
.split .btn { margin-top: 26px; }
.split .btn + .btn { margin-left: 12px; }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.step .step-num {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { font-size: .93rem; color: #55504a; margin: 0 auto; }
.section-olive .step p { color: rgba(247, 241, 231, .82); }
.section-olive .step h3 { color: var(--cream); }

/* ---------- menu page ---------- */

.filter-bar {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: rgba(247, 241, 231, .95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(51, 72, 56, .1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filter-bar .wrap { display: flex; gap: 10px; flex-wrap: nowrap; }
.chip {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(51, 72, 56, .35);
  background: transparent;
  color: var(--olive);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.chip:hover { border-color: var(--olive); }
.chip.active { background: var(--olive); color: var(--cream); border-color: var(--olive); }

.menu-section { padding: 56px 0 8px; }
.menu-section > .wrap > h2 { margin-bottom: 8px; }
.menu-section .cat-note { color: #55504a; margin-bottom: 30px; max-width: 62ch; }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item h3 { font-size: 1.13rem; }
.menu-item .desc { font-size: .9rem; color: #55504a; flex: 1; }
.menu-item .modifiers { font-size: .8rem; color: var(--brown-light); font-style: italic; }
.menu-item[hidden] { display: none; }

.menu-empty { text-align: center; color: #55504a; padding: 40px 0 60px; display: none; }

/* ---------- forms ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px;
  max-width: 760px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }

label { display: block; font-size: .85rem; font-weight: 600; color: var(--olive); margin-bottom: 6px; }
label .opt { font-weight: 400; color: #8b857c; }

input, select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .96rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid rgba(51, 72, 56, .22);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(51, 72, 56, .12);
}
textarea { min-height: 120px; resize: vertical; }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: #4c4841; }
.checkbox-row input { width: auto; margin-top: 4px; }

.form-note { font-size: .85rem; color: #6b655c; }
.form-success {
  display: none;
  background: #e6efe2;
  border: 1.5px solid #a8c39a;
  color: #2f4a28;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 18px;
}
.form-error {
  display: none;
  background: #f7e5e0;
  border: 1.5px solid #d9a493;
  color: #7c3a24;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 18px;
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; box-shadow: var(--shadow-sm); margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 24px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--olive);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brown);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: #4c4841; font-size: .96rem; }
.faq-item .faq-body p + p { margin-top: 10px; }

/* ---------- testimonials ---------- */

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.quote-card blockquote { font-size: .97rem; color: #4c4841; font-style: italic; }
.quote-card cite { display: block; margin-top: 14px; font-style: normal; font-size: .86rem; font-weight: 600; color: var(--olive); }

/* ---------- gallery ---------- */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid a, .gallery-grid .g-item { border-radius: 12px; overflow: hidden; display: block; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.gallery-grid a:hover img, .gallery-grid .g-item:hover img { transform: scale(1.05); }

/* ---------- final CTA band ---------- */

.cta-band {
  position: relative;
  padding: 110px 0;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.cta-band picture { position: absolute; inset: 0; z-index: -2; }
.cta-band picture img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(35, 30, 24, .62); }
.cta-band h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(247, 241, 231, .9); margin: 16px auto 32px; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- newsletter ---------- */

.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input { flex: 1; }
.newsletter-form .btn { padding: 12px 26px; flex: 0 0 auto; }

/* ---------- footer ---------- */

.site-footer { background: var(--olive); color: rgba(247, 241, 231, .85); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 50px; }
.site-footer h4 { color: var(--cream); font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(247, 241, 231, .85); text-decoration: none; font-size: .94rem; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-brand img { height: 66px; width: auto; filter: brightness(0) invert(.94); margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 30ch; }
.footer-contact li { font-size: .94rem; }
.footer-bottom {
  border-top: 1px solid rgba(247, 241, 231, .18);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(247, 241, 231, .6);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom a { font-size: .82rem; color: rgba(247, 241, 231, .6); }
.powered a { color: var(--gold); font-weight: 600; }

/* ---------- mobile sticky CTA ---------- */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 241, 231, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(51, 72, 56, .14);
}
.sticky-cta .btn { width: 100%; padding: 14px; }

/* ---------- modal ---------- */

dialog.product-modal {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 520px;
  width: calc(100vw - 40px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
dialog.product-modal::backdrop { background: rgba(30, 26, 22, .55); backdrop-filter: blur(3px); }
.modal-body { padding: 34px; }
.modal-body h3 { font-size: 1.5rem; margin-bottom: 4px; }
.modal-body .price { display: block; margin-bottom: 12px; }
.modal-body .desc { color: #4c4841; font-size: .96rem; }
.modal-body .modifiers { margin-top: 12px; font-size: .88rem; color: var(--brown-light); font-style: italic; }
.modal-body .tags { margin-top: 14px; }
.modal-note { margin-top: 18px; padding: 14px 16px; background: var(--cream); border-radius: 10px; font-size: .87rem; color: #55504a; }
.modal-ctas { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.modal-ctas .btn { flex: 1; padding: 13px 18px; font-size: .82rem; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--beige);
  color: var(--olive);
  font-size: 1.15rem;
  cursor: pointer;
}

/* ---------- reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .card-grid, .product-grid, .menu-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(51, 72, 56, .14);
    box-shadow: var(--shadow-md);
    padding: 10px 0 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 28px; border-bottom: none; font-size: 1rem; }
  .nav-links a[aria-current="page"] { color: var(--brown); }
  .nav .btn-nav-order { display: none; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.flip .img-side { order: -1; }
  .hero { min-height: 74vh; }
  .hero-inner { padding: 90px 24px; }
  .section { padding: 64px 0; }
  .sticky-cta { display: block; }
  body { padding-bottom: 74px; }
  .form-card { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-bar { top: 76px; }
}

@media (max-width: 560px) {
  .card-grid, .product-grid, .menu-grid, .quote-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .newsletter-form { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .brand img { height: 44px; }
}
