:root {
  --bg: #ffffff;
  --panel: #fffdf8;
  --ink: #1d1710;
  --muted: #7a6d57;
  --line: #e5dccb;
  --gold: #b88a2f;
  --gold-bright: #c99b43;
  --gold-deep: #7b591d;
  --shadow: 0 22px 70px rgba(70, 51, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  background:
    linear-gradient(180deg, rgba(184, 138, 47, 0.08), transparent 300px),
    linear-gradient(90deg, rgba(184, 138, 47, 0.05), transparent 24%, transparent 76%, rgba(184, 138, 47, 0.05)),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea,
select,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(184, 138, 47, 0.24);
  box-shadow: 0 12px 34px rgba(70, 51, 20, 0.08);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  left: 0;
  padding: 14px clamp(18px, 4vw, 48px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 160px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #f2d793, #b4832c);
  border-radius: 8px;
  color: #171008;
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: #7a6d57;
  font-size: 11px;
  margin-top: 3px;
}

.topbar nav {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(10px, 1vw, 18px);
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
  padding: 2px 0;
  scrollbar-width: none;
}

.topbar nav::-webkit-scrollbar {
  display: none;
}

.topbar nav a,
.topbar nav button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #4a3a20;
  flex: 0 0 auto;
  font-size: clamp(14px, 1.08vw, 15.5px);
  font-weight: 720;
  line-height: 1;
  padding: 9px 10px;
  transition: background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  background: #fbf4e6;
  color: #181008;
}

.nav-cta {
  background: #1d1710 !important;
  color: #fff !important;
}

.section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 4vw, 48px);
}

.eyebrow {
  color: var(--gold-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-showcase-page {
  display: grid;
  gap: clamp(30px, 4.6vw, 58px);
  padding: clamp(24px, 4vw, 42px) clamp(18px, 4vw, 48px) clamp(42px, 6vw, 72px);
}

.product-showcase-section {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  scroll-margin-top: 90px;
}

.product-showcase-heading {
  align-items: end;
  border-bottom: 1px solid rgba(184, 138, 47, 0.18);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 14px;
}

.product-showcase-heading div {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  min-width: 0;
}

.product-showcase-heading h2 {
  color: #2a2115;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 0.98;
  margin: 0;
}

.product-showcase-heading p {
  color: #75684f;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 820px;
}

.category-refresh-button {
  align-items: center;
  background: linear-gradient(135deg, #f1d58b, #b88a2f);
  border: 1px solid rgba(184, 138, 47, 0.34);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(112, 82, 28, 0.18);
  color: #181008;
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: filter 160ms ease, transform 160ms ease;
  width: 42px;
}

.category-refresh-button:hover,
.category-refresh-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.product-showcase-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-product-card {
  align-items: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(184, 138, 47, 0.1), transparent 38%),
    linear-gradient(180deg, #fffdfa, #fbf6ec);
  border: 1px solid rgba(184, 138, 47, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(70, 51, 20, 0.1);
  display: flex;
  justify-content: center;
  min-height: 292px;
  overflow: hidden;
  padding: 18px;
}

.showcase-product-card img {
  display: block;
  height: 100%;
  max-height: 252px;
  object-fit: contain;
  width: 100%;
}

.studio-about-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.98)),
    #fffdf8;
  border-bottom: 1px solid rgba(184, 138, 47, 0.18);
  border-top: 1px solid rgba(184, 138, 47, 0.2);
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  grid-template-columns: 1fr;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 4vw, 48px);
  scroll-margin-top: 90px;
}

.studio-about-copy {
  align-content: start;
  display: grid;
  gap: 16px;
  justify-items: center;
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.studio-about-copy span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.studio-about-copy h2 {
  color: #1d1710;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1;
  margin: 0;
}

.studio-about-copy p {
  color: #75684f;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 780px;
}

.studio-highlight-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.studio-highlight-card {
  background: #ffffff;
  border: 1px solid rgba(184, 138, 47, 0.2);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(70, 51, 20, 0.1);
  display: grid;
  grid-template-rows: minmax(0, 0.9fr) auto;
  overflow: hidden;
}

.studio-highlight-card img {
  aspect-ratio: 16 / 11;
  background: linear-gradient(180deg, #fffdf8, #fbf4e7);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.studio-highlight-card div {
  border-top: 1px solid rgba(184, 138, 47, 0.16);
  display: grid;
  gap: 9px;
  padding: 16px;
}

.studio-highlight-card h3 {
  color: #2a2115;
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
}

.studio-highlight-card p {
  color: #75684f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.home-news-section {
  background: #ffffff;
  padding-top: clamp(30px, 4vw, 46px);
}

.news-home-shell {
  margin: 0 auto;
  max-width: 1240px;
}

.news-feature-section,
.news-channel-section {
  display: grid;
  gap: 18px;
}

.news-feature-header,
.news-channel-header {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}

.news-feature-header .eyebrow {
  margin-bottom: 8px;
}

.news-feature-copy,
.news-channel-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.news-feature-heading-row,
.news-channel-copy {
  align-items: end;
  column-gap: 18px;
  display: grid;
  grid-template-columns: auto minmax(220px, 460px);
}

.news-feature-header h2,
.news-channel-header span {
  color: #1d1710;
  line-height: 1.02;
  margin: 0;
}

.news-feature-header h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.news-feature-heading-row p,
.news-channel-copy p {
  color: #75684f;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 3px;
  max-width: 460px;
}

.news-section-link {
  align-items: center;
  color: var(--gold-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 6px;
  white-space: nowrap;
}

.news-feature-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.78fr);
}

.news-feature-stack {
  display: grid;
  gap: 16px;
  grid-auto-rows: auto;
}

.news-feature-stack.is-balanced {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.news-feature-stack.is-balanced .news-image-card {
  height: 100%;
}

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

.archive-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-image-card {
  background: #ffffff;
  border: 1px solid rgba(184, 138, 47, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: inherit;
  display: grid;
  min-height: 0;
  overflow: hidden;
}

.news-image-card-media {
  background: #fbf4e7;
  overflow: hidden;
  position: relative;
}

.news-image-card-media::after {
  background: linear-gradient(180deg, rgba(58, 42, 13, 0.12) 0%, rgba(58, 42, 13, 0.02) 55%, rgba(58, 42, 13, 0.08) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.news-image-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.news-image-card:hover img {
  transform: scale(1.02);
}

.news-image-card.lead .news-image-card-media {
  aspect-ratio: 16 / 11;
  min-height: 560px;
}

.news-image-card.stack .news-image-card-media {
  aspect-ratio: 16 / 9;
  min-height: 176px;
}

.news-image-card.grid .news-image-card-media {
  aspect-ratio: 4 / 3;
  min-height: 238px;
}

.news-image-card-panel {
  display: flex;
  inset: 12px 12px auto;
  max-width: calc(100% - 24px);
  position: absolute;
  z-index: 1;
}

.news-image-card.lead .news-image-card-panel {
  inset: 16px 16px auto;
  max-width: calc(100% - 32px);
}

.news-image-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.news-image-card-meta span {
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 138, 47, 0.24);
  border-radius: 999px;
  color: #7b591d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  padding: 6px 8px;
  text-transform: uppercase;
}

.news-image-card-body {
  display: grid;
  gap: 8px;
  padding: 13px 14px 16px;
}

.news-image-card.lead .news-image-card-body {
  padding: 16px 16px 18px;
}

.news-image-card h2,
.news-image-card h3 {
  color: #1d1710;
  display: block;
  line-height: 1.18;
  margin: 0;
  overflow: visible;
  text-shadow: none;
}

.news-image-card.lead h2 {
  font-size: clamp(26px, 2.6vw, 35px);
}

.news-image-card.stack h3 {
  font-size: clamp(18px, 1.38vw, 21px);
}

.news-image-card.grid h3 {
  font-size: clamp(18px, 1.28vw, 20px);
}

.news-image-card p {
  color: #75684f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.news-empty-card {
  background: #ffffff;
  border: 1px solid rgba(184, 138, 47, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 22px;
}

.news-empty-card strong {
  font-size: 20px;
}

.news-empty-card p {
  color: #75684f;
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
}

.catalog-hero {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(44px, 7vw, 84px) clamp(18px, 4vw, 48px);
}

.compact-hero {
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  border-bottom: 1px solid rgba(184, 138, 47, 0.18);
}

.catalog-hero h1,
.gonews-article-header h1,
.product-detail-hero h1 {
  color: #1d1710;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  margin: 8px 0 0;
  max-width: 980px;
}

.catalog-hero p,
.product-detail-hero p {
  color: #75684f;
  font-size: 17px;
  line-height: 1.65;
  max-width: 780px;
}

.dow-product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

.dow-product-card {
  background: #ffffff;
  border: 1px solid rgba(184, 138, 47, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  overflow: hidden;
}

.dow-product-card-image {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #fbf4e7;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
}

.dow-product-card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dow-product-card div:last-child {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.dow-product-card span,
.system-badge {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dow-product-card h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}

.dow-product-card p {
  color: #75684f;
  line-height: 1.55;
  margin: 0;
}

.product-detail-hero {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 58px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 4vw, 48px);
}

.product-visual-large {
  align-items: center;
  background: linear-gradient(180deg, #fffdfa, #fbf4e7);
  border: 1px solid rgba(184, 138, 47, 0.2);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.product-visual-large img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-visual-large span {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(184, 138, 47, 0.22);
  border-radius: 999px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 850;
  left: 18px;
  padding: 7px 10px;
  position: absolute;
  top: 18px;
}

.back-link {
  color: var(--gold-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-option-preview {
  background: #fffdf8;
  border: 1px solid rgba(184, 138, 47, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding: 18px;
}

.hero-option-preview h2 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}

.hero-option-preview p {
  font-size: 14px;
  margin: 0;
}

.product-content-shell {
  margin: 0 auto;
  max-width: 980px;
}

.gonews-article-shell {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(38px, 6vw, 80px) clamp(18px, 4vw, 48px);
}

.gonews-article-header {
  display: grid;
  gap: 14px;
}

.gonews-article-kicker,
.gonews-article-meta {
  color: var(--gold-deep);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 820;
  gap: 10px;
}

.gonews-article-figure {
  background: #fbf4e7;
  border: 1px solid rgba(184, 138, 47, 0.18);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.gonews-article-figure img {
  display: block;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.gonews-editor-note {
  background: #fffdf8;
  border: 1px solid rgba(184, 138, 47, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.gonews-editor-note p {
  color: #75684f;
  line-height: 1.65;
  margin: 0;
}

.gonews-article-body,
.legacy-article-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #334039;
  font-size: 16px;
  line-height: 1.75;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
}

.gonews-article-body img,
.legacy-article-content img {
  height: auto;
  max-width: 100%;
}

.gonews-article-body a,
.legacy-article-content a,
.gonews-source-footer a {
  color: #176e57;
  font-weight: 760;
}

.gonews-source-footer {
  font-size: 14px;
}

.pagination-nav {
  color: var(--gold-deep);
  display: flex;
  flex-wrap: wrap;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
}

.site-footer {
  align-items: center;
  background: #1d1710;
  color: #fffaf0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 48px);
}

.site-footer span {
  color: rgba(255, 250, 240, 0.72);
}

@media (max-width: 1400px) {
  .topbar {
    grid-template-columns: minmax(150px, auto) minmax(0, 1fr);
    padding-left: clamp(14px, 2vw, 28px);
    padding-right: clamp(14px, 2vw, 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }
}

@media (max-width: 1120px) {
  .topbar,
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .topbar nav {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
  }

  .news-feature-grid {
    grid-template-columns: 1fr;
  }

  .news-feature-heading-row,
  .news-channel-copy {
    grid-template-columns: 1fr;
  }

  .product-showcase-grid,
  .studio-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-news-grid,
  .dow-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .topbar .nav-cta {
    display: none;
  }

  .section,
  .product-showcase-page,
  .catalog-hero,
  .product-detail-hero,
  .gonews-article-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-showcase-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase-heading {
    align-items: start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
  }

  .product-showcase-heading h2 {
    font-size: 34px;
  }

  .product-showcase-heading p {
    font-size: 13px;
  }

  .showcase-product-card {
    min-height: 250px;
    padding: 12px;
  }

  .showcase-product-card img {
    max-height: 170px;
  }

  .studio-highlight-grid,
  .archive-news-grid,
  .dow-product-grid,
  .news-channel-grid,
  .news-feature-stack {
    grid-template-columns: 1fr;
  }

  .news-feature-header h2 {
    font-size: 28px;
  }

  .news-image-card.lead .news-image-card-media,
  .news-image-card.grid .news-image-card-media,
  .news-image-card.stack .news-image-card-media {
    min-height: 220px;
  }

  .news-image-card.lead .news-image-card-panel,
  .news-image-card-panel {
    inset: 10px 10px auto;
    max-width: calc(100% - 20px);
  }

  .news-image-card-body,
  .news-image-card.lead .news-image-card-body {
    padding: 12px 12px 14px;
  }

  .news-image-card.lead h2,
  .news-image-card.grid h3,
  .news-image-card.stack h3 {
    font-size: 21px;
  }

  .product-visual-large {
    min-height: 320px;
  }
}
