:root {
  --paper: #f7f4ee;
  --ink: #292c25;
  --muted: #717269;
  --olive: #626850;
  --line: #d9d7cd;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --radius: 2px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 14px/1.6 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
  border: 1px solid var(--line);
  padding: 10px 17px;
  background: transparent;
  border-radius: var(--radius);
}
button:hover {
  border-color: var(--olive);
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #967c41;
  outline-offset: 4px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10;
  background: white;
  padding: 15px;
}
.skip:focus {
  top: 5px;
}
.announcement {
  text-align: center;
  background: var(--olive);
  color: #fff;
  padding: 7px 15px;
  font-size: 10px;
  letter-spacing: 1px;
}
header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex: none;
}
.logo-wordmark {
  display: block;
  font-size: 43px;
  letter-spacing: 6px;
  font-family: var(--serif);
  line-height: 1;
}
.logo-wordmark small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 4.8px;
  margin-top: 9px;
}
header nav {
  display: flex;
  gap: 40px;
  font-size: 12px;
}
.nav-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}
.cart-link {
  display: flex;
  gap: 9px;
}
.cart-link span {
  font-size: 11px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.8px;
}
h1 {
  font-size: clamp(44px, 5.6vw, 80px);
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 24px;
}
h3 {
  font-weight: 400;
  font-size: 19px;
}
em {
  font-weight: 400;
  color: var(--olive);
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.hero-copy {
  padding: 85px 10% 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy h1 {
  margin-bottom: 25px;
}
.hero-copy > p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 30px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  background: var(--olive);
  color: #fff;
  padding: 17px 24px;
  border: 1px solid var(--olive);
  font-size: 12px;
  text-decoration: none;
}
.button:hover {
  background: #4c523d;
  text-decoration: none;
}
.hero-bottom {
  margin-top: auto;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--muted);
}
.hero-image {
  position: relative;
  overflow: hidden;
  background: #ddd4c5;
}
.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.1);
}
.image-tag {
  position: absolute;
  top: 25px;
  left: 28px;
  font-size: 8px;
  letter-spacing: 1.8px;
  color: #4d5046;
}
.image-caption {
  position: absolute;
  bottom: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 28px;
}
.image-caption small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.7px;
  margin-top: 4px;
}
.image-caption a {
  border: 1px solid #8f9384;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  text-align: center;
  font-size: 22px;
}
.values {
  padding: 23px 10%;
  display: flex;
  justify-content: space-around;
  border-block: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 1.2px;
}
.values i {
  font-style: normal;
  color: var(--olive);
}
.section {
  padding: 80px 5%;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.text-link {
  font-size: 11px;
  border-bottom: 1px solid;
  padding-bottom: 6px;
  white-space: nowrap;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ded7c9;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card a:hover {
  text-decoration: none;
}
.product-card a:hover img {
  transform: scale(1.04);
}
.badge {
  position: absolute;
  left: 13px;
  top: 14px;
  font-size: 8px;
  letter-spacing: 0.8px;
  padding: 5px 9px;
  background: #f5f2e9d9;
}
.product-arrow {
  position: absolute;
  right: 13px;
  bottom: 13px;
  background: #f7f4ee;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
}
.product-title {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  margin-top: 15px;
}
.product-title h3 {
  font-family: var(--serif);
  font-size: 23px;
  margin: 0;
}
.product-title > span {
  font-size: 11px;
}
.product-card p {
  color: var(--muted);
  font-size: 10px;
  margin: 4px 0;
}
.about {
  margin: 15px 5% 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eeece3;
}
.about-art {
  background: #d5d8ca;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-art > span {
  font-family: var(--serif);
  font-size: 390px;
  color: #7b826845;
  line-height: 1;
  transform: rotate(-20deg);
}
.about-art small {
  position: absolute;
  bottom: 30px;
  left: 35px;
  letter-spacing: 3px;
  font-size: 9px;
}
.about-copy {
  padding: 65px 12%;
  align-self: center;
}
.about-copy p {
  font-size: 12px;
  line-height: 1.9;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 11px;
}
.about-copy .text-link {
  display: inline-block;
  margin-top: 15px;
}
footer {
  padding: 55px 5% 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}
footer p {
  font-size: 11px;
  margin-top: 20px;
}
footer .eyebrow {
  margin-bottom: 19px;
  font-size: 8px;
}
footer a:not(.logo) {
  display: block;
  font-size: 11px;
  margin-bottom: 9px;
}
.footer-note {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.3;
}
.footer-note a {
  font-family: var(--sans);
  margin-top: 28px;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 9px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.catalog h1 {
  font-size: 64px;
}
.filters {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chips button {
  font-size: 11px;
  padding: 9px 15px;
  border-radius: 30px;
}
.chips button.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
label {
  display: block;
  font-size: 12px;
}
input:not([type="checkbox"]),
select,
textarea {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 100%;
  margin: 6px 0 18px;
  border-radius: 2px;
}
input[type="checkbox"] {
  accent-color: var(--olive);
  margin-right: 8px;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.filters .chips {
  margin-right: auto;
  margin-bottom: 18px;
}
.catalog-count {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--muted);
  font-size: 11px;
}
.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 30px;
}
.detail {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 9%;
}
.detail-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.detail-copy {
  padding: 25px 0;
}
.detail-copy h1 {
  margin-bottom: 15px;
}
.detail-copy > p {
  line-height: 1.9;
}
.detail-copy .price {
  font-size: 23px;
  margin-bottom: 28px;
}
.availability {
  font-size: 12px;
  color: var(--olive);
}
.inquiry-box {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.inquiry-box h2 {
  font-size: 24px;
  margin: 0 0 8px;
}
.inquiry-box > p {
  line-height: 1.6;
}
.inquiry-box form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.inquiry-box label {
  display: grid;
  gap: 6px;
  font-size: 12px;
}
.inquiry-box input,
.inquiry-box textarea {
  width: 100%;
}
.inquiry-box .honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.inquiry-box .small {
  margin: 0;
  line-height: 1.5;
}
.full {
  width: 100%;
}
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.thumbnails button {
  padding: 0;
  width: 60px;
}
.thumbnails img {
  width: 100%;
  display: block;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  font-size: 13px;
}
details p {
  margin-top: 15px;
}
details pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.empty {
  padding: 100px 10%;
  text-align: center;
  min-height: 450px;
}
.empty h1 {
  font-size: 46px;
  max-width: 800px;
  margin-inline: auto;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8%;
}
.checkout-grid aside {
  background: #edece3;
  padding: 32px;
  align-self: start;
}
.checkout-grid h2 {
  font-size: 32px;
}
.cart-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row img {
  width: 90px;
  height: 110px;
  object-fit: cover;
}
.cart-row h3 {
  margin: 0;
}
.cart-row p {
  font-size: 11px;
}
.cart-row > div {
  flex: 1;
}
.cart-row label {
  width: 60px;
}
.cart-row input {
  padding: 7px;
}
.plain {
  border: 0;
  text-decoration: underline;
  font-size: 11px;
}
.totals {
  margin: 22px 0;
}
.totals p {
  display: flex;
  justify-content: space-between;
}
.totals .grand {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 20px;
}
.totals small {
  color: var(--muted);
  font-size: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.form-grid label:nth-child(3) {
  grid-column: 1/-1;
}
.check {
  margin: 22px 0;
}
.check a {
  text-decoration: underline;
}
.notice {
  background: #e9e6d8;
  padding: 16px;
  margin-bottom: 25px;
  font-size: 12px;
}
.error {
  color: #923d2b;
  background: #f6e5df;
  padding: 15px;
}
.prose {
  max-width: 900px;
  min-height: 480px;
  margin: auto;
}
.prose p {
  max-width: 700px;
}
.prose h1 {
  font-size: 55px;
}
.demo-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.order-view {
  max-width: 1000px;
  margin: auto;
  overflow-wrap: anywhere;
}
.order-view h1 {
  font-size: 50px;
}
.panel h1 {
  font-size: 45px;
}
.panel-toolbar {
  padding: 25px 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: start;
}
.panel-toolbar form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.panel-toolbar input[type="number"] {
  width: 95px;
}
.admin-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.admin-products article {
  border: 1px solid var(--line);
  padding: 20px;
}
.admin-products img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.admin-products p {
  font-size: 12px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: #25251b80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--paper);
  padding: 30px;
  width: 700px;
  max-height: 90vh;
  overflow: auto;
}
.modal h2 {
  font-size: 30px;
}
.image-library {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.image-library img {
  width: 65px;
  display: block;
}
.modal fieldset {
  border: 1px solid var(--line);
  margin: 15px 0;
}
.modal form > button {
  margin-right: 12px;
}
fieldset label {
  display: inline-block;
  max-width: 30%;
  margin-right: 8px;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 760px;
  }
  .hero-copy {
    padding-top: 120px;
  }
}
@media (max-width: 1000px) {
  .hero {
    min-height: 530px;
  }
  .hero-copy {
    padding-top: 60px;
  }
  .hero-copy h1 {
    font-size: 55px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-copy {
    padding: 40px 9%;
  }
  .about-art {
    min-height: 400px;
  }
  .detail {
    gap: 5%;
  }
  .checkout-grid {
    gap: 4%;
  }
  .filters .chips {
    width: 100%;
  }
}
@media (max-width: 650px) {
  header {
    height: 88px;
    padding-inline: 6%;
  }
  .logo {
    gap: 7px;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
  }
  .logo-wordmark {
    font-size: 31px;
    letter-spacing: 4px;
  }
  .logo-wordmark small {
    font-size: 7px;
    letter-spacing: 3.2px;
  }
  header nav {
    gap: 16px;
    font-size: 10px;
  }
  header nav a:last-child {
    display: none;
  }
  .nav-actions {
    gap: 12px;
  }
  .nav-actions > a:first-child {
    display: none;
  }
  .announcement {
    font-size: 8px;
    letter-spacing: 0.3px;
    padding: 7px 12px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 43px 6% 27px;
  }
  .hero-copy h1 {
    font-size: 54px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-copy > p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-bottom {
    padding-top: 35px;
  }
  .hero-image {
    height: 410px;
  }
  .hero-image > img {
    object-position: center;
  }
  .values {
    padding: 18px 4%;
    font-size: 8px;
    letter-spacing: 0;
  }
  .section {
    padding: 45px 6%;
  }
  .section-heading {
    margin-bottom: 25px;
    align-items: center;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 15px;
  }
  .text-link {
    font-size: 10px;
  }
  .grid {
    gap: 25px 14px;
  }
  .product-title h3 {
    font-size: 20px;
  }
  .product-title {
    flex-wrap: wrap;
  }
  .product-title > span {
    font-size: 10px;
  }
  .badge {
    font-size: 7px;
    top: 8px;
    left: 8px;
    padding: 3px 5px;
  }
  .about {
    margin: 0 6% 50px;
    grid-template-columns: 1fr;
  }
  .about-art {
    min-height: 230px;
    max-height: 230px;
  }
  .about-art > span {
    font-size: 300px;
  }
  .about-copy {
    padding: 35px 9%;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding: 38px 6% 20px;
  }
  .footer-note {
    font-size: 23px;
  }
  .copyright {
    font-size: 8px;
  }
  .copyright span {
    display: none;
  }
  .catalog h1 {
    font-size: 47px;
  }
  .chips {
    gap: 6px;
  }
  .chips button {
    padding: 8px 11px;
    font-size: 10px;
  }
  .filters {
    gap: 10px;
  }
  .filters > label {
    flex: 1;
    min-width: 120px;
  }
  .filters .chips {
    margin-bottom: 0;
  }
  .detail,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .detail-copy {
    padding-top: 30px;
  }
  .detail h1 {
    font-size: 55px;
  }
  .checkout-grid aside {
    margin-top: 30px;
    padding: 24px;
  }
  .cart-row {
    gap: 12px;
  }
  .cart-row img {
    width: 65px;
    height: 90px;
  }
  .cart-row h3 {
    font-size: 17px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid label:nth-child(3) {
    grid-column: auto;
  }
  .empty {
    padding: 65px 7%;
  }
  .empty h1 {
    font-size: 39px;
  }
  .prose h1,
  .order-view h1 {
    font-size: 43px;
  }
  .admin-products {
    grid-template-columns: 1fr 1fr;
  }
  .admin-products article {
    padding: 10px;
  }
  .panel h1 {
    font-size: 35px;
  }
  .modal {
    padding: 20px;
  }
  .modal fieldset label {
    display: block;
    max-width: 100%;
  }
  .button {
    font-size: 11px;
    padding: 15px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Standalone OVH catalog */
.catalog-note { margin: 0 0 28px; max-width: 720px; color: var(--muted); font-size: 12px; }
.catalog .filters { margin-top: 28px; }
.catalog .filters label { min-width: 190px; }
.product-card[hidden] { display: none; }
.inquiry-box .button { margin: 10px 0 14px; }
.inquiry-form { display: grid; gap: 12px; margin-top: 20px; }
.inquiry-form label { display: block; font-size: 12px; }
.inquiry-form input:not([type="checkbox"]) { margin-bottom: 0; }
.inquiry-form .consent { display: block; line-height: 1.5; }
.inquiry-form .consent input { margin: 0 8px 0 0; vertical-align: middle; }
.inquiry-form .consent a { text-decoration: underline; }
.inquiry-form .form-status { min-height: 1.5em; margin: 0; }
.inquiry-form .form-status.error { color: #9a3123; }
.inquiry-form .honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.prose .button { margin: 12px 0 25px; }
.prose h2 { margin-top: 34px; }
.prose ul { padding-left: 22px; line-height: 1.8; }
.prose a { text-decoration: underline; }
.cookie-settings { display: block; border: 0; padding: 0; margin-top: 12px; background: none; color: inherit; font: inherit; text-align: left; text-decoration: underline; cursor: pointer; }
.cookie-banner[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 1000; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; max-width: 1000px; margin: auto; padding: 24px; background: #f8f5ee; color: #20241f; border: 1px solid #6b725e; box-shadow: 0 12px 35px #0003; }
.cookie-copy { max-width: 630px; }
.cookie-copy h2 { margin: 0 0 8px; font-size: 20px; }
.cookie-copy p { margin: 0; line-height: 1.6; font-size: 13px; }
.cookie-copy a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { min-height: 44px; padding: 10px 15px; border: 1px solid #20241f; background: transparent; color: #20241f; font: inherit; font-size: 12px; cursor: pointer; }
.cookie-actions button:last-child { background: #20241f; color: #fff; }
.cookie-actions button:focus-visible, .cookie-settings:focus-visible { outline: 3px solid #9f754d; outline-offset: 3px; }
@media (max-width: 700px) { .cookie-banner { left: 10px; right: 10px; bottom: 10px; display: block; padding: 18px; } .cookie-actions { margin-top: 15px; } .cookie-actions button { flex: 1 1 150px; } }
@media (max-width: 600px) { .catalog .filters label { width: 100%; } }
