:root {
  --page: #eeedea;
  --header-footer: #cfccc5;
  --card-contrast: #cfccc5;
  --ink: #2f2f2f;
  --muted: #555555;
  --line: rgba(47, 47, 47, 0.18);
  --shadow: rgba(0, 0, 0, 0.16);
  --card: #eeedea;
  --display-font: "Cinzel", "Copperplate Gothic Bold", Copperplate, "Bookman Old Style", serif;
  --body-font: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

a:hover,
a:focus-visible {
  color: #111111;
  border-color: #111111;
}

.page-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
header.site-header {
  position: relative;
  background: var(--header-footer);
  padding-bottom: 16px;
}

.hero-logo-wrap {
  position: relative;
  width: 50%;
  margin: 0 auto;
}

.hero-logo-link {
  display: block;
}

.hero-logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-tagline-links {
  position: absolute;
  inset: 0;
}

.hero-tagline-link {
  position: absolute;
  top: 81%;
  height: 9%;
}

.hero-tagline-link--glass { left: 18.1%; width: 20.6%; }
.hero-tagline-link--woodwork { left: 41.7%; width: 11.4%; }
.hero-tagline-link--art { left: 56.75%; width: 2.4%; }
.hero-tagline-link--organization { left: 62.85%; width: 13.85%; }

.hero-tagline-link:hover {
  background: rgba(47, 47, 47, 0.08);
  border-radius: 3px;
}

@media (max-width: 640px) {
  header.site-header {
    padding-top: 60px;
  }

  .hero-logo-wrap {
    width: 82%;
    margin: 0 auto;
  }
}

.menu-toggle {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 20;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 6px 16px var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
}

nav.site-nav {
  position: absolute;
  top: 56px;
  left: 14px;
  z-index: 20;
  display: none;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 13px 26px var(--shadow);
  min-width: 168px;
  padding: 6px 0;
  font-size: 15px;
  letter-spacing: 0.02em;
}

nav.site-nav.is-open {
  display: flex;
}

nav.site-nav > a,
nav.site-nav .nav-dropdown > button {
  font-family: var(--display-font);
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  text-align: left;
  padding: 8px 16px;
  display: block;
  width: 100%;
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  background: var(--card-contrast);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  display: block;
  padding: 6px 16px 6px 27px;
  white-space: nowrap;
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 700;
}

.nav-dropdown-menu a:hover {
  background: var(--page);
}

.copper-bar {
  height: 11px;
  margin-top: 16px;
  background-image: url('/images/site/divider-copper.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 8px var(--shadow);
}

.copper-bar--top {
  margin-top: 0;
}

/* Section headings */
.section-heading {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(20px, 2.4vw, 26px);
  text-align: left;
  margin: 0 0 18px;
}

section {
  padding: 45px 0;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 21px var(--shadow);
  border: 1px solid var(--line);
}

.category-card-link {
  display: block;
}

.category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.category-card span {
  display: block;
  text-align: center;
  padding: 11px 6px;
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(0.01em, 0.5vw, 0.06em);
  font-size: clamp(11px, 3vw, 17px);
  white-space: normal;
}

.category-card-cta {
  display: block;
  text-align: center;
  padding: 9px 6px 11px;
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--muted);
}

.category-card-cta:hover {
  color: var(--ink);
}

@media (max-width: 340px) {
  .category-card span {
    font-size: 12.5px;
    letter-spacing: 0.02em;
    padding: 11px 3px;
  }
}

/* Intro copy above galleries */
.categories-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* Story */
.story-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "photo title" "photo text";
  align-items: center;
  column-gap: 35px;
  row-gap: 0;
}

.story-title {
  grid-area: title;
  margin: 0 0 13px;
}

.story-photo {
  grid-area: photo;
  flex: 0 0 auto;
  width: clamp(160px, 26vw, 224px);
  border-radius: 13px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 22px var(--shadow);
  border: 3px solid #ffffff;
}

.story-text {
  grid-area: text;
}

.story-text p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 11px;
}

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

@media (max-width: 900px) {
  .story-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "photo" "text";
    justify-items: start;
    row-gap: 16px;
  }

  .story-title,
  .story-text {
    text-align: left;
  }
}

/* Best sellers */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.product-card {
  background: var(--card);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 21px var(--shadow);
  border: 1px solid var(--line);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-info {
  padding: 11px 13px 14px;
}

.product-info .product-name {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 5px;
}

.product-info .product-price {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

/* Custom pieces */
.custom-pieces {
  background: var(--card-contrast);
}

.custom-pieces-layout {
  display: flex;
  align-items: center;
  gap: 35px;
}

.custom-pieces-photo {
  flex: 0 0 auto;
  width: clamp(160px, 26vw, 224px);
  border-radius: 13px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 22px var(--shadow);
  border: 3px solid #ffffff;
}

.custom-pieces-text {
  flex: 1 1 auto;
}

.custom-pieces-text .section-heading { margin-bottom: 13px; }

.custom-pieces-text p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.custom-pieces-btn {
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 10px 19px;
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--ink);
  background: #ffffff;
}

.custom-pieces-btn:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .custom-pieces-layout { flex-direction: column; text-align: center; }
}

/* Testimonials */
.testimonial-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.testimonial-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(360px, 82vw);
  background: var(--card-contrast);
  border-radius: 11px;
  padding: 21px 22px;
  box-shadow: 0 6px 16px var(--shadow);
  border: 1px solid var(--line);
}

.testimonial-card p.quote {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
  font-style: italic;
}

.testimonial-card p.attribution {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Footer */
footer.site-footer {
  padding: 24px 0 32px;
  background: var(--header-footer);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 38px;
  height: auto;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-family: var(--display-font);
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 11px;
  align-items: center;
}

.footer-social img {
  width: 21px;
  height: 21px;
  display: block;
}

/* Breadcrumb (subpages) */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  padding-top: 19px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: #111111;
}

/* Subpage hero */
.subpage-hero {
  text-align: center;
  padding: 0 0 10px;
}

.subpage-hero h1,
.subpage-hero h2 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 11px;
}

.subpage-hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Coming soon placeholder */
.coming-soon-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: 0 8px 21px var(--shadow);
  padding: 38px 26px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.coming-soon-box h2 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 10px;
}

.coming-soon-box p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.coming-soon-box .btn-back {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 19px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: #ffffff;
}

.coming-soon-box .btn-back:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* Organization before/after gallery */

/* Generic scroll/carousel wrapper + arrow, reused by testimonials, product galleries, and the organization carousel */
.scroll-wrap {
  position: relative;
}

.scroll-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 6px 16px var(--shadow);
  transition: background 150ms ease;
  flex: 0 0 auto;
}

.scroll-arrow:hover {
  background: #ffffff;
}

.scroll-arrow--prev { left: -8px; }
.scroll-arrow--next { right: -8px; }

@media (max-width: 640px) {
  .scroll-arrow--prev { left: 0; }
  .scroll-arrow--next { right: 0; }
}

/* Organization single-room carousel */
.org-carousel-wrap {
  max-width: 1000px;
  margin: 32px auto 0;
}

.org-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.org-carousel-nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90px;
}

.org-carousel-label {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-align: center;
  color: var(--muted);
  min-height: 28px;
  cursor: pointer;
}

.org-carousel-label:hover {
  color: var(--ink);
}

.org-carousel .scroll-arrow {
  position: static;
  transform: none;
}

.org-room-display {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 640px) {
  .org-carousel {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .org-room-display {
    order: 1;
    flex: 1 1 100%;
  }

  .org-carousel-nav--prev {
    order: 2;
  }

  .org-carousel-nav--next {
    order: 3;
  }

  .org-carousel-nav {
    width: auto;
    flex-direction: row;
  }

  .org-carousel-label {
    font-size: 11px;
  }
}

.org-pitch {
  margin: 0;
}

.org-pitch h1 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(26px, 4vw, 40px);
  text-align: center;
  margin: 0 0 16px;
}

.org-pitch p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 13px;
}

.org-pitch .org-cta {
  font-weight: 700;
}

.org-contact-btn {
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 10px 19px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: #ffffff;
  text-align: center;
}

.org-contact-btn:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.org-plain-cta {
  text-align: center;
  margin: 45px 0 0;
}

.org-plain-cta h2 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 0 0 10px;
}

.org-plain-cta p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.org-book-teaser {
  margin: 45px 0 0;
  background: #8e5b42;
  border-radius: 11px;
  box-shadow: 0 8px 21px var(--shadow);
  padding: 32px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.org-book-teaser-text {
  flex: 1 1 auto;
}

.org-book-teaser-figure {
  flex: 0 0 auto;
  margin: 0;
}

.org-book-teaser-figure img {
  display: block;
  width: 104px;
  height: auto;
  border-radius: 6px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.org-book-teaser h2 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 0 0 16px;
  color: #ffffff;
}

.org-book-teaser p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 13px;
  color: #f5ede6;
}

.org-book-teaser ul {
  margin: 0;
  padding-left: 18px;
}

.org-book-teaser li {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 6px;
  color: #f5ede6;
}

@media (max-width: 640px) {
  .org-book-teaser {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 26px 19px;
  }

  .org-book-teaser ul {
    text-align: left;
  }
}

.org-room {
  display: none;
  max-width: 620px;
  margin: 0 auto;
}

.org-room.is-active {
  display: block;
}

.org-room h2 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(17px, 2vw, 20px);
  text-align: center;
  margin: 0 0 13px;
}

.org-pair,
.org-solo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

.org-solo {
  grid-template-columns: 1fr;
  max-width: 340px;
}

.org-figure {
  margin: 0;
}

.org-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 21px var(--shadow);
  border: 3px solid #ffffff;
  cursor: zoom-in;
  transition: transform 180ms ease;
}

.org-figure img:hover {
  transform: translateY(-2px);
}

.org-figure figcaption {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 8px;
}

/* Basic product gallery (stained glass, woodwork, art) — horizontal scroll */
.stained-gallery {
  max-width: 1180px;
  margin: 10px auto 0;
  display: flex;
  gap: 21px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.stained-figure {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(220px, 42vw);
  margin: 0;
}

.stained-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 21px var(--shadow);
  border: 3px solid #ffffff;
  cursor: zoom-in;
  transition: transform 180ms ease;
}

.stained-figure img:hover {
  transform: translateY(-2px);
}

.stained-figure figcaption {
  text-align: center;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--ink);
  margin-top: 8px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 18, 16, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: min(88vw, 576px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid #ffffff;
}

.lightbox-figure figcaption {
  color: #f2f0ec;
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  margin-top: 13px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: background 150ms ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  top: 16px;
  right: 16px;
}

.lightbox-prev {
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-close, .lightbox-prev, .lightbox-next {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* About page */
.about-content {
  max-width: 780px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 32px 0 14px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.about-content .closing-line {
  font-style: italic;
  color: var(--muted);
}

.bio-block {
  overflow: auto;
}

.bio-figure {
  width: clamp(128px, 32vw, 192px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 21px var(--shadow);
  border: 3px solid #ffffff;
  margin-bottom: 13px;
}

.bio-figure--left {
  float: left;
  margin-right: 19px;
}

.bio-figure--right {
  float: right;
  margin-left: 19px;
}

@media (max-width: 640px) {
  .bio-figure {
    float: none;
    display: block;
    margin: 0 auto 13px;
  }
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.contact-form button[type="submit"] {
  font-family: var(--body-font);
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 10px 19px;
  background: var(--ink);
  color: #ffffff;
  align-self: flex-start;
  transition: background 180ms ease, color 180ms ease;
}

.contact-form button[type="submit"]:hover {
  background: #ffffff;
  color: var(--ink);
}

.form-status {
  border-radius: 6px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 19px;
}

.form-status--success {
  background: #e4efe4;
  border: 1px solid #9dbf9d;
  color: #2c4a2c;
}

.form-status--error {
  background: #f3e3e3;
  border: 1px solid #cf9f9f;
  color: #6b2c2c;
}

@media (max-width: 900px) {
  .category-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 32px 0; }
  .footer-row { flex-direction: column; }
}
