:root {
  --ink: #242321;
  --muted: #6d6a64;
  --paper: #f8f7f3;
  --soft: #ece8df;
  --line: #d7d1c4;
  --taupe: #9c8f7d;
  --sage: #7f8f84;
  --charcoal: #343535;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto auto;
  background: var(--white);
  border-bottom: 1px solid rgba(36, 35, 33, 0.08);
  box-shadow: 0 1px 0 rgba(36, 35, 33, 0.03);
  backdrop-filter: blur(12px);
}

.site-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--charcoal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.site-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
}

.site-promo a {
  color: #f6e7c7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.utility-links,
.utility-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.utility-links a:hover,
.utility-icons a:hover {
  color: var(--white);
}

.utility-icons .social-icon {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
}

.utility-icons .social-icon svg {
  width: 18px;
  height: 18px;
}

.site-nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
}

.catalog-page {
  padding-top: 132px;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 56px) 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

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

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.catalog-controls {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-left: auto;
}

.search-control,
.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-control {
  min-width: auto;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
}

.search-button svg {
  width: 18px;
  height: 18px;
}

.search-control.is-open input {
  width: 220px;
  opacity: 1;
  pointer-events: auto;
  margin-left: 4px;
}

.sort-control select {
  min-height: 40px;
  background: var(--white);
}

.search-control input {
  min-height: 40px;
  width: 0;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  transition: width 0.18s ease, opacity 0.18s ease, padding 0.18s ease;
  overflow: hidden;
}

.category-pill {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.category-pill.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

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

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-toggle svg {
  width: 16px;
  height: 16px;
}

.site-menu {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-menu[hidden] {
  display: none;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.menu-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-links a:hover,
.contact-panel a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--paper);
}

.catalog-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(20px, 3vw, 34px);
  padding: 24px clamp(18px, 5vw, 56px) 44px;
  align-items: center;
}

.hero-media {
  position: relative;
  min-height: 66vh;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #d8d1c4;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  margin: 0;
  padding: 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-hero .hero-copy {
  align-self: center;
}

.catalog-copy h1 {
  max-width: 12ch;
}

.catalog-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-text {
  color: #4a4742;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .button {
  min-width: 158px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 6.8vw, 92px);
  line-height: 0.94;
  font-weight: 400;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.hero-text {
  max-width: 500px;
  color: #4a4742;
  font-size: 20px;
  line-height: 1.55;
}

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

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

.button.secondary {
  background: rgba(248, 247, 243, 0.72);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-band div {
  min-height: 150px;
  padding: 32px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span {
  display: block;
  margin-bottom: 18px;
  color: var(--taupe);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.intro-band p {
  max-width: 330px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.35;
}

.collection-band {
  background: #fbfaf7;
}

.collection-band a {
  margin-top: 16px;
}

.section,
.split-section,
.wholesale {
  padding: 84px clamp(18px, 5vw, 56px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 780px;
}

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

.catalog-section .section-heading {
  margin-bottom: 22px;
}

.collection-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-section .social-grid {
  justify-content: flex-end;
}

.social-section .section-heading {
  margin-bottom: 0;
}

.social-section .section-heading h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.social-grid .social-icon {
  width: 52px;
  height: 52px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-icon:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon.youtube svg {
  width: 24px;
  height: 24px;
}

.social-icon.instagram svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.pinterest svg {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}

.social-icon.whatsapp svg {
  width: 23px;
  height: 23px;
}

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

.studio-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.studio-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.studio-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.product-card {
  contain: content;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.product-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper);
}

.product-info {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-meta,
.product-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-meta {
  margin-bottom: 0;
}

.product-line {
  margin-top: 0;
}

.product-info p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.product-channel {
  min-height: 20px;
}

.product-info span,
.product-info strong,
.post-item time {
  color: var(--sage);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info strong {
  color: var(--ink);
}

.amazon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.amazon-link.disabled {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.detail-link {
  display: inline-flex;
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
}

.product-page {
  padding-top: 132px;
}

.product-detail,
.product-detail-loading {
  padding: 42px clamp(18px, 5vw, 64px) 64px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.product-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.thumb-button {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.thumb-button.active {
  border-color: var(--ink);
}

.thumb-button img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0;
  font-family: Arial, sans-serif;
}

.product-price-row strong {
  font-size: 22px;
}

.product-price-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.disabled {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.listing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.listing-panel {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.listing-panel.wide {
  grid-column: 1 / -1;
}

.listing-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.bullet-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.specs-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  padding: 0;
}

.specs-panel h3 {
  margin: 0;
  padding: 26px 26px 10px;
  background: var(--white);
}

.specs-panel div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 26px;
  background: var(--white);
}

.specs-panel strong {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.specs-panel span {
  color: var(--muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  background: #efeee9;
}

.split-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.care-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.care-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
}

.care-list strong {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.care-list span {
  color: var(--muted);
  line-height: 1.5;
}

.fit {
  background: var(--white);
}

.journal {
  background: #f1f4ef;
}

.journal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 56px) 28px;
  background: linear-gradient(180deg, #faf9f5 0%, #f1f4ef 100%);
  border-bottom: 1px solid var(--line);
}

.journal-hero-copy {
  display: grid;
  gap: 10px;
}

.journal-hero h1 {
  max-width: 12ch;
}

.journal-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.journal-hero-media {
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.journal-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.journal-listing {
  padding-top: 24px;
}

.journal-page .post-grid {
  border-top: 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.post-item {
  min-height: 220px;
  padding: 32px;
  background: var(--paper);
}

.post-item.featured {
  display: grid;
  gap: 18px;
  align-content: start;
}

.post-item.lead {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 1.08fr);
  gap: 24px;
  align-items: center;
}

.post-item.lead .post-media {
  order: 2;
}

.post-item.lead .post-copy {
  order: 1;
}

.post-item.featured h3 {
  max-width: 18ch;
}

.post-media {
  display: block;
}

.post-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
}

.post-copy {
  display: grid;
  gap: 0;
}

.post-item h3 {
  margin-top: 18px;
}

.post-item p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.post-item .post-body {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.post-item.featured {
  align-content: start;
}

.post-item.featured time,
.post-item.featured h3,
.post-item.featured p,
.post-item.featured a {
  max-width: 100%;
}

.post-link {
  display: inline-flex;
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}

.post-single {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.post-single .post-image {
  aspect-ratio: 16 / 9;
}

.post-single .post-copy {
  padding-top: 4px;
}

.related-section {
  padding-top: 24px;
}

.related-grid {
  margin-top: 0;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  background: var(--white);
}

.size-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.size-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--paper);
}

.size-table th,
.size-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.size-table th {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.size-table tr:last-child td {
  border-bottom: 0;
}

.wholesale {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 40px;
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
}

.wholesale p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-panel a {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
}

.whatsapp-float {
  position: fixed;
  z-index: 12;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #1f7a47;
  color: var(--white);
  background: #25d366;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  background: var(--paper);
}

[content-visibility="auto"] {
  contain-intrinsic-size: 1px 700px;
}

.admin-body {
  min-height: 100vh;
  background: #efeee9;
  font-family: Arial, sans-serif;
}

.admin-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 44px;
  align-items: end;
  min-height: calc(100vh - 96px);
}

.admin-login h1,
.admin-topbar h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.admin-login p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.login-form,
.editor-item {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-form label,
.editor-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  font: 15px/1.4 Arial, sans-serif;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

.admin-note,
.admin-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-note strong {
  color: var(--ink);
}

.analytics-list {
  display: grid;
  gap: 16px;
}

.analytics-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.analytics-grid .metric span {
  font-size: 24px;
}

.analytics-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.analytics-table th,
.analytics-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}

.analytics-table th {
  color: var(--muted);
  text-transform: uppercase;
}

.admin-topbar,
.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.tab {
  min-height: 44px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 20px;
  color: var(--muted);
  background: var(--paper);
  font-weight: 700;
  cursor: pointer;
}

.tab:last-child {
  border-right: 0;
}

.tab.active {
  color: var(--white);
  background: var(--ink);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.metric span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.editor-list {
  display: grid;
  gap: 16px;
}

.editor-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.editor-title button {
  border: 0;
  color: #8b3b35;
  background: transparent;
  cursor: pointer;
}

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

.wide-field {
  grid-column: 1 / -1;
}

.save-button {
  margin-top: 22px;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    min-height: auto;
  }

  .site-utility {
    flex-wrap: wrap;
    min-height: auto;
    padding: 8px 18px 10px;
    overflow-x: auto;
  }

  .site-promo {
    order: 3;
    width: 100%;
    padding: 6px 0 0;
    white-space: normal;
  }

  .utility-links {
    gap: 10px;
  }

  .utility-icons {
    gap: 8px;
  }

  .site-nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    padding: 14px 0 4px;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
  }

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

  .menu-links {
    width: 100%;
    margin-left: 0;
  }

  .menu-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .menu-links a {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  .hero {
    min-height: 86vh;
  }

  .catalog-hero {
    grid-template-columns: 1fr;
    padding: 20px 18px 40px;
  }

  .hero-media {
    min-height: 56vh;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  h1 {
    font-size: 56px;
  }

  .intro-band,
  .product-detail,
  .product-grid,
  .social-grid,
  .studio-grid,
  .split-section,
  .wholesale,
  .post-grid,
  .admin-overview,
  .analytics-grid,
  .admin-login,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .post-item.lead {
    grid-template-columns: 1fr;
  }

  .post-item.lead .post-media,
  .post-item.lead .post-copy {
    order: 0;
  }

  .product-thumbs,
  .analytics-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-controls {
    margin-left: 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .search-control.is-open input {
    width: min(100%, 220px);
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

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

  .social-section {
    display: grid;
    gap: 14px;
  }

  .journal-hero {
    grid-template-columns: 1fr;
    padding-top: 98px;
  }

  .site-footer {
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 160px;
  }

  .hero-text,
  .intro-band p,
  .studio-grid p,
  .split-copy p:not(.eyebrow),
  .wholesale p:not(.eyebrow) {
    font-size: 17px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .section,
  .split-section,
  .wholesale {
    padding: 64px 18px;
  }

  .catalog-page {
    padding-top: 112px;
  }

  .product-page {
    padding-top: 112px;
  }

  .product-detail,
  .product-detail-loading {
    padding: 28px 18px 48px;
  }

  .specs-panel div {
    grid-template-columns: 1fr;
  }

  .care-list div {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
