:root {
  --ink: #302a24;
  --muted: #71685f;
  --olive: #777966;
  --olive-dark: #5f6252;
  --cream: #f7f4ee;
  --paper: #fffdfa;
  --sand: #e9e0d3;
  --line: #ded7ce;
  --danger: #994646;
  --serif: "Libre Caslon Text", Georgia, serif;
  --display: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--olive-dark);
  outline-offset: 3px;
}

.shell {
  width: min(1370px, calc(100% - 56px));
  margin-inline: auto;
}

.announcement {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 20px;
  color: #5d554d;
  background: #e9e0d3;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 215, 206, 0.88);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(12px);
}

.header-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.main-nav,
.header-tools {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a,
.header-tools a {
  position: relative;
  color: #4e473f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a::after,
.header-tools a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.header-tools a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  justify-content: flex-end;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 250px;
}

.brand-candles {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 24px;
}

.brand-candles i {
  position: relative;
  width: 7px;
  height: 16px;
  border: 1px solid #514940;
}

.brand-candles i:nth-child(2) {
  height: 22px;
}

.brand-candles i::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 2px;
  width: 2px;
  height: 4px;
  border-radius: 50% 50% 40% 40%;
  background: #9d7e55;
}

.brand strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.brand small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #eee6da;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(485px, 42%);
  margin-left: 8%;
}

.overline {
  margin: 0 0 13px;
  color: #5d594f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: 49px;
  font-weight: 400;
  line-height: 1.18;
}

.hero h1 em {
  color: var(--olive);
  font-weight: 400;
}

.hero-copy > p:not(.overline) {
  max-width: 430px;
  margin: 22px 0 0;
  color: #5e564e;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button-solid {
  color: #fff;
  background: var(--olive);
}

.button-solid:hover {
  background: var(--olive-dark);
}

.button-light {
  color: #4b483e;
  background: rgba(255, 253, 248, 0.92);
}

.button-soft {
  color: #514a43;
  background: #e9e0d3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.values-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.values-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.values-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.values-grid article:last-child {
  border-right: 0;
}

.value-icon {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 31px;
}

.values-grid strong,
.values-grid small {
  display: block;
}

.values-grid strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.values-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 10px;
}

.section {
  padding: 34px 0;
}

.creations {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-heading h2,
.promo-copy h2,
.contact-intro h2,
.status-panel h1,
.empty-state h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.section-heading h2 {
  font-size: 25px;
}

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

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

.product-card {
  min-width: 0;
}

.product-visual {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: #efe8de;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.025);
}

.new-label {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  background: rgba(255, 253, 248, 0.92);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  padding: 13px 2px 0;
}

.product-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.product-info span {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 12px;
}

.workshop-feature {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  background: #777866;
}

.workshop-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workshop-overlay {
  position: absolute;
  inset: 0;
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
  color: #fff;
  background: linear-gradient(90deg, rgba(104, 107, 88, 0.97) 0%, rgba(104, 107, 88, 0.88) 78%, rgba(104, 107, 88, 0) 100%);
}

.workshop-overlay .overline {
  color: rgba(255, 255, 255, 0.82);
}

.workshop-overlay h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.workshop-overlay p:not(.overline) {
  margin: 15px 0 23px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 12px;
}

.split-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
  border-bottom: 1px solid var(--line);
}

.custom-promo,
.contact-promo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.custom-promo {
  border-right: 1px solid var(--line);
}

.custom-promo > img,
.contact-promo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url("../images/sur-mesure.webp") center / cover no-repeat;
}

.custom-promo .promo-copy,
.contact-promo .promo-copy {
  position: relative;
  z-index: 1;
  width: 50%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 32px 10%;
}

.contact-promo .promo-copy {
  margin-left: 5%;
}

.promo-copy h2 {
  font-size: 24px;
  line-height: 1.12;
}

.promo-copy p {
  max-width: 310px;
  margin: 14px 0 19px;
  color: #5f574f;
  font-family: var(--serif);
  font-size: 12px;
}

.promo-copy .button {
  align-self: flex-start;
}

.about-section {
  background: #777866;
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  padding-block: 22px;
}

.about-grid .overline {
  color: rgba(255, 255, 255, 0.74);
}

.about-grid blockquote {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}

.contact-section {
  padding: 72px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.contact-intro h2 {
  max-width: 530px;
  font-size: 38px;
  line-height: 1.18;
}

.contact-intro > p:not(.overline) {
  max-width: 480px;
  margin: 22px 0;
  color: var(--muted);
  font-family: var(--serif);
}

.contact-intro > a {
  border-bottom: 1px solid currentColor;
  color: var(--olive-dark);
  font-weight: 600;
}

.contact-form,
.panel-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.form-full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: #4e473f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdb4aa;
  border-radius: 0;
  padding: 11px 2px;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive-dark);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 42px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  place-items: center;
  color: #696158;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--olive-dark);
}

.password-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 1px;
}

.password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 25px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.flash {
  margin: 16px 0;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.flash-success {
  color: #335b3d;
}

.flash-error {
  color: var(--danger);
}

.site-footer {
  padding: 45px 0;
  border-top: 1px solid var(--line);
  background: #f1ebe3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--muted);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-page {
  padding: 58px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: 78px;
  align-items: start;
}

.product-gallery {
  overflow: hidden;
  background: #eee7dd;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-summary {
  position: sticky;
  top: 130px;
  padding-top: 10px;
}

.back-link {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--muted);
  font-size: 11px;
}

.product-summary h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.product-fragrance {
  margin: 14px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

.product-price {
  display: block;
  margin: 24px 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.product-description {
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.8;
}

.product-specs {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  font-family: var(--serif);
}

.purchase-form {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: end;
  margin-top: 28px;
}

.purchase-form label {
  gap: 5px;
}

.purchase-form select {
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.share-block {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.share-block > span {
  width: 100%;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.share-block button,
.share-block a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.share-block .is-done {
  color: #fff;
  background: var(--olive);
}

.status-panel,
.empty-state {
  width: min(720px, 100%);
  margin: 30px auto;
  padding: 60px;
  border: 1px solid var(--line);
  text-align: center;
}

.status-panel h1,
.empty-state h1 {
  font-size: 40px;
}

.status-panel p:not(.overline),
.empty-state p:not(.overline) {
  margin: 18px auto 28px;
  color: var(--muted);
  font-family: var(--serif);
}

/* Administration */

.admin-ui {
  min-height: 100vh;
  background: #f3f1ed;
}

.admin-header {
  border-bottom: 1px solid #d8d4cd;
  background: #27342f;
  color: #fff;
}

.admin-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.admin-brand {
  font-family: var(--serif);
  font-size: 20px;
}

.admin-brand span {
  margin-left: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-nav {
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.admin-ui .section {
  padding: 46px 0;
}

.admin-ui .narrow-section,
.admin-dashboard {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.admin-ui .narrow-section {
  max-width: 760px;
}

.admin-ui h1,
.admin-ui h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.admin-ui h1 {
  margin: 4px 0 22px;
  font-size: 36px;
}

.admin-ui .overline,
.admin-ui .eyebrow {
  margin: 0;
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-ui .panel-form {
  margin-top: 20px;
  background: #fff;
}

.admin-ui .form-grid {
  gap: 18px;
}

.admin-ui input,
.admin-ui select,
.admin-ui textarea {
  border: 1px solid #ccc7bf;
  padding: 11px 12px;
  background: #fff;
}

.admin-ui .button {
  color: var(--ink);
  border-color: #b8b2aa;
  background: #fff;
}

.admin-ui .button-primary {
  color: #fff;
  border-color: #27342f;
  background: #27342f;
}

.admin-ui .button-danger {
  color: #fff;
  border-color: var(--danger);
  background: var(--danger);
}

.admin-ui .button-small {
  min-height: 34px;
  padding: 0 12px;
}

.admin-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 24px 0;
}

.stat-row div {
  padding: 22px;
  border: 1px solid #d8d4cd;
  background: #fff;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-family: var(--serif);
  font-size: 28px;
}

.stat-row span {
  color: var(--muted);
  font-size: 12px;
}

.admin-section {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #d8d4cd;
  background: #fff;
}

.admin-section h2 {
  margin: 0 0 18px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #e0ddd7;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.message-list {
  display: grid;
  gap: 12px;
}

.message-list article {
  padding: 16px;
  border: 1px solid #e0ddd7;
}

.message-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.message-list article p {
  color: var(--muted);
}

.form-preview {
  width: min(280px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
}

.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: auto;
}

.muted {
  color: var(--muted);
}

.admin-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #27342f;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 36px, 1120px);
  }

  .main-nav,
  .header-tools {
    gap: 18px;
  }

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

  .workshop-feature {
    min-height: 380px;
  }

  .hero-copy {
    margin-left: 3%;
  }
}

@media (max-width: 900px) {
  .announcement {
    min-height: 36px;
  }

  .header-grid {
    min-height: 80px;
    grid-template-columns: 44px 1fr 44px;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fffdfa;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .header-tools a:first-child {
    display: none;
  }

  .header-tools {
    justify-content: flex-end;
  }

  .header-tools a {
    font-size: 9px;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 243, 235, 0.98) 0%, rgba(248, 243, 235, 0.9) 45%, rgba(248, 243, 235, 0.08) 100%);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: 58%;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid article {
    min-height: 74px;
    border-bottom: 1px solid var(--line);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
  }

  .split-promos,
  .contact-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .custom-promo {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .custom-promo,
  .contact-promo {
    min-height: 320px;
  }

  .custom-promo .promo-copy,
  .contact-promo .promo-copy {
    min-height: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-grid {
    gap: 40px;
  }

  .product-layout {
    gap: 38px;
  }

  .product-summary {
    position: static;
  }

  .back-link {
    margin-bottom: 25px;
  }

  .admin-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .announcement span {
    display: none;
  }

  .announcement {
    font-size: 9px;
  }

  .brand-candles {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(248, 243, 235, 0.97) 0%, rgba(248, 243, 235, 0.92) 50%, rgba(248, 243, 235, 0.08) 100%);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 62px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 37px;
  }

  .hero-copy > p:not(.overline) {
    max-width: 330px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .values-grid article {
    justify-content: flex-start;
    padding: 0 28px;
    border-right: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .product-visual {
    aspect-ratio: 1 / 0.92;
  }

  .workshop-feature {
    min-height: 500px;
  }

  .workshop-feature > img {
    object-position: 62% center;
  }

  .workshop-overlay {
    top: auto;
    width: 100%;
    min-height: 55%;
    padding: 28px;
    background: linear-gradient(0deg, rgba(95, 98, 82, 0.98) 0%, rgba(95, 98, 82, 0.92) 75%, rgba(95, 98, 82, 0) 100%);
  }

  .custom-promo .promo-copy,
  .contact-promo .promo-copy {
    width: 70%;
    padding-left: 24px;
  }

  .about-grid blockquote {
    font-size: 18px;
  }

  .contact-section {
    padding: 52px 0;
  }

  .contact-intro h2 {
    font-size: 31px;
  }

  .contact-form,
  .panel-form {
    padding: 22px;
  }

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

  .form-full {
    grid-column: auto;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-credit {
    grid-column: auto;
  }

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

  .product-summary h1 {
    font-size: 38px;
  }

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

  .status-panel,
  .empty-state {
    padding: 34px 20px;
  }

  .admin-header-inner,
  .admin-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header-inner {
    padding-block: 16px;
  }

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