:root {
  color-scheme: light;
  --ink: #111614;
  --night: #101513;
  --night-raised: #1a2420;
  --paper: #e9e3d8;
  --surface: #f8f5ee;
  --surface-alt: #d8d1c4;
  --muted: #6a6c64;
  --line: #b9b1a4;
  --acid: #d9ff4d;
  --coral: #f16c50;
  --sky: #69cbd6;
  --gold: #e0b968;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(16, 21, 19, 0.97);
  color: #f8f5ee;
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 11px 22px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 4px;
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.brand-overline,
.footer-kicker,
.section-kicker,
.filter-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-overline {
  color: var(--acid);
}

.brand-name {
  overflow: hidden;
  color: #fffdf8;
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.nav-links a {
  border-radius: 3px;
  color: #d7d8d0;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 9px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #29312d;
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta {
  min-height: 36px;
  background: var(--acid);
  color: var(--night);
  padding: 8px 12px;
  white-space: nowrap;
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.locale-switcher {
  position: relative;
  flex: 0 0 auto;
}

.locale-switcher summary {
  display: grid;
  min-width: 38px;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 3px;
  color: #fffdf8;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  list-style: none;
}

.locale-switcher summary::-webkit-details-marker {
  display: none;
}

.locale-switcher summary:hover,
.locale-switcher[open] summary {
  border-color: var(--acid);
  color: var(--acid);
}

.locale-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 166px;
  overflow: hidden;
  border: 1px solid #57625b;
  border-radius: 3px;
  background: var(--night);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.locale-menu a {
  color: #edf0e8;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 750;
}

.locale-menu a + a {
  border-top: 1px solid #354038;
}

.locale-menu a:hover,
.locale-menu a[aria-current="true"] {
  background: #28332d;
  color: var(--acid);
}

.nav-cta:hover,
.button-primary:hover,
.button-dark:hover {
  background: #fffdf8;
  color: var(--night);
  transform: translateY(-1px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
  padding: 0;
  white-space: nowrap;
}

.home-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  background: var(--night);
  color: #fffdf8;
}

.home-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px clamp(22px, 3.2vw, 46px) 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 88px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 570px;
  margin-top: 18px;
  font-size: 76px;
  line-height: 0.91;
}

.home-hero-description {
  max-width: 490px;
  margin: 20px 0 0;
  color: #e5e5dd;
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions,
.page-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button-primary {
  background: var(--acid);
  color: var(--night);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(16, 21, 19, 0.36);
  color: #fffdf8;
}

.button-outline:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--night);
  transform: translateY(-1px);
}

.home-hero-search {
  display: grid;
  max-width: 470px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-top: 1px solid #58635b;
  padding-top: 14px;
}

.guide-search {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(16, 21, 19, 0.77);
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: #e8e8df;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-hero-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--night);
  padding: 0 13px;
}

.home-hero-search button {
  min-height: 48px;
  border: 1px solid var(--acid);
  border-radius: 3px;
  background: var(--acid);
  color: var(--night);
  padding: 0 15px;
  font-size: 12px;
  font-weight: 850;
}

.home-hero-search button:hover {
  background: #fffdf8;
}

.home-hero-media {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: #26332d;
  padding: 12px;
}

.home-hero-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0c120f;
}

.home-hero-frame .image-view {
  display: grid;
  place-items: center;
}

.home-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-hero-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(16, 21, 19, 0.82);
  color: #fffdf8;
  padding: 8px 16px;
  pointer-events: none;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.home-hero-frame figcaption strong::after {
  content: " / ";
}

.home-hero-frame figcaption span {
  color: #e4e7dd;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--night);
  padding: 0 12px;
}

.search-row button,
.reset-button {
  min-height: 46px;
  border: 1px solid var(--acid);
  border-radius: 3px;
  background: var(--acid);
  color: var(--night);
  padding: 0 14px;
  font-weight: 850;
}

.search-row button:hover,
.reset-button:hover {
  background: #fffdf8;
}

.category-strip {
  display: grid;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 22px;
}

.trend-section {
  border-top: 1px solid #344039;
  border-bottom: 1px solid #344039;
  background: #213128;
  color: #fffdf8;
}

.trend-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 66px 22px 72px;
}

.trend-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 36px;
  align-items: end;
  border-bottom: 2px solid #e5e9df;
  padding-bottom: 20px;
}

.trend-copy .section-kicker {
  color: var(--acid);
}

.trend-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.trend-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 14px 0 0;
  color: #ced3c9;
  font-size: 16px;
}

.trend-controls {
  display: grid;
  gap: 10px;
}

.trend-search-field {
  display: grid;
  gap: 7px;
}

.trend-search-field span {
  color: #dfe4d9;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.trend-search-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--night);
  padding: 0 12px;
}

.trend-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.trend-refresh,
.trend-clear {
  min-height: 42px;
  border: 1px solid var(--acid);
  border-radius: 3px;
  background: var(--acid);
  color: var(--night);
  padding: 0 13px;
  font-size: 13px;
  font-weight: 850;
}

.trend-clear {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fffdf8;
}

.trend-refresh:hover:not(:disabled),
.trend-clear:hover {
  background: #fffdf8;
  border-color: #fffdf8;
  color: var(--night);
}

.trend-refresh:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.trend-status {
  margin: 0;
  color: #bdc5b8;
  font-size: 12px;
  font-weight: 750;
}

.trend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.66fr) minmax(0, 0.84fr) minmax(0, 0.84fr);
  gap: 16px;
  margin-top: 22px;
}

.trend-card {
  min-width: 0;
  margin: 0;
}

.trend-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #29332e;
}

.trend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.trend-card-number {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(16, 21, 19, 0.86);
  color: #fffdf8;
  padding: 3px 6px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.trend-card-feature {
  display: grid;
  min-height: 548px;
  grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
  background: var(--night);
}

.trend-card-feature figure {
  display: grid;
  place-items: center;
}

.trend-card-feature .trend-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.trend-card-body {
  min-width: 0;
}

.trend-card-kicker {
  margin: 0;
  color: var(--acid);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.trend-card h3 {
  margin: 0;
  color: #fffdf8;
  letter-spacing: 0;
  line-height: 1.05;
}

.trend-card-feature h3,
.trend-card-side h3 {
  font-size: 30px;
}

.trend-card-feature .trend-card-body > p:not(.trend-card-kicker) {
  max-width: 280px;
  margin: 16px 0 0;
  color: #d3d8ce;
  font-size: 13px;
}

.trend-rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trend-card-compact {
  display: grid;
  min-height: 166px;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  border-top: 1px solid #7e8980;
  padding-top: 10px;
}

.trend-card-compact figure {
  align-self: start;
  aspect-ratio: 2 / 3;
}

.trend-card-compact .trend-card-body {
  align-self: end;
  padding-bottom: 9px;
}

.trend-card-compact h3 {
  font-size: 18px;
}

.trend-card-compact .trend-card-body > p:not(.trend-card-kicker) {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: #c7d0c7;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.trend-card-side {
  display: grid;
  min-height: 548px;
  grid-template-rows: minmax(0, 1fr) auto;
  border-top: 1px solid #7e8980;
  padding-top: 10px;
}

.trend-card-side figure {
  display: grid;
  place-items: center;
  min-height: 0;
}

.trend-card-side .trend-card-body {
  padding: 14px 0 0;
}

.trend-card-side .trend-card-body > p:not(.trend-card-kicker) {
  margin: 7px 0 0;
  color: #c7d0c7;
  font-size: 12px;
  line-height: 1.45;
}

.trend-empty {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid #58655b;
  border-bottom: 1px solid #58655b;
  color: #e4e8df;
  padding: 24px 0;
}

.home-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 76px 22px 88px;
  scroll-margin-top: 82px;
}

.home-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.home-gallery-head .section-kicker {
  color: var(--coral);
}

.home-gallery-head h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.home-gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.home-filter-list {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
}

.home-filter-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.home-filter-button:hover,
.home-filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fffdf8;
}

.home-gallery-search {
  width: 250px;
  min-height: 36px;
  flex: 0 1 250px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 0 3px;
  font-size: 12px;
  outline: none;
}

.home-gallery-search:focus-visible {
  border-bottom-color: var(--coral);
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 14px;
  margin-top: 22px;
}

.home-gallery-card {
  min-width: 0;
}

.home-gallery-card figure {
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  background: #28332d;
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.home-gallery-card-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
}

.home-gallery-card-copy h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
}

.home-gallery-card-copy span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.category-group {
  border-top: 2px solid var(--ink);
  padding-top: 15px;
  scroll-margin-top: 82px;
}

.category-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-group-head .eyebrow {
  margin: 0;
  color: var(--coral);
}

.category-group-head h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
}

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

.category-link {
  position: relative;
  display: grid;
  min-height: 174px;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  padding: 16px 54px 16px 16px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.category-link:hover {
  border-color: var(--night);
  background: var(--night);
  color: #fffdf8;
}

.category-number {
  color: var(--coral);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1;
}

.category-keyword {
  margin-top: 17px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-link strong {
  margin-top: 6px;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1;
}

.category-link small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.category-link:hover .category-keyword,
.category-link:hover small {
  color: #c8cec6;
}

.category-link:hover .category-number {
  color: var(--acid);
}

.category-arrow {
  position: absolute;
  right: 17px;
  bottom: 15px;
  color: var(--coral);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.category-link:hover .category-arrow {
  color: var(--acid);
}

.layout {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 22px 84px;
  scroll-margin-top: 82px;
}

.filters {
  align-self: start;
  position: sticky;
  top: 84px;
  border: 1px solid var(--night);
  border-radius: 4px;
  background: var(--night);
  color: #fffdf8;
  padding: 17px;
}

.filter-kicker {
  margin: 0 0 4px;
  color: var(--acid);
}

.filters h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1;
}

.filter-group {
  display: grid;
  gap: 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.filter-button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #e8e9e1;
  padding: 0 3px;
  font-size: 13px;
  text-align: left;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--acid);
}

.filter-button span:last-child {
  color: #adb5aa;
  font-size: 12px;
}

.reset-button {
  width: 100%;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--coral);
}

.gallery-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 44px;
  letter-spacing: 0;
  line-height: 0.98;
}

.results-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

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

.style-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--night);
  border-radius: 4px;
  background: var(--night);
  color: #f9f6ef;
}

.style-card figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #222a27;
}

.image-view {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.image-view:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

.style-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 25%;
}

.image-zoom-mark {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(16, 21, 19, 0.86);
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.image-zoom-mark::before {
  content: "+";
}

.image-view:hover .image-zoom-mark,
.image-view:focus-visible .image-zoom-mark {
  opacity: 1;
}

.image-view:hover .image-zoom-mark {
  background: var(--coral);
}

.style-body {
  display: flex;
  min-height: 232px;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.style-body h3 {
  margin: 0;
  color: #fffdf8;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.04;
}

.style-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.style-meta div {
  border-left: 2px solid var(--acid);
  padding-left: 8px;
}

.style-meta small {
  display: block;
  color: #aeb5aa;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.style-meta span {
  display: block;
  margin-top: 2px;
  color: #eff0e9;
  font-size: 12px;
  font-weight: 750;
}

.style-body > p:not(.barber-note) {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #dee1d9;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  border: 1px solid #55625a;
  border-radius: 999px;
  color: #dce4d8;
  padding: 3px 7px;
  font-size: 11px;
}

.barber-note {
  display: -webkit-box;
  margin: auto 0 0;
  overflow: hidden;
  border-top: 1px solid #465149;
  color: #e7e8e1;
  padding-top: 10px;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.barber-note strong {
  color: var(--acid);
}

.page-intro {
  background: var(--night);
  color: #fffdf8;
}

.page-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 22px 42px;
}

.page-intro h1 {
  max-width: 1020px;
  font-size: 72px;
}

.page-intro p:not(.eyebrow) {
  max-width: 800px;
  margin: 20px 0 0;
  color: #d9ddd3;
  font-size: 18px;
}

.guide-search {
  max-width: 670px;
  margin-top: 28px;
}

.content-band {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 22px 78px;
}

.copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 400px);
  gap: 48px;
  align-items: start;
  border-top: 2px solid var(--ink);
  padding-top: 26px;
}

.copy-grid h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
}

.copy-grid p,
.copy-grid li {
  color: #43473f;
}

.copy-grid ul {
  padding-left: 20px;
}

.toc-box,
.faq-box {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  padding: 18px;
}

.toc-box h2,
.faq-box h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.toc-box a {
  display: block;
  border-top: 1px solid #d7d1c5;
  color: var(--night);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 800;
}

.toc-box a:hover {
  color: var(--coral);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border-top: 1px solid #d7d1c5;
  padding-top: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.planner-prompt {
  border-top: 1px solid #24322d;
  border-bottom: 1px solid #24322d;
  background: var(--sky);
  color: var(--night);
}

.planner-prompt-inner {
  display: flex;
  max-width: 1400px;
  min-height: 250px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 22px;
}

.planner-prompt .section-kicker {
  color: #733726;
}

.planner-prompt h2 {
  max-width: 720px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.planner-prompt p:not(.section-kicker) {
  max-width: 740px;
  margin: 14px 0 0;
  font-size: 16px;
}

.planner-hero {
  background: var(--night);
  color: #fffdf8;
}

.planner-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: clamp(28px, 5vw, 76px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 76px 22px 72px;
}

.planner-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.planner-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: 70px;
}

.planner-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #d6ddd3;
  font-size: 18px;
  line-height: 1.55;
}

.planner-form {
  align-self: center;
  border: 1px solid #67766c;
  border-radius: 4px;
  background: var(--night-raised);
  padding: clamp(20px, 3vw, 34px);
}

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

.planner-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.planner-form label span {
  color: #e3e8de;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.planner-form input,
.planner-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--night);
  padding: 0 12px;
  font-size: 14px;
}

.planner-form select {
  cursor: pointer;
}

.planner-form-note {
  max-width: 640px;
  margin: 16px 0;
  color: #cbd4c8;
  font-size: 13px;
  line-height: 1.45;
}

.planner-error {
  margin: 0 0 14px;
  color: #ffbaa7;
  font-size: 13px;
  font-weight: 750;
}

.planner-form .button {
  min-width: 190px;
}

.planner-result {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  border-top: 1px solid #718172;
  background: #24322b;
  padding: 17px 0 0;
}

.planner-result[hidden] {
  display: none;
}

.planner-result > span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.planner-result strong {
  color: #fffdf8;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1;
}

.planner-result p {
  max-width: 680px;
  margin: 0;
  color: #d5ddd0;
  font-size: 14px;
  line-height: 1.5;
}

.planner-timing {
  background: var(--surface-alt);
}

.planner-timing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 66px 22px;
}

.planner-timing h2 {
  max-width: 510px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.planner-timing-list {
  display: grid;
  align-content: start;
  border-top: 2px solid var(--night);
}

.planner-timing-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  border-bottom: 1px solid #a89f91;
  padding: 15px 0;
}

.planner-timing-list strong {
  font-size: 16px;
  line-height: 1.1;
}

.planner-timing-list span {
  color: #474a43;
  font-size: 14px;
}

.planner-reference-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 76px 22px;
}

.planner-reference-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.planner-reference-head .section-kicker {
  color: var(--coral);
}

.planner-reference-head h2 {
  max-width: 800px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.planner-reference-head > a {
  flex: 0 0 auto;
  border-bottom: 1px solid var(--night);
  color: var(--night);
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.planner-reference-head > a:hover {
  color: var(--coral);
}

.planner-reference-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.planner-reference-card {
  display: grid;
  min-width: 0;
  align-content: start;
  border-bottom: 1px solid var(--line);
  color: var(--night);
  padding-bottom: 12px;
}

.planner-reference-card figure {
  aspect-ratio: 2 / 3;
  margin: 0 0 10px;
  overflow: hidden;
  background: #27322c;
}

.planner-reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.planner-reference-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.planner-reference-card strong {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.08;
}

.planner-reference-card:hover strong {
  color: var(--coral);
}

.support-band {
  background: var(--acid);
  color: var(--night);
}

.support-band-inner {
  display: flex;
  max-width: 1400px;
  min-height: 240px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 22px;
}

.support-band .section-kicker {
  color: var(--coral);
}

.support-band h2 {
  max-width: 850px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 49px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.support-band p:not(.section-kicker) {
  max-width: 680px;
  margin: 13px 0 0;
  font-size: 16px;
}

.button-dark {
  flex: 0 0 auto;
  background: var(--night);
  color: #fffdf8;
  white-space: nowrap;
}

.site-footer {
  background: #080b0a;
  color: #e8e7df;
}

.not-found-page {
  background: var(--night);
  color: #fffdf8;
}

.not-found-main {
  display: grid;
  min-height: calc(100vh - 61px);
  place-items: center;
  padding: 72px 22px;
}

.not-found-main > div {
  width: min(100%, 900px);
}

.not-found-main .eyebrow {
  color: var(--acid);
}

.not-found-main h1 {
  max-width: 820px;
  font-size: 76px;
}

.not-found-main p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #c9cdc4;
  font-size: 18px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.not-found-actions .button-primary {
  background: var(--acid);
  color: var(--night);
}

.not-found-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fffdf8;
}

.not-found-actions .button-outline:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--night);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.75fr) auto;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 22px;
}

.footer-kicker {
  margin: 0 0 7px;
  color: var(--acid);
}

.footer-intro strong {
  display: block;
  font-size: 21px;
}

.footer-intro p:not(.footer-kicker) {
  max-width: 650px;
  margin: 8px 0 0;
  color: #b7bbb3;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-contact span {
  color: #afb4aa;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--acid);
  font-size: 15px;
  font-weight: 850;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 9px;
}

.footer-links a {
  color: #e8e7df;
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--coral);
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 6, 0.92);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 860px);
  max-height: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: var(--night);
  padding: 14px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.48);
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 112px);
  height: auto;
  margin: 0 auto;
  background: #060706;
  object-fit: contain;
}

.lightbox-caption {
  margin: 10px 42px 0 0;
  color: #f4f1e9;
  font-size: 14px;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 4px;
  background: rgba(16, 21, 19, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--night);
}

.hidden {
  display: none !important;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .nav {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .nav-tools {
  justify-content: flex-start;
}

html[dir="rtl"] .locale-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .trend-card-number {
  right: 10px;
  left: auto;
}

html[dir="rtl"] .home-gallery-card-copy span,
html[dir="rtl"] .filter-button {
  text-align: right;
}

html[dir="rtl"] .category-arrow {
  right: auto;
  left: 17px;
  transform: scaleX(-1);
}

html[dir="rtl"] .image-zoom-mark {
  right: auto;
  left: 13px;
}

html[dir="rtl"] .style-meta div {
  border-right: 2px solid var(--acid);
  border-left: 0;
  padding-right: 8px;
  padding-left: 0;
}

html[dir="rtl"] .copy-grid ul {
  padding-right: 20px;
  padding-left: 0;
}

html[dir="rtl"] .lightbox-caption {
  margin: 10px 0 0 42px;
}

html[dir="rtl"] .lightbox-close {
  right: auto;
  left: 20px;
}

@media (max-width: 760px) {
  html[dir="rtl"] .lightbox-close {
    right: auto;
    left: 15px;
  }
}

@media (min-width: 1180px) {
  .layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

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

@media (max-width: 1160px) {
  .nav {
    gap: 12px;
  }

  .nav-links a {
    padding: 8px 6px;
  }

  .home-hero h1 {
    font-size: 66px;
  }

  h1 {
    font-size: 74px;
  }

  .page-intro h1 {
    font-size: 64px;
  }
}

@media (max-width: 1000px) {
  .layout,
  .copy-grid,
  .trend-head {
    grid-template-columns: 1fr;
  }

  .trend-card-feature {
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  }

  .planner-hero-inner,
  .planner-timing-inner {
    grid-template-columns: 1fr;
  }

  .planner-hero-copy {
    gap: 20px;
  }

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

  .filters {
    position: static;
  }

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

  .filter-button {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .trend-controls {
    max-width: 580px;
  }
}

@media (max-width: 760px) {
  .not-found-main {
    min-height: calc(100vh - 56px);
    padding: 52px 22px;
  }

  .not-found-main h1 {
    font-size: 50px;
  }

  .not-found-main p:not(.eyebrow) {
    font-size: 16px;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 9px 16px 10px;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 2px;
  }

  .nav-links a {
    display: none;
    flex: 0 0 auto;
    padding: 7px 8px;
  }

  .nav-links a:nth-child(-n + 2),
  .nav-links a[aria-current="page"] {
    display: inline-flex;
  }

  .nav-cta {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-tools {
    gap: 6px;
  }

  .locale-switcher summary {
    min-width: 34px;
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    gap: 12px;
    padding: 28px 16px 16px;
  }

  .home-hero-media {
    min-height: 270px;
    gap: 10px;
    padding: 12px;
  }

  h1 {
    font-size: 56px;
    line-height: 0.92;
  }

  .home-hero h1 {
    margin-top: 16px;
    font-size: 48px;
  }

  .home-hero-description {
    margin-top: 16px;
    font-size: 16px;
  }

  .planner-prompt-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 16px;
  }

  .planner-prompt h2,
  .planner-timing h2,
  .planner-reference-head h2 {
    font-size: 42px;
  }

  .planner-hero-inner {
    gap: 30px;
    padding: 52px 16px;
  }

  .planner-hero h1 {
    font-size: 52px;
  }

  .planner-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .planner-form-grid {
    grid-template-columns: 1fr;
  }

  .planner-form .button {
    width: 100%;
  }

  .planner-timing-inner {
    gap: 28px;
    padding: 52px 16px;
  }

  .planner-timing-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .planner-reference-section {
    padding: 52px 16px;
  }

  .planner-reference-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 220px;
  }

  .guide-search {
    padding: 11px;
  }

  .category-strip {
    gap: 38px;
    padding: 52px 16px;
  }

  .trend-inner {
    padding: 52px 16px;
  }

  .trend-head {
    gap: 22px;
    padding-bottom: 16px;
  }

  .trend-copy h2 {
    font-size: 46px;
  }

  .trend-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trend-card-feature {
    min-height: 420px;
    grid-template-columns: minmax(138px, 0.88fr) minmax(0, 1fr);
  }

  .trend-card-feature .trend-card-body {
    padding: 20px;
  }

  .trend-card-feature h3,
  .trend-card-side h3 {
    font-size: 26px;
  }

  .trend-rail {
    gap: 12px;
  }

  .trend-card-compact {
    min-height: 154px;
  }

  .trend-card-side {
    min-height: 450px;
  }

  .home-gallery {
    padding: 52px 16px 62px;
  }

  .home-gallery-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .home-gallery-head h2 {
    font-size: 42px;
  }

  .home-gallery-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .home-filter-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .home-filter-button {
    flex: 0 0 auto;
  }

  .home-gallery-search {
    width: 100%;
    flex-basis: auto;
  }

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

  .home-gallery-card-copy {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 10px;
  }

  .home-gallery-card-copy h3 {
    font-size: 14px;
  }

  .home-gallery-card-copy span {
    max-width: 100%;
    font-size: 9px;
    line-height: 1.2;
    text-align: left;
  }

  .category-group-head {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .category-group-head h2 {
    font-size: 30px;
  }

  .category-grid,
  .gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-link {
    min-height: 154px;
  }

  .layout {
    gap: 22px;
    padding: 0 16px 56px;
  }

  .filter-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-button {
    min-height: 40px;
    font-size: 12px;
  }

  .gallery-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .gallery-head h2 {
    font-size: 36px;
  }

  .style-body {
    min-height: 0;
  }

  .page-intro-inner {
    padding: 52px 16px 34px;
  }

  .page-intro h1 {
    font-size: 52px;
  }

  .page-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .content-band {
    padding: 0 16px 54px;
  }

  .copy-grid {
    gap: 28px;
  }

  .copy-grid h2 {
    font-size: 30px;
  }

  .support-band-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 16px;
  }

  .support-band h2 {
    font-size: 42px;
  }

  .button-dark {
    width: 100%;
  }

  .footer-inner {
    gap: 24px;
    padding: 30px 16px;
  }

  .footer-links {
    justify-items: start;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    width: 100%;
    padding: 10px;
  }

  .lightbox-image {
    max-height: calc(100vh - 84px);
  }

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

@media (max-width: 420px) {
  .brand-name {
    font-size: 12px;
  }

  .brand-overline {
    font-size: 10px;
  }

  h1 {
    font-size: 48px;
  }

  .home-hero h1 {
    font-size: 45px;
  }

  .planner-hero h1 {
    font-size: 45px;
  }

  .home-hero-media {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 140px));
    justify-content: center;
  }

  .home-hero-search {
    grid-template-columns: 1fr;
  }

  .home-hero-search button {
    width: 100%;
  }

  .page-intro h1 {
    font-size: 45px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .search-row button {
    width: 100%;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }

  .style-meta {
    grid-template-columns: 1fr;
  }

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

  .trend-actions > button {
    flex: 1 1 180px;
  }
}
