* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink, #172335);
  background: var(--paper, #f7f4ed);
  font:
    16px/1.65 Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif, Georgia);
  font-weight: 400;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1.4rem;
}
img {
  display: block;
  max-width: 100%;
}
.announcement {
  background: var(--navy);
  color: #eee6d7;
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 0.19em;
}
.header {
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4.5%;
  border-bottom: 1px solid #1723351a;
  position: relative;
  z-index: 10;
  background: var(--paper);
}
.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  flex: 1;
}
.right-nav {
  justify-content: flex-end;
}
.brand {
  width: 150px;
  flex-shrink: 0;
  margin: 0 24px;
}
.brand img {
  width: 150px;
  height: 75px;
  object-fit: contain;
}
.icon-btn {
  border: 0;
  background: none;
  color: inherit;
  font-size: 28px;
  padding: 6px;
  line-height: 1;
}
.bag-link span {
  border: 1px solid #9d937d;
  border-radius: 100%;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 5px;
}
.mobile-toggle {
  display: none;
}
.mobile-nav {
  background: var(--paper);
  padding: 20px 6%;
  border-bottom: 1px solid #ddd;
}
.mobile-nav a {
  display: block;
  padding: 10px;
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--navy);
  color: #f8f3e7;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 14, 30, 0.35), transparent 67%);
  z-index: -1;
}
.hero-copy {
  padding: 70px 6%;
  max-width: 710px;
}
.hero-copy h1 {
  white-space: pre-line;
  margin: 20px 0 26px;
  font-size: clamp(3rem, 4.6vw, 5rem);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 385px;
  color: #ede6d9;
  margin-bottom: 32px;
  font-size: 17px;
}
.hero .eyebrow {
  color: #cfb784;
}
.hero-caption {
  position: absolute;
  bottom: 20px;
  right: 4%;
  font-size: 12px;
  letter-spacing: 0.17em;
  color: #eee4d5;
}
.eyebrow {
  font:
    12px/1.5 Arial,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #786845;
  margin-bottom: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  padding: 15px 25px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn:hover {
  background: #23344c;
}
.btn-ivory {
  color: var(--navy);
  background: #f3eee1;
  border-color: #f3eee1;
}
.btn-ivory:hover {
  background: white;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-outline:hover {
  background: #e7e0d0;
}
.btn-small {
  padding: 10px 18px;
}
.full {
  width: 100%;
}
.section {
  max-width: var(--width, 1360px);
  padding: 80px 5%;
  margin: auto;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin-bottom: 15px;
}
.section-heading p {
  margin-bottom: 0;
  color: #657075;
}
.text-link {
  display: inline-block;
  font-size: 14px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  white-space: nowrap;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.product-photo {
  position: relative;
  background: #eee9df;
  display: block;
  aspect-ratio: var(--card-ratio);
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: var(--card-fit);
  transition: transform 0.4s;
}
.product-photo:hover img {
  transform: scale(1.04);
}
.badge {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #f7f4edeb;
  padding: 5px 9px;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.card-copy {
  padding: 20px 0;
}
.card-copy .eyebrow {
  font-size: 12px;
  margin: 0 0 9px;
}
.card-copy h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.text-button {
  background: none;
  border: 0;
  border-bottom: 1px solid #a68a5580;
  padding: 3px 0;
  color: inherit;
  font-size: 14px;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eae4d8;
}
.split-image {
  min-height: 500px;
}
.split-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 14%;
}
.split-copy h2 {
  white-space: pre-line;
}
.split-copy p {
  color: #586166;
}
.split-copy .btn {
  align-self: flex-start;
  margin-top: 20px;
}
.reverse .split-image {
  order: 2;
}
.quote-section {
  text-align: center;
  padding: 90px 20px;
  border-bottom: 1px solid #1723351a;
}
.quote-section h2 {
  white-space: pre-line;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  margin: 18px 0 26px;
}
.ornament {
  color: var(--gold);
  font-size: 30px;
}
.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.newsletter h2 {
  font-size: 32px;
}
.newsletter p {
  font-size: 15px;
  color: #657075;
}
.inline-input {
  display: flex;
  border-bottom: 1px solid #9c967e;
}
.inline-input input {
  border: 0;
  background: none;
  flex: 1;
  min-width: 0;
}
.inline-input button {
  background: none;
  border: 0;
  min-width: 45px;
  color: var(--navy);
}
.footer {
  background: var(--navy);
  color: #eee6d7;
  padding: 65px 5% 25px;
}
.footer-top {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 50px;
}
.wordmark {
  font:
    38px/1 Georgia,
    serif;
  font-variant: small-caps;
}
.footer-brand p {
  margin-top: 22px;
  color: #c0bdba;
  font-size: 14px;
}
.footer h3 {
  font: 14px Arial;
  letter-spacing: 0.07em;
  margin-bottom: 25px;
  color: #d1b97f;
}
.footer a {
  display: block;
  font-size: 14px;
  color: #ddd6ca;
  margin: 10px 0;
}
.footer select {
  color-scheme: light;
  background-color: #f7f4ed;
  color: #172335;
  border: 1px solid #a68a55;
  width: 110px;
}
.footer select option {
  background-color: #f7f4ed;
  color: #172335;
}
.footer select:focus-visible {
  outline: 2px solid #d5bd89;
  outline-offset: 3px;
}
.footer .small {
  color: #afaca6;
  margin-top: 18px;
}
.footer-bottom {
  max-width: 1250px;
  margin: 55px auto 0;
  border-top: 1px solid #ffffff24;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #bab7b0;
}
.footer-bottom div {
  display: flex;
  gap: 25px;
}
.footer-bottom a {
  font-size: 12px;
  margin: 0;
}
.small {
  font-size: 13px;
  line-height: 1.6;
  color: #657075;
}
.skip {
  position: absolute;
  left: 10px;
  top: -60px;
  z-index: 200;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 5px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shop-heading {
  text-align: center;
  padding-bottom: 40px;
}
.testimonials-section {
  border-top: 1px solid #d8d0c1;
}
.testimonials-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  overflow-wrap: anywhere;
}
.testimonials-heading h2 {
  margin-bottom: 16px;
}
.testimonials-grid {
  display: grid;
  gap: 24px;
}
.testimonials-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonials-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 30px;
  background: #fffdf8;
  color: var(--ink);
  border: 1px solid #d8d0c1;
  border-top: 3px solid var(--gold);
  border-radius: var(--radius, 4px);
  overflow-wrap: anywhere;
  break-inside: avoid;
}
.testimonial-rating {
  color: #886622;
  letter-spacing: 0.14em;
  font-size: 17px;
  line-height: 1;
  margin: 0 0 22px;
}
.testimonial-unfilled {
  color: #797163;
}
.testimonial-card blockquote {
  margin: 0 0 26px;
  font-family: var(--serif, Georgia);
  font-size: 22px;
  line-height: 1.55;
}
.testimonial-card blockquote p {
  white-space: pre-line;
  margin: 0;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-card figcaption img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card figcaption strong,
.testimonial-card figcaption span {
  display: block;
  font-size: 14px;
}
.testimonial-card figcaption span {
  margin-top: 3px;
  font-size: 13px;
}
@media (max-width: 960px) {
  .testimonials-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .testimonial-card {
    padding: 24px;
  }
}
.shop-heading h1 {
  margin-bottom: 20px;
}
.shop-section {
  padding-top: 0;
}
.shop-filters {
  padding: 24px;
  border: 1px solid #cbc5b9;
  border-radius: var(--radius, 4px);
  background: #ffffff60;
  margin-bottom: 30px;
}
.category-navigation {
  min-width: 0;
  margin-bottom: 20px;
}
.shop-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 11px 20px;
  border: 1px solid #c7c2b8;
  border-radius: max(var(--radius, 4px), 4px);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-align: center;
}
.category-tab:hover {
  border-color: var(--navy);
  text-decoration: none;
}
.category-tab.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.filter-controls {
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #cbc5b9;
}
.filter-controls input {
  flex: 1;
  min-width: 0;
}
.filter-controls select {
  max-width: 175px;
}
.shop-results-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
}
.shop-results-heading h2 {
  margin: 0;
  font-size: 30px;
  overflow-wrap: anywhere;
}
.shop-results-heading p {
  margin: 0;
  font-size: 14px;
}
.empty {
  text-align: center;
  padding: 70px 15px;
}
.empty p {
  margin-bottom: 30px;
}
.breadcrumb {
  font-size: 12px;
  color: #71777a;
  margin-bottom: 35px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
}
.gallery > img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: contain;
  background: #eee9df;
}
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.thumbnails button {
  width: 70px;
  padding: 0;
  border: 1px solid #ccc;
  background: none;
}
.thumbnails img {
  aspect-ratio: 1;
  object-fit: cover;
}
.product-info h1 {
  font-size: 46px;
}
.product-price {
  font-size: 21px;
  color: #806a3e;
}
.lead {
  font-size: 16px;
  color: #647075;
}
.quantity-add {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.quantity {
  width: 90px;
}
.quantity input {
  text-align: center;
}
.quantity-add .btn {
  flex: 1;
}
.product-service {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-block: 1px solid #d8d0c1;
  margin: 28px 0;
  padding: 18px 0;
  gap: 10px;
}
details {
  border-bottom: 1px solid #d0c9bb;
  padding: 17px 0;
}
summary {
  cursor: pointer;
  font: 20px Georgia;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
summary:after {
  content: "+";
  font: 20px Arial;
  color: #83714e;
}
details[open] summary:after {
  content: "−";
}
details p {
  margin: 20px 0 5px;
  color: #626b70;
  white-space: pre-line;
  font-size: 15px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c7c6bd;
  border-radius: var(--radius);
  background: #ffffff60;
  color: var(--ink);
  min-height: 46px;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 17px;
}
label input,
label select,
label textarea {
  margin-top: 7px;
}
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  display: inline-block;
  flex-shrink: 0;
  accent-color: var(--navy);
  margin: 4px 6px 0 0;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  line-height: 1.6;
  margin: 18px 0;
}
.check a {
  text-decoration: underline;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.span-2 {
  grid-column: span 2;
}
.bag-layout,
.checkout-layout,
.account-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 70px;
}
.bag-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid #d8d0c1;
  padding: 22px 0;
}
.bag-item > img {
  width: 105px;
  height: 135px;
  object-fit: cover;
}
.bag-item > div {
  flex: 1;
}
.bag-item h3 {
  font-size: 22px;
  margin: 6px 0;
}
.bag-item p {
  font-size: 14px;
  margin-bottom: 12px;
}
.bag-item label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bag-item input {
  width: 65px;
  padding: 4px;
  text-align: center;
  margin: 0;
}
.bag-item .text-button {
  margin-left: 15px;
}
.bag-item > strong {
  font-size: 14px;
}
.summary-card {
  background: #eee9df;
  padding: 30px;
  align-self: start;
}
.summary-card h2 {
  font-size: 28px;
}
.summary-card .text-link {
  margin: 20px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #cfc7b7;
  padding: 14px 0;
  font-size: 14px;
}
.summary-row:last-child {
  font-size: 18px;
}
.summary-card h3 {
  margin: 28px 0 10px;
}
.summary-card > p {
  font-size: 14px;
}
.checkout-layout h2 {
  font-size: 28px;
  margin: 30px 0 25px;
}
.checkout-layout h2:first-child {
  margin-top: 0;
}
.method-option {
  display: flex;
  gap: 10px;
  border: 1px solid #d2cabc;
  padding: 14px;
  align-items: flex-start;
  cursor: pointer;
}
.method-option input {
  margin-top: 4px;
}
.method-option > span {
  flex: 1;
}
.method-option small {
  display: block;
  color: #6f777a;
}
.policy {
  border: 1px solid var(--gold);
  padding: 15px;
  color: #675127;
}
.form-error {
  color: #9b2f2f;
  line-height: 1.5;
}
.auth-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 80px auto;
  min-height: 570px;
  background: #ece6da;
}
.auth-intro {
  padding: 75px 55px;
  background: var(--navy);
  color: #f1eadb;
}
.auth-intro .eyebrow {
  color: #cbb382;
}
.auth-intro h1 {
  font-size: 52px;
  margin: 40px 0 30px;
}
.auth-intro p {
  color: #c3c6c6;
}
.auth-panel {
  padding: 50px;
}
.auth-panel h2 {
  font-size: 30px;
}
.auth-panel .text-link {
  margin: 22px 0;
}
.auth-panel > p {
  font-size: 14px;
}
.notice {
  background: #ece3cc;
  border: 1px solid #cfbc8e;
  padding: 16px 20px;
  margin-bottom: 25px;
  font-size: 14px;
}
.notice.error {
  background: #fbe8e2;
  border-color: #d49884;
}
.payment-notice {
  overflow-wrap: anywhere;
  break-inside: avoid;
}
.payment-notice strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
}
.payment-notice p {
  margin: 8px 0 0;
}
.payment-notice.success {
  background: #edf5ef;
  border-color: #8aad97;
  color: #244b34;
}
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #d4ccbe;
  font-size: 14px;
}
.order-row p {
  margin-bottom: 0;
}
.status {
  background: #e0e5da;
  padding: 4px 9px;
  font-size: 12px;
  text-transform: capitalize;
  border-radius: 3px;
}
.timeline {
  border-left: 1px solid var(--gold);
  padding-left: 23px;
}
.timeline time {
  font-size: 12px;
  color: #847753;
}
.timeline p {
  font-size: 14px;
  margin: 5px 0 20px;
}
.prose {
  max-width: 900px;
  min-height: 45vh;
}
.prose h1 {
  font-size: 48px;
}
.rich-body {
  white-space: pre-line;
}
.rich-body p {
  white-space: normal;
}
.rich-body a {
  text-decoration: underline;
}
.full-image {
  width: 100%;
}
.image-caption {
  text-align: center;
  font-size: 14px;
  margin: 15px 0;
}
.info-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
}
dialog {
  border: 1px solid #d0c3a8;
  background: var(--paper);
  color: var(--ink);
  max-width: 650px;
  width: 90vw;
  padding: 45px;
  max-height: 85vh;
}
dialog::backdrop {
  background: #09182aaa;
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 28px;
}
.search-result {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.search-result img {
  width: 55px;
  height: 65px;
  object-fit: cover;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  padding: 16px 25px;
  box-shadow: 0 4px 30px #0003;
  z-index: 100;
  max-width: 90vw;
  font-size: 14px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid #d3cbbb;
  font-size: 14px;
}
.receipt-totals {
  text-align: right;
  padding-top: 20px;
}
.invoice {
  max-width: 1000px;
}
.invoice h1 {
  font-size: 42px;
}
.invoice p {
  font-size: 14px;
}
.align-right {
  margin-left: auto;
}
.mobile-nav[hidden],
.toast[hidden] {
  display: none !important;
}
@media (max-width: 1000px) {
  .header nav {
    gap: 18px;
  }
  .hero-copy {
    max-width: 580px;
  }
  .hero-copy h1 {
    font-size: 54px;
  }
  .hero {
    min-height: 580px !important;
  }
  .product-grid {
    gap: 16px;
  }
  .card-bottom {
    flex-wrap: wrap;
  }
  .split-copy {
    padding: 45px 9%;
  }
  .product-detail {
    gap: 35px;
  }
  .product-info h1 {
    font-size: 38px;
  }
  .bag-layout,
  .checkout-layout,
  .account-layout {
    gap: 30px;
  }
  .filter-controls input {
    width: 135px;
  }
  .shop-filters {
    flex-wrap: wrap;
  }
  .footer-top {
    gap: 30px;
  }
  .section {
    padding: 60px 5%;
  }
}
@media (max-width: 680px) {
  .announcement {
    font-size: 12px;
    letter-spacing: 0.13em;
    padding: 9px;
  }
  .header {
    height: 93px;
    padding: 10px 5%;
  }
  .header .left-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .brand {
    width: 118px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .brand img {
    width: 118px;
    height: 60px;
  }
  .header .right-nav {
    flex: none;
    margin-left: auto;
    gap: 12px;
  }
  .account-link {
    display: none;
  }
  .right-nav .icon-btn {
    font-size: 25px;
  }
  .bag-link {
    font-size: 12px;
  }
  .bag-link span {
    padding: 1px 5px;
  }
  .hero {
    min-height: 690px !important;
    align-items: flex-start;
  }
  .hero-image {
    height: 62%;
    top: auto;
    bottom: 0;
    object-position: 75% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      var(--navy) 15%,
      var(--navy) 29%,
      transparent 55%
    );
  }
  .hero-copy {
    padding: 38px 7%;
    max-width: 100%;
  }
  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.07;
    margin: 13px 0 18px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 90%;
    margin-bottom: 21px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-caption {
    font-size: 12px;
    bottom: 10px;
  }
  .btn {
    padding: 13px 19px;
    gap: 20px;
  }
  .section {
    padding: 45px 6%;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading .text-link {
    margin-top: 18px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .card-copy {
    padding: 14px 0;
  }
  .card-copy h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .card-copy .eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .badge {
    font-size: 12px;
    top: 8px;
    left: 8px;
    padding: 4px 6px;
  }
  .card-bottom {
    display: block;
    font-size: 13px;
  }
  .card-bottom .text-button {
    display: block;
    font-size: 12px;
    margin-top: 10px;
  }
  .split-section {
    display: flex;
    flex-direction: column;
  }
  .split-image {
    min-height: 0;
    height: 300px;
  }
  .split-copy {
    padding: 40px 8%;
  }
  .split-copy h2 {
    font-size: 36px;
  }
  .split-copy p {
    font-size: 15px;
  }
  .reverse .split-image {
    order: 0;
  }
  .quote-section {
    padding: 50px 15px;
  }
  .quote-section h2 {
    font-size: 37px;
  }
  .newsletter {
    display: block;
  }
  .newsletter form {
    margin-top: 28px;
  }
  .newsletter h2 {
    font-size: 30px;
  }
  .footer {
    padding: 45px 7% 25px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer h3 {
    margin-bottom: 15px;
  }
  .footer a {
    font-size: 13px;
  }
  .footer-bottom {
    display: block;
    margin-top: 35px;
  }
  .footer-bottom div {
    margin-top: 17px;
    flex-wrap: wrap;
  }
  .shop-heading {
    padding-bottom: 25px;
  }
  .shop-heading h1 {
    font-size: 45px;
  }
  .shop-section {
    padding-top: 0;
  }
  .shop-filters {
    padding: 18px 14px;
  }
  .category-tab {
    flex: 1 1 auto;
    padding: 10px 14px;
  }
  .filter-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 7px;
  }
  .filter-controls input,
  .filter-controls select {
    width: 100%;
    min-width: 0;
    font-size: 12px;
    padding: 8px;
  }
  .filter-controls .btn {
    font-size: 12px;
    padding: 8px 10px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .product-info h1 {
    font-size: 38px;
  }
  .gallery > img {
    aspect-ratio: 1;
  }
  .product-service {
    font-size: 12px;
  }
  .bag-layout,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .bag-item {
    gap: 15px;
  }
  .bag-item > img {
    width: 75px;
    height: 100px;
  }
  .bag-item h3 {
    font-size: 20px;
  }
  .bag-item > strong {
    font-size: 12px;
  }
  .bag-item .eyebrow {
    font-size: 12px;
  }
  .bag-item label {
    font-size: 12px;
  }
  .bag-item .text-button {
    margin-left: 0;
    display: block;
  }
  .summary-card {
    padding: 24px;
  }
  .form-grid {
    gap: 0 14px;
  }
  .auth-section {
    margin: 0;
    display: block;
  }
  .auth-intro {
    padding: 34px 7%;
  }
  .auth-intro h1 {
    font-size: 38px;
    margin: 20px 0;
  }
  .auth-intro > p:last-child {
    display: none;
  }
  .auth-panel {
    padding: 35px 7%;
  }
  .order-row {
    gap: 10px;
    font-size: 12px;
  }
  .prose h1 {
    font-size: 37px;
  }
  .section > h1 {
    font-size: 43px;
  }
  .invoice th,
  .invoice td {
    padding: 10px;
    font-size: 12px;
  }
  dialog {
    padding: 35px 22px;
  }
  .hero-copy .btn {
    font-size: 13px;
  }
}
@media print {
  .header,
  .footer,
  .announcement,
  .btn,
  .skip,
  .toast {
    display: none !important;
  }
  .section {
    padding: 0;
  }
  .invoice {
    max-width: none;
  }
  body {
    background: white;
  }
  .invoice h1 {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.footer-brand > img {
  width: 150px;
  height: 75px;
  object-fit: contain;
  filter: brightness(0) invert(0.92) sepia(0.2);
}

/* Product availability remains visible without JavaScript. */
.availability-badge {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #c7bda9;
  white-space: normal;
  max-width: calc(100% - 24px);
}
.product-card-action {
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px 10px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 12px;
}
.product-availability {
  padding: 20px 0;
  border-top: 1px solid #d8d0c1;
  margin-top: 20px;
}
.product-availability > p {
  font-size: 13px;
  font-weight: 600;
}
.product-availability h2 {
  font-size: 24px;
  margin: 18px 0 10px;
}
.product-availability p {
  line-height: 1.6;
}
#stock-alert-panel {
  background: #a68a550f;
  padding: 18px;
  margin-top: 16px;
}
#stock-alert-panel[hidden],
.compare-price[hidden] {
  display: none;
}
.stock-alert-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.6;
}
.stock-alert-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
#stock-alert-message {
  font-size: 13px;
  margin-top: 14px;
}
.compare-price {
  font-size: 14px;
  opacity: 0.7;
  margin-top: -14px;
}

.storefront .product-app-buy .btn {
  white-space: normal;
  max-width: 52%;
  line-height: 1.3;
  text-align: center;
}
.availability-request {
  gap: 20px;
  flex-wrap: wrap;
}
.availability-request > div {
  min-width: 0;
  flex: 1 1 220px;
  overflow-wrap: anywhere;
}
