:root {
  --bg: #f3eee4;
  --surface: #fffdf8;
  --sand: #e6d7be;
  --stone: #cfc2af;
  --ink: #292522;
  --muted: #6e655b;
  --clay: #b8753a;
  --water: #5b7280;
  --tree: #52613d;
  --line: rgba(41, 37, 34, 0.16);
  --shadow: 0 16px 40px rgba(57, 45, 32, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1180px;
  --radius: 2px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.section { padding: 112px 0; }
.section--sand { background: var(--sand); }
.section--stone { background: #e8dfd0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 0.98; letter-spacing: -0.025em; }
h1 { margin-bottom: 28px; font-size: clamp(3.3rem, 7vw, 6.5rem); }
h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4.6vw, 4.65rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.75rem, 2.4vw, 2.35rem); }
p { margin-bottom: 18px; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255, 253, 248, 0.8); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 15px; font-size: 0.75rem; }
.button--accent { color: #fffdf8; background: var(--clay); }
.button--accent:hover { background: #9e602e; }
.button--dark { color: #fffdf8; background: var(--ink); }
.button--dark:hover { background: #494139; }
.button--outline-light { color: #fffdf8; border-color: rgba(255, 253, 248, 0.68); }
.button--outline-light:hover { color: var(--ink); background: #fffdf8; }
.button--outline-dark { color: var(--ink); border-color: var(--ink); }
.button--outline-dark:hover { color: #fffdf8; background: var(--ink); }

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color var(--transition), gap var(--transition);
}
.text-link:hover { gap: 13px; color: var(--clay); }
.text-link--light { color: #fffdf8; }
.text-link--light:hover { color: #fffdf8; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(243, 238, 228, 0.92);
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(52, 43, 33, 0.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.site-brand { display: inline-flex; flex-direction: column; min-width: 170px; line-height: 1.05; }
.site-brand__name { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.04em; }
.site-brand__tagline { margin-top: 5px; color: var(--muted); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.1em; line-height: 1.35; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav__list { display: flex; align-items: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.main-nav__list a { color: var(--muted); font-size: 0.73rem; font-weight: 700; white-space: nowrap; transition: color var(--transition); }
.main-nav__list a:hover { color: var(--clay); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px 0 8px 8px; }
.menu-toggle span { display: block; width: 26px; height: 1px; margin: 5px 0; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }

.hero { position: relative; min-height: min(795px, calc(100vh - 84px)); display: grid; align-items: end; overflow: hidden; background: var(--tree); }
.hero__image { position: absolute; inset: 0; border: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(32, 27, 22, 0.82) 0%, rgba(32, 27, 22, 0.5) 43%, rgba(32, 27, 22, 0.12) 100%); }
.hero__content { position: relative; z-index: 1; max-width: 800px; padding-top: 130px; padding-bottom: 92px; color: #fffdf8; }
.hero h1 { color: #fffdf8; }
.hero__lead { max-width: 680px; margin-bottom: 34px; font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note { max-width: 530px; margin: 30px 0 0; color: rgba(255, 253, 248, 0.8); font-size: 0.83rem; line-height: 1.65; }

.image-placeholder {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border: 1px solid rgba(41, 37, 34, 0.18);
  background: linear-gradient(130deg, #cbb28f 0%, #e6d7be 38%, #a98663 100%);
  color: rgba(41, 37, 34, 0.77);
  text-align: center;
}
.image-placeholder::before, .image-placeholder::after { position: absolute; z-index: -1; border-radius: 50%; content: ""; }
.image-placeholder::before { width: 48%; height: 48%; top: -14%; left: -8%; background: rgba(255, 253, 248, 0.35); }
.image-placeholder::after { width: 65%; height: 65%; right: -18%; bottom: -30%; background: rgba(82, 97, 61, 0.22); }
.image-placeholder span { max-width: 260px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.7; text-transform: uppercase; }
.image-placeholder--hero { min-height: 100%; border: 0; background: linear-gradient(120deg, #45382c 0%, #92775e 37%, #d4b585 67%, #7c6750 100%); color: rgba(255, 253, 248, 0.7); }
.image-placeholder--hero::before { width: 42%; height: 82%; top: 20%; left: 48%; transform: rotate(-18deg); background: rgba(245, 222, 188, 0.28); border-radius: 44% 52% 38% 42%; }
.image-placeholder--hero::after { width: 28%; height: 28%; right: 13%; bottom: 17%; background: rgba(59, 45, 32, 0.38); }
.image-placeholder--portrait { min-height: 510px; }
.image-placeholder--landscape { min-height: 490px; align-items: flex-end; }
.image-placeholder small { position: absolute; right: 18px; bottom: 16px; left: 18px; color: rgba(41, 37, 34, 0.78); font-size: 0.67rem; line-height: 1.45; text-align: left; }

.two-column, .origin-grid, .author-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(42px, 8vw, 130px); align-items: center; }
.two-column__copy { max-width: 510px; }
.two-column__copy p, .origin__copy p, .author__copy p { color: var(--muted); }
.origin__copy { max-width: 530px; }
.inline-links { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 32px; }

.section-heading { margin-bottom: 42px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.75fr); gap: 50px; align-items: end; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 460px; margin-bottom: 8px; color: var(--muted); }
.section-intro { max-width: 650px; margin: -15px 0 36px; color: var(--muted); }

.card-grid { display: grid; gap: 20px; }
.card-grid--samples { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--art { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sample-card, .art-card { overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform var(--transition), box-shadow var(--transition); }
.sample-card:hover, .art-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sample-card__image, .art-card__image { min-height: 225px; border: 0; border-bottom: 1px solid var(--line); }
.art-card__image { min-height: 315px; }
.sample-card__body, .art-card__body { padding: 22px 22px 24px; }
.sample-card__meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 18px; color: var(--muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.4; }
.status { color: var(--tree); text-align: right; }
.status--work { color: var(--water); }
.status--origin { color: var(--clay); }
.card-kicker { margin-bottom: 8px; color: var(--clay); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.11em; line-height: 1.4; text-transform: uppercase; }
.sample-card h3, .art-card h3 { margin-bottom: 10px; }
.sample-card p:not(.card-kicker), .art-card p:not(.card-kicker) { margin-bottom: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.65; }
.art-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.art-card__footer a { color: var(--ink); font-size: 0.74rem; font-weight: 700; white-space: nowrap; }
.art-card__footer a:hover { color: var(--clay); }
.price { color: var(--muted); font-size: 0.77rem; font-weight: 700; }
.section-action { display: flex; justify-content: center; margin-top: 42px; }
.section-action--two { flex-wrap: wrap; gap: 12px; }

.author-grid { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.1fr); }
.author__copy { max-width: 600px; }
.author__signature { margin-top: 36px !important; color: var(--ink) !important; font-family: var(--font-display); font-size: 1.35rem; font-style: italic; }

.section--participation { background: var(--tree); color: #fffdf8; }
.participation-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 90px; }
.section--participation h2 { color: #fffdf8; }
.participation__copy { max-width: 620px; }
.participation__copy > p { color: rgba(255, 253, 248, 0.88); }
.rules-list { display: grid; gap: 13px; margin: 30px 0 34px; padding: 0; list-style: none; }
.rules-list li { position: relative; padding-left: 22px; color: rgba(255, 253, 248, 0.85); font-size: 0.9rem; line-height: 1.65; }
.rules-list li::before { position: absolute; top: 0.78em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); content: ""; }

.section--contacts { background: #eee7da; }
.contact__intro { max-width: 470px; }
.contact__intro > p { color: var(--muted); }
.contact__details { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; margin-top: 30px; }
.contact__details a { border-bottom: 1px solid var(--ink); font-size: 0.86rem; font-weight: 700; }
.contact__details a:hover { color: var(--clay); }
.contact-form { padding: 34px; background: var(--surface); box-shadow: 0 12px 30px rgba(50, 40, 30, 0.06); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 0.75rem; font-weight: 700; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea { width: 100%; border: 1px solid rgba(41, 37, 34, 0.25); border-radius: 0; background: #fffdfa; color: var(--ink); padding: 12px 13px; font-size: 0.88rem; transition: border-color var(--transition), box-shadow var(--transition); }
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field input:not([type="checkbox"]):focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--water); box-shadow: 0 0 0 3px rgba(91, 114, 128, 0.16); outline: none; }
.form-field--checkbox { display: grid; grid-template-columns: 18px 1fr; column-gap: 10px; align-items: start; }
.form-field--checkbox input { width: 16px; height: 16px; margin-top: 5px; accent-color: var(--tree); }
.form-field--checkbox label { margin: 0; color: var(--muted); font-size: 0.72rem; font-weight: 500; line-height: 1.55; }
.form-field--checkbox a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.field-error { display: block; min-height: 17px; margin-top: 4px; color: #963b32; font-size: 0.67rem; line-height: 1.35; }
.form-field--checkbox .field-error { grid-column: 1 / -1; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--tree); font-size: 0.76rem; font-weight: 700; line-height: 1.55; }

.faq-section { padding-top: 90px; padding-bottom: 90px; }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 21px 38px 21px 0; color: var(--ink); cursor: pointer; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; line-height: 1.15; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 50%; right: 4px; transform: translateY(-50%); color: var(--clay); content: "+"; font-family: var(--font-body); font-size: 1.45rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; margin: 0; padding: 0 30px 22px 0; color: var(--muted); font-size: 0.86rem; }

.site-footer { padding: 62px 0 0; background: var(--ink); color: rgba(255, 253, 248, 0.78); }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 0.7fr; gap: 50px; padding-bottom: 48px; }
.site-brand--footer .site-brand__name { color: #fffdf8; }
.site-brand--footer .site-brand__tagline { color: rgba(255, 253, 248, 0.56); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; }
.footer-links a, .footer-contact a { color: rgba(255, 253, 248, 0.72); font-size: 0.76rem; }
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: #fffdf8; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; padding-bottom: 20px; border-top: 1px solid rgba(255, 253, 248, 0.14); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255, 253, 248, 0.5); font-size: 0.64rem; line-height: 1.5; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 16px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1090px) {
  .main-nav__list { gap: 12px; }
  .main-nav__list a { font-size: 0.68rem; }
  .nav-cta { display: none; }
  .card-grid--samples { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header { backdrop-filter: none; }
  .header__inner { min-height: 70px; }
  .site-brand__name { font-size: 1.75rem; }
  .site-brand__tagline { max-width: 150px; font-size: 0.49rem; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: 20px 16px 24px; border-top: 1px solid var(--line); background: var(--bg); box-shadow: 0 18px 28px rgba(55, 45, 32, 0.12); }
  .main-nav.is-open { display: flex; flex-direction: column; }
  .main-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav__list li { border-bottom: 1px solid var(--line); }
  .main-nav__list a { display: block; padding: 13px 2px; font-size: 0.85rem; }
  .nav-cta { display: inline-flex; align-self: flex-start; margin-top: 17px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero { min-height: 690px; align-items: end; }
  .hero__overlay { background: linear-gradient(180deg, rgba(32, 27, 22, 0.38) 0%, rgba(32, 27, 22, 0.84) 73%, rgba(32, 27, 22, 0.93) 100%); }
  .hero__content { padding-top: 85px; padding-bottom: 55px; }
  .hero__lead { font-size: 0.98rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; margin-top: 8px; }
  .two-column, .origin-grid, .author-grid, .contact-grid, .participation-grid, .faq-grid, .section-heading--split { grid-template-columns: 1fr; gap: 34px; }
  .two-column__visual { order: 2; }
  .origin__visual { order: 2; }
  .image-placeholder--portrait { min-height: 390px; }
  .image-placeholder--landscape { min-height: 360px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading > p { margin-bottom: 0; }
  .section-intro { margin-top: -8px; }
  .card-grid--samples, .card-grid--art { grid-template-columns: 1fr; }
  .sample-card__image { min-height: 245px; }
  .art-card__image { min-height: 320px; }
  .author__image { order: 2; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-section { padding-top: 68px; padding-bottom: 68px; }
  summary { font-size: 1.35rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.site-main {
	min-height: 60vh;
}

.section--archive {
	padding: 112px 0;
}

.archive-header {
	max-width: 760px;
	margin-bottom: 52px;
}

.archive-title {
	margin-bottom: 20px;
}

.archive-description {
	max-width: 620px;
	color: var(--muted);
}

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

.post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
	transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.post-card__image {
	min-height: 270px;
	border: 0;
	border-bottom: 1px solid var(--line);
}

.post-card__image img {
	width: 100%;
	height: 270px;
	object-fit: cover;
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.5;
	text-transform: uppercase;
}

.post-card__title {
	margin-bottom: 14px;
	font-size: 2rem;
}

.post-card__title a:hover {
	color: var(--clay);
}

.post-card__excerpt {
	margin-bottom: 24px;
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.7;
}

.post-card__excerpt p {
	margin: 0;
}

.post-card .text-link {
	margin-top: auto;
	align-self: flex-start;
}

.pagination {
	margin-top: 48px;
}

.pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 700;
}

.pagination .current,
.pagination a:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: #fffdf8;
}

.empty-state {
	max-width: 670px;
	padding: 58px 0;
}

.empty-state h2 {
	margin-bottom: 18px;
}

.empty-state p {
	max-width: 560px;
	color: var(--muted);
}

@media (max-width: 1024px) {
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.section--archive {
		padding: 72px 0;
	}

	.archive-header {
		margin-bottom: 34px;
	}

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

	.post-card__image,
	.post-card__image img {
		min-height: 240px;
		height: 240px;
	}
}
/* Archive: Коллекция */
.collection-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: -10px 0 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.collection-toolbar__count {
	margin: 0;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
}

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

.sample-card--archive h2 {
	margin-bottom: 10px;
	font-size: 2rem;
}

.sample-card--archive h2 a:hover {
	color: var(--clay);
}

.sample-card__link {
	margin-top: 22px;
	font-size: 0.74rem;
}

/* Single: отдельный образец */
.sample-single__hero {
	padding-top: 100px;
	padding-bottom: 90px;
}

.sample-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
	align-items: center;
	gap: clamp(42px, 8vw, 120px);
}

.sample-single__copy {
	max-width: 580px;
}

.sample-single__number {
	margin-bottom: 12px;
	color: var(--clay);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sample-single__material {
	margin-bottom: 4px;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-style: italic;
}

.sample-single__region,
.sample-single__status {
	color: var(--muted);
	font-size: 0.88rem;
}

.sample-single__status {
	margin-top: 26px;
	font-weight: 700;
}

.sample-single__image {
	min-height: 520px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.sample-single__story-section {
	background: #e8dfd0;
}

.sample-single__story-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(40px, 8vw, 120px);
}

.sample-single__content {
	max-width: 700px;
	color: var(--muted);
}

.sample-single__content > :last-child {
	margin-bottom: 0;
}

.sample-single__note {
	margin-top: 32px;
	padding: 20px 22px;
	border-left: 3px solid var(--clay);
	background: rgba(255, 253, 248, 0.45);
	color: var(--ink);
}

.sample-single__note p {
	margin: 0;
}

.sample-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.sample-gallery__grid img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.sample-single__cta {
	padding-top: 86px;
	padding-bottom: 86px;
}

@media (max-width: 1024px) {
	.sample-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.collection-toolbar {
		margin-bottom: 22px;
	}

	.sample-archive-grid {
		grid-template-columns: 1fr;
	}

	.sample-single__hero {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.sample-single__grid,
	.sample-single__story-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.sample-single__image {
		min-height: 390px;
	}

	.sample-gallery__grid {
		grid-template-columns: 1fr;
	}

	.sample-gallery__grid img {
		height: 300px;
	}

	.sample-single__cta {
		padding-top: 68px;
		padding-bottom: 68px;
	}
}
.hero__image--photo,
.two-column__visual--photo,
.origin__visual--photo,
.author__image--photo,
.sample-card__image--photo,
.art-card__image--photo {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.two-column__visual--photo,
.origin__visual--photo,
.author__image--photo,
.sample-card__image--photo,
.art-card__image--photo {
	position: relative;
	inset: auto;
}

.two-column__visual--photo,
.author__image--photo {
	min-height: 510px;
}

.origin__visual--photo {
	min-height: 490px;
}

.sample-card__image--photo {
	min-height: 225px;
}

.art-card__image--photo {
	min-height: 315px;
}
.hero__content {
	max-width: 850px;
}

.hero h1 {
	max-width: 780px;
	font-size: clamp(3rem, 6vw, 5.6rem);
	line-height: 0.95;
}
@media (max-width: 767px) {
	.hero h1 {
		font-size: clamp(2.8rem, 13vw, 4.2rem);
	}
}
.page-hero {
	padding-top: 105px;
	padding-bottom: 72px;
	background: var(--sand);
}

.page-hero__inner {
	max-width: 820px;
}

.page-hero h1 {
	margin-bottom: 22px;
}

.page-hero__lead {
	max-width: 680px;
	margin: 0;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.page-featured-image {
	padding-bottom: 20px;
	background: var(--sand);
}

.page-featured-image img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
}

.page-content-section {
	background: var(--bg);
}

.page-content-grid {
	display: grid;
	grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
	gap: clamp(40px, 9vw, 140px);
	align-items: start;
}

.page-content-aside {
	position: sticky;
	top: 115px;
}

.page-content {
	max-width: 780px;
	color: var(--muted);
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content h2 {
	margin-top: 54px;
	margin-bottom: 20px;
	font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.entry-content h3 {
	margin-top: 38px;
	margin-bottom: 14px;
	font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.entry-content p {
	margin-bottom: 22px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 26px;
	padding-left: 22px;
}

.entry-content li {
	margin-bottom: 10px;
	padding-left: 5px;
}

.entry-content blockquote {
	margin: 36px 0;
	padding: 22px 26px;
	border-left: 3px solid var(--clay);
	background: rgba(230, 215, 190, 0.45);
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-style: italic;
	line-height: 1.35;
}

.entry-content img {
	height: auto;
	margin: 30px 0;
}

.entry-content a {
	color: var(--ink);
	text-decoration: underline;
	text-decoration-color: var(--clay);
	text-underline-offset: 4px;
}

.entry-content a:hover {
	color: var(--clay);
}

@media (max-width: 767px) {
	.page-hero {
		padding-top: 72px;
		padding-bottom: 52px;
	}

	.page-content-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.page-content-aside {
		position: static;
	}

	.page-content-aside .eyebrow {
		margin-bottom: 8px;
	}

	.entry-content h2 {
		margin-top: 40px;
	}
}
.story-single__header {
	padding-top: 100px;
	padding-bottom: 76px;
	background: var(--sand);
}

.story-single__header-inner {
	max-width: 900px;
}

.story-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-bottom: 22px;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.5;
	text-transform: uppercase;
}

.story-single__meta a:hover {
	color: var(--clay);
}

.story-single__header h1 {
	max-width: 900px;
	margin-bottom: 24px;
}

.story-single__lead {
	max-width: 700px;
	margin: 0;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.story-single__featured-image {
	padding-bottom: 20px;
	background: var(--sand);
}

.story-single__featured-image img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
}

.story-single__content-grid {
	display: grid;
	grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
	gap: clamp(40px, 9vw, 140px);
	align-items: start;
}

.story-single__aside {
	position: sticky;
	top: 115px;
}

.story-single__content {
	max-width: 780px;
	color: var(--muted);
}

.story-single__content > :first-child {
	margin-top: 0;
}

.story-single__content h2 {
	margin-top: 56px;
	margin-bottom: 22px;
	font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.story-single__content h3 {
	margin-top: 38px;
	margin-bottom: 16px;
	font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.story-single__content p {
	margin-bottom: 24px;
}

.story-single__content blockquote {
	margin: 38px 0;
	padding: 24px 28px;
	border-left: 3px solid var(--clay);
	background: rgba(230, 215, 190, 0.45);
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-style: italic;
	line-height: 1.4;
}

.story-single__content img {
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 32px 0;
}

.story-single__next-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.story-single__next h2 {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.story-single__header {
		padding-top: 72px;
		padding-bottom: 54px;
	}

	.story-single__content-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.story-single__aside {
		position: static;
	}

	.story-single__next-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
.faq-item {
	margin-bottom: 0;
	border-bottom: 1px solid var(--line);
}

.faq-item summary {
	padding: 22px 42px 22px 0;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	float: right;
	color: var(--clay);
	font-family: var(--font-body);
	font-size: 1.4rem;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item__answer {
	max-width: 700px;
	padding: 0 42px 22px 0;
	color: var(--muted);
}