:root {
  --ink: #15171b;
  --muted: #626a74;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dfe2e5;
  --red: #b3312c;
  --teal: #0f766e;
  --gold: #b87916;
  --blue: #254f88;
  --soft: #eef3f2;
  --navy: #1e2f45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid rgba(21, 23, 27, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.section-note,
.gallery-card p,
.service-card p,
.approved-card p,
.copy-body p,
.copy-body li {
  color: var(--muted);
}

.resource-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(21, 23, 27, 0.11);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(21, 23, 27, 0.08);
}

.resource-panel p:last-child {
  margin-bottom: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 14px;
}

.nav a,
.service-card a,
summary a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.service-card a:hover,
summary a:hover,
.footer a:hover {
  color: var(--red);
}

.hero {
  min-height: min(760px, 76svh);
  display: flex;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 70px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(12, 22, 32, 0.78), rgba(12, 22, 32, 0.44) 58%, rgba(12, 22, 32, 0.2)),
    url("/assets/gallery-web/print-2.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4cc70;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--navy);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}

.button.text-button {
  justify-content: flex-start;
  width: fit-content;
  min-height: 38px;
  margin-top: 6px;
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.proof-strip {
  scroll-margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 104px;
  padding: 22px clamp(18px, 4vw, 52px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.section {
  padding: 76px clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.home-points,
.about-section {
  background: var(--white);
}

.point-grid,
.service-grid,
.approved-grid,
.fulfillment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.point,
.service-card,
.gallery-card,
.approved-card,
.copy-panel,
.fulfillment-item,
.owner-card {
  background: var(--white);
  border: 1px solid rgba(21, 23, 27, 0.11);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(21, 23, 27, 0.08);
}

.point {
  display: flex;
  gap: 12px;
  padding: 18px;
}

.point span {
  display: block;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.services,
.approved-section,
.fulfillment-section {
  background: var(--soft);
}

.service-card,
.approved-card {
  overflow: hidden;
}

.service-card img,
.approved-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: #e5e8eb;
}

.service-card div,
.approved-card div,
.gallery-card div {
  padding: 18px;
}

.service-card a,
summary a {
  color: var(--red);
  font-weight: 700;
}

.filter-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.gallery-section {
  background: var(--paper);
}

.section-note {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 17px;
}

.filter-button {
  color: #343941;
  background: var(--white);
  border-color: var(--line);
}

.filter-button.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.gallery-count {
  margin: 16px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  background: #f7f7f5;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: #21403d;
  background: #dfeeea;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.approved-card img {
  object-fit: contain;
  padding: 18px;
}

.fulfillment-item {
  display: flex;
  gap: 12px;
  padding: 18px;
}

.fulfillment-item span {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.fulfillment-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.category-hero {
  min-height: min(640px, 68svh);
  display: flex;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 70px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.12)),
    var(--category-image);
  background-size: cover;
  background-position: center;
}

.category-hero-inner {
  width: min(760px, 100%);
}

.category-nav {
  position: sticky;
  top: 76px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: #343941;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
}

.category-nav a:first-child {
  color: var(--red);
  font-weight: 800;
}

.category-nav a.is-current {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

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

.language-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.language-grid article {
  padding: 22px;
  background: #fcfcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: start;
}

.about-layout > div:first-child {
  max-width: 860px;
}

.about-layout p {
  color: var(--muted);
  font-size: 17px;
}

.owner-card {
  padding: 20px;
}

.owner-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.owner-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #eceff2;
}

.language-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.copy-list {
  display: grid;
  gap: 14px;
}

.copy-panel {
  overflow: hidden;
  box-shadow: none;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.copy-body {
  padding: 0 20px 22px;
}

.copy-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.copy-body ul {
  margin-top: 0;
}

.copy-image {
  width: min(260px, 100%);
  max-height: 180px;
  object-fit: contain;
  margin: 0 0 18px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 56px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.contact-band h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 46px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 1050px) {
  .point-grid,
  .service-grid,
  .approved-grid,
  .fulfillment-grid,
  .point-grid.four-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .contact-band,
  .footer,
  .resource-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .proof-strip,
  .point-grid,
  .service-grid,
  .approved-grid,
  .fulfillment-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .category-nav {
    position: static;
  }

  .hero {
    min-height: 620px;
    padding-top: 56px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }
}
