@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  font-family: 'DM Sans', sans-serif;
  color: #242720;
  background: #f8f6f1;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f6f1;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

/* =========================
   SHARED
========================= */

.eyebrow {
  color: #73766f;
  font-size: 10px;
  letter-spacing: 1.8px;
  line-height: 1.4;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* =========================
   ANNOUNCEMENT
========================= */

.announcement {
  background: #2f3a31;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.35px;
  padding: 11px 20px;
  text-align: center;
}

/* =========================
   HEADER
========================= */

.site-header {
  align-items: center;
  background: #f8f6f1;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 6vw;
  position: relative;
  z-index: 20;
}

.logo {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 4px;
}

.logo span {
  color: #b56245;
}

.site-header nav {
  display: flex;
  gap: 36px;
}

.site-header nav a {
  font-size: 14px;
  position: relative;
}

.site-header nav a::after {
  background: #242720;
  bottom: -7px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  width: 100%;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
}

.bag-button {
  background: none;
  border: 0;
  color: #242720;
  font-size: 14px;
  padding: 8px 0;
}

.menu-button {
  background: none;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 8px 14px;
}

.menu-button span {
  background: #242720;
  display: block;
  height: 1px;
  width: 24px;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 123px));
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #777b73;
}

/* Hero images */

.hero-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;

  opacity: 0;
  transform: scale(1.025);

  z-index: 0;

  transition:
    opacity 1.4s ease,
    transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(27, 37, 29, 0.68) 0%,
      rgba(27, 37, 29, 0.48) 34%,
      rgba(27, 37, 29, 0.16) 72%,
      rgba(27, 37, 29, 0.03) 100%
    );

  z-index: 1;
}

/* Hero text */

.hero-content {
  color: #ffffff;
  max-width: 620px;
  margin-left: 9vw;
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  color: #ffffff;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(46px, 5.2vw, 72px);
  letter-spacing: -2.5px;
  line-height: 1.03;
  margin-bottom: 0;
}

.hero h1 em {
  font-weight: 500;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 27px 0 31px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.94);
}

.primary-button {
  align-items: center;
  background: #ffffff;
  color: #242720;
  display: inline-flex;
  font-size: 14px;
  gap: 35px;
  padding: 17px 22px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.primary-button span {
  font-size: 17px;
}

.primary-button:hover {
  background: #e9e2d7;
  transform: translateY(-2px);
}

/* Hero slide indicators */

.hero-controls {
  position: absolute;
  right: 9vw;
  bottom: 34px;

  display: flex;
  align-items: center;
  gap: 9px;

  z-index: 4;
}

.hero-dot {
  width: 28px;
  height: 2px;

  padding: 0;
  border: 0;

  background: rgba(255, 255, 255, 0.42);

  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.hero-dot.active {
  width: 52px;
  background: #ffffff;
}

/* Scroll indicator */

.hero-scroll {
  align-items: center;
  bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  font-size: 9px;
  gap: 12px;
  letter-spacing: 1.4px;
  position: absolute;
  right: 9vw;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
  z-index: 3;
}

.hero-scroll-line {
  background: rgba(255, 255, 255, 0.7);
  height: 1px;
  width: 55px;
}

/* =========================
   INTRO
========================= */

.intro {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(231, 225, 214, 0.55),
      transparent 55%
    ),
    #f8f6f1;

  padding: 125px 24px 120px;
  text-align: center;
}

.intro-inner {
  margin: 0 auto;
  max-width: 820px;
}

.intro h2 {
  font-size: clamp(39px, 4.3vw, 57px);
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 25px;
}

.intro-inner > p:last-child {
  color: #686b64;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 650px;
}

/* =========================
   PRODUCTS
========================= */

.featured {
  background: #f0ede6;
  margin: 0;
  padding: 105px 5vw 125px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 47px;
  max-width: 1370px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

.section-heading h2 {
  font-size: clamp(39px, 4.2vw, 54px);
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin: 0;
}

.collection-note {
  color: #777970;
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 4px;
  max-width: 260px;
  text-align: right;
}

.product-grid {
  display: grid;
  gap: 55px 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1370px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-image-wrap {
  background: #e8e3da;
  overflow: hidden;
  position: relative;
}

.product-image-wrap::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: '';
  inset: 9px;
  pointer-events: none;
  position: absolute;
}

.product-card img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

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

.product-category {
  color: #777970;
  font-size: 10px;
  letter-spacing: 1.5px;
  margin: 17px 0 8px;
  text-transform: uppercase;
}

.product-card h3 {
  color: #242720;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 14px;
  min-height: 45px;
}

.product-bottom {
  align-items: center;
  border-top: 1px solid #d7d2c8;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.product-bottom > span {
  color: #242720;
  font-size: 14px;
  font-weight: 500;
}

.product-bottom button {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: inline-flex;
  font-size: 11px;
  gap: 9px;
  padding: 9px 12px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.product-bottom button span {
  font-size: 13px;
}

.product-bottom button:hover {
  background: #b56245;
  border-color: #b56245;
  transform: translateY(-1px);
}

/* =========================
   STORY
========================= */

.story {
  background: #e4dfd5;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
}

.story-image {
  background:
    linear-gradient(
      135deg,
      rgba(47, 58, 49, 0.08),
      rgba(47, 58, 49, 0)
    ),
    #d3cec3;

  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.story-image::before {
  background:
    radial-gradient(
      ellipse at 35% 45%,
      rgba(255, 255, 255, 0.38),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      transparent 45%,
      rgba(105, 96, 80, 0.09) 45%,
      rgba(105, 96, 80, 0.09) 46%,
      transparent 46%
    );

  content: '';
  inset: 0;
  position: absolute;
}

.story-image-caption {
  bottom: 27px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  left: 28px;
  letter-spacing: 1.3px;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  z-index: 2;
}

.story-content {
  align-self: center;
  max-width: 610px;
  padding: 11%;
}

.story-content h2 {
  font-size: clamp(40px, 4.4vw, 58px);
  letter-spacing: -1.6px;
  line-height: 1.04;
  margin-bottom: 27px;
}

.story-content > p:not(.eyebrow) {
  color: #62655e;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 490px;
}

.story-content > a {
  align-items: center;
  border-bottom: 1px solid #242720;
  display: inline-flex;
  font-size: 13px;
  gap: 14px;
  margin-top: 29px;
  padding-bottom: 8px;
}

.story-content > a span {
  font-size: 16px;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.3),
      transparent 55%
    ),
    #d9e0d4;

  padding: 115px 24px 120px;
  text-align: center;
}

.newsletter-inner {
  margin: 0 auto;
  max-width: 760px;
}

.newsletter h2 {
  font-size: clamp(40px, 4.5vw, 57px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 23px;
}

.newsletter > .newsletter-inner > p:not(.eyebrow) {
  color: #62675f;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}

.newsletter form {
  align-items: center;
  border-bottom: 1px solid #3a3d37;
  display: flex;
  margin: 34px auto 0;
  max-width: 480px;
}

.newsletter input {
  background: transparent;
  border: 0;
  color: #242720;
  flex: 1;
  min-width: 0;
  outline: none;
  padding: 15px 0;
}

.newsletter input::placeholder {
  color: #92968f;
}

.newsletter button {
  align-items: center;
  background: none;
  border: 0;
  color: #242720;
  display: inline-flex;
  font-size: 13px;
  gap: 12px;
  padding: 15px 0 15px 15px;
}

.newsletter button span {
  font-size: 16px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #2f3a31;
  color: #f8f6f1;
  display: grid;
  gap: 55px 40px;
  grid-template-columns: 2fr repeat(3, 1fr);
  padding: 72px 6vw 28px;
}

.footer-brand p {
  color: #c6cec4;
  font-size: 14px;
  line-height: 1.6;
  margin: 17px 0 0;
  max-width: 220px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 1.5px;
  margin: 3px 0 9px;
  text-transform: uppercase;
}

.footer-column a {
  color: #d2d8d0;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 246, 241, 0.16);
  color: #aeb8ae;
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.4px;
  padding-top: 20px;
}

/* =========================
   TOAST
========================= */

.toast {
  align-items: center;
  background: #242720;
  bottom: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  display: flex;
  font-size: 13px;
  gap: 22px;
  padding: 14px 17px;
  position: fixed;
  right: 24px;
  z-index: 100;
}

.toast button {
  background: none;
  border: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  padding: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {
  .site-header {
    padding: 0 4vw;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    margin-left: 7vw;
  }

  .product-grid {
    gap: 45px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-content {
    padding: 9%;
  }

  footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {
  .announcement {
    font-size: 10px;
    line-height: 1.5;
    padding: 9px 15px;
  }

  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .logo {
    font-size: 18px;
    letter-spacing: 3.5px;
  }

  .site-header nav {
    background: #f8f6f1;
    border-bottom: 1px solid #ddd8ce;
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 20px 18px;
    position: absolute;
    right: 0;
    top: 69px;
  }

  .site-header nav.mobile-open {
    display: flex;
  }

  .site-header nav a {
    border-bottom: 1px solid #e3ded5;
    font-size: 14px;
    padding: 15px 0;
  }

  .site-header nav a:last-child {
    border-bottom: 0;
  }

  .site-header nav a::after {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  /* Mobile hero */

  .hero {
    min-height: 650px;
    padding: 60px 26px;
  }

  .hero-slide {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(27, 37, 29, 0.76) 0%,
        rgba(27, 37, 29, 0.45) 55%,
        rgba(27, 37, 29, 0.15) 100%
      );
  }

  .hero-content {
    max-width: 520px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 60px);
    letter-spacing: -1.8px;
  }

  .hero-text {
    font-size: 15px;
    margin: 23px 0 27px;
    max-width: 390px;
  }

  .hero-controls {
    bottom: 26px;
    right: 24px;
  }

  .hero-scroll {
    display: none;
  }

  .primary-button {
    padding: 15px 19px;
  }

  /* Intro */

  .intro {
    padding: 85px 22px 90px;
  }

  .intro h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .desktop-break {
    display: none;
  }

  /* Products */

  .featured {
    padding: 78px 20px 90px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 34px;
  }

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

  .collection-note {
    font-size: 12px;
    max-width: 320px;
    text-align: left;
  }

  .product-grid {
    gap: 40px 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image-wrap::after {
    inset: 6px;
  }

  .product-category {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-top: 13px;
  }

  .product-card h3 {
    font-size: 13px;
    line-height: 1.35;
    min-height: 36px;
  }

  .product-bottom {
    padding-top: 9px;
  }

  .product-bottom > span {
    font-size: 12px;
  }

  .product-bottom button {
    font-size: 10px;
    gap: 5px;
    padding: 8px 9px;
  }

  /* Story */

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

  .story-image {
    min-height: 360px;
  }

  .story-content {
    padding: 72px 28px 78px;
  }

  .story-content h2 {
    font-size: 42px;
  }

  .story-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  /* Newsletter */

  .newsletter {
    padding: 85px 22px 90px;
  }

  .newsletter h2 {
    font-size: 42px;
  }

  .newsletter form {
    max-width: 100%;
  }

  /* Footer */

  footer {
    gap: 42px 30px;
    grid-template-columns: repeat(2, 1fr);
    padding: 58px 28px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 430px) {
  .hero {
    min-height: 610px;
    padding: 50px 22px;
  }

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

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

  .hero-text {
    font-size: 14px;
  }

  .hero-controls {
    right: 20px;
  }

  .product-grid {
    gap: 35px 10px;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .product-bottom button {
    justify-content: center;
    width: 100%;
  }

  .story-image {
    min-height: 300px;
  }

  .story-content {
    padding-left: 23px;
    padding-right: 23px;
  }

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

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

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .hero-slide.active {
    transform: none;
  }

  .primary-button,
  .product-card img,
  .product-bottom button {
    transition: none;
  }
}

/* =========================================================
   PREMIUM HEADER OVERRIDES
   ========================================================= */

.site-header {
  align-items: center;
  background: rgba(248, 246, 241, 0.96);
  border-bottom: 1px solid rgba(36, 39, 32, 0.12);
  display: flex;
  height: 76px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  position: sticky;
  top: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    height 0.3s ease;
  z-index: 100;
}

.site-header.scrolled {
  background: #f8f6f1;
  box-shadow: 0 8px 30px rgba(36, 39, 32, 0.07);
  height: 70px;
}

/* LOGO */

.site-header .logo {
  color: #242720;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
}

.site-header .logo span {
  color: #b56245;
}

/* DESKTOP NAV */

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 42px);
  margin-left: auto;
  margin-right: clamp(35px, 5vw, 80px);
}

.desktop-nav > a,
.nav-dropdown-button {
  background: none;
  border: 0;
  color: #242720;
  font-size: 13px;
  padding: 8px 0;
}

.desktop-nav > a,
.nav-dropdown-button {
  position: relative;
}

.desktop-nav > a::after,
.nav-dropdown-button::after {
  background: #242720;
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  width: 100%;
}

.desktop-nav > a:hover::after,
.nav-dropdown-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* COLLECTIONS DROPDOWN */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.nav-dropdown-button > span {
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nav-dropdown-button > span.rotated {
  transform: rotate(180deg);
}

.collections-menu {
  background: #f8f6f1;
  border: 1px solid #ded9cf;
  box-shadow: 0 18px 45px rgba(36, 39, 32, 0.11);
  display: flex;
  flex-direction: column;
  left: 50%;
  min-width: 190px;
  opacity: 0;
  padding: 10px 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 17px);
  transform: translate(-50%, -8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  visibility: hidden;
}

.collections-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.collections-menu::before {
  background: #f8f6f1;
  border-left: 1px solid #ded9cf;
  border-top: 1px solid #ded9cf;
  content: '';
  height: 10px;
  left: 50%;
  position: absolute;
  top: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
}

.collections-menu a {
  color: #242720;
  font-size: 12px;
  padding: 11px 18px;
  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}

.collections-menu a:hover {
  background: #eee9e0;
  padding-left: 22px;
}

/* HEADER ACTIONS */

.header-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 23px;
}

/* SEARCH BUTTON */

.search-button {
  align-items: center;
  background: none;
  border: 0;
  color: #242720;
  display: flex;
  justify-content: center;
  padding: 7px;
}

.search-button svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
  width: 18px;
}

.search-button:hover {
  opacity: 0.55;
}

/* BAG */

.bag-button {
  align-items: center;
  background: none;
  border: 0;
  color: #242720;
  display: inline-flex;
  font-size: 13px;
  gap: 4px;
  padding: 8px 0;
  white-space: nowrap;
}

.bag-button:hover {
  opacity: 0.6;
}

.bag-count {
  font-variant-numeric: tabular-nums;
}

/* SEARCH PANEL */

.search-panel {
  background: rgba(248, 246, 241, 0.98);
  border-bottom: 1px solid #ddd8ce;
  left: 0;
  opacity: 0;
  padding: 17px clamp(24px, 5vw, 80px);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  visibility: hidden;
}

.search-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.search-inner {
  align-items: center;
  border-bottom: 1px solid #3a3d37;
  display: flex;
  gap: 13px;
  margin: 0 auto;
  max-width: 700px;
}

.search-inner svg {
  fill: none;
  flex-shrink: 0;
  height: 17px;
  stroke: #242720;
  stroke-linecap: round;
  stroke-width: 1.5;
  width: 17px;
}

.search-inner input {
  background: transparent;
  border: 0;
  color: #242720;
  flex: 1;
  font-size: 14px;
  outline: none;
  padding: 12px 0;
}

.search-inner input::placeholder {
  color: #96988f;
}

.search-inner > button {
  background: none;
  border: 0;
  color: #242720;
  font-size: 22px;
  line-height: 1;
  padding: 5px;
}

/* MOBILE MENU */

.mobile-menu {
  background: #f8f6f1;
  display: none;
}

.mobile-collections {
  display: block;
}

.mobile-collections > button {
  align-items: center;
  background: none;
  border: 0;
  border-bottom: 1px solid #ddd8ce;
  color: #242720;
  display: flex;
  font-size: 17px;
  justify-content: space-between;
  padding: 19px 0;
  text-align: left;
  width: 100%;
}

.mobile-collections > button > span {
  transition: transform 0.25s ease;
}

.mobile-collections > button > span.rotated {
  transform: rotate(180deg);
}

.mobile-collection-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-collection-links.open {
  max-height: 300px;
}

.mobile-collection-links a {
  border-bottom: 1px solid #e6e1d8;
  color: #686b64;
  display: block;
  font-size: 14px;
  padding: 13px 12px;
}

.mobile-menu-footer {
  border-top: 1px solid #ddd8ce;
  color: #85877f;
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin-top: 25px;
  padding-top: 20px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 24px;
    margin-right: 30px;
  }

  .header-actions {
    gap: 15px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .site-header.scrolled {
    height: 64px;
  }

  .site-header .logo {
    font-size: 18px;
    letter-spacing: 3.5px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 11px;
  }

  .search-button {
    padding: 7px;
  }

  .bag-button {
    font-size: 12px;
  }

  .menu-button {
    align-items: flex-end;
    background: none;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    padding: 8px 0 8px 9px;
    width: 31px;
  }

  .menu-button span {
    background: #242720;
    display: block;
    height: 1px;
    transition:
      transform 0.25s ease,
      width 0.25s ease;
    width: 23px;
  }

  .menu-button span:last-child {
    width: 16px;
  }

  .menu-button.open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button.open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
    width: 23px;
  }

  .mobile-menu {
    border-bottom: 1px solid #dcd7cd;
    box-shadow: 0 15px 35px rgba(36, 39, 32, 0.08);
    display: block;
    left: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    position: fixed;
    right: 0;
    top: 68px;
    transition:
      max-height 0.4s ease,
      padding 0.35s ease;
    visibility: hidden;
    z-index: 90;
  }

  .mobile-menu.open {
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding-bottom: 28px;
    padding-top: 8px;
    visibility: visible;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav > a {
    align-items: center;
    border-bottom: 1px solid #ddd8ce;
    display: flex;
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    justify-content: space-between;
    padding: 19px 0;
  }

  .mobile-menu nav > a span {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
  }

  .search-panel {
    padding: 14px 20px;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {
  .site-header {
    padding: 0 17px;
  }

  .bag-button {
    font-size: 11px;
  }

  .header-actions {
    gap: 7px;
  }

  .mobile-menu nav > a {
    font-size: 25px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  background: #f8f6f1;
}

.contact-hero {
  padding: 135px 24px 125px;
  text-align: center;
}

.contact-hero .eyebrow {
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin: 0 auto 28px;
}

.contact-hero h1 em {
  font-weight: 500;
}

.contact-hero > p:last-child {
  color: #686b64;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 560px;
}


/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
  background: #e4dfd5;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 650px;
}

.contact-info {
  padding: 90px 8vw;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 0 25px;
}

.demo-note {
  color: #8a887f;
  font-size: 11px;
  line-height: 1.6;
  margin: 0 0 38px;
  max-width: 340px;
}

.contact-block {
  border-top: 1px solid #cfc9be;
  padding: 18px 0;
}

.contact-block:last-child {
  border-bottom: 1px solid #cfc9be;
}

.contact-block > span {
  color: #777970;
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-block p {
  color: #242720;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.contact-map {
  min-height: 650px;
  overflow: hidden;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 650px;
  width: 100%;
  filter: grayscale(100%) contrast(0.9);
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-section {
  background: #f0ede6;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 120px 9vw;
}

.contact-form-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 500;
  letter-spacing: -1.7px;
  line-height: 1.04;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 27px;
  max-width: 650px;
}

.contact-form label {
  color: #777970;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  gap: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bdb8ae;
  border-radius: 0;
  color: #242720;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  padding: 12px 0;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9b94;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #242720;
}

.contact-form button {
  align-items: center;
  align-self: flex-start;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  gap: 35px;
  margin-top: 5px;
  padding: 15px 20px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-form button span {
  font-size: 16px;
}

.contact-form button:hover {
  background: #b56245;
  border-color: #b56245;
  transform: translateY(-1px);
}


/* =========================
   CONTACT TABLET
========================= */

@media (max-width: 1050px) {
  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info {
    padding: 75px 6vw;
  }

  .contact-form-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}


/* =========================
   CONTACT MOBILE
========================= */

@media (max-width: 800px) {
  .contact-hero {
    padding: 90px 24px 85px;
  }

  .contact-hero h1 {
    font-size: clamp(43px, 12vw, 58px);
    letter-spacing: -1.8px;
  }

  .contact-hero > p:last-child {
    font-size: 15px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
  }

  .contact-info {
    padding: 72px 28px;
  }

  .contact-info h2 {
    font-size: 43px;
  }

  .contact-map {
    min-height: 380px;
  }

  .contact-map iframe {
    min-height: 380px;
  }

  .contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 55px;
    padding: 82px 28px 90px;
  }

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

  .contact-form {
    gap: 25px;
  }
}


/* =========================
   CONTACT SMALL PHONES
========================= */

@media (max-width: 430px) {
  .contact-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .contact-info {
    padding-left: 23px;
    padding-right: 23px;
  }

  .contact-form-section {
    padding-left: 23px;
    padding-right: 23px;
  }

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

/* =========================
   CONTACT FORM STATES
========================= */

.contact-form-error {
  color: #a34f38;
  font-size: 12px;
  line-height: 1.5;
  margin: -8px 0 0;
}

.contact-success {
  max-width: 520px;
  padding: 35px 0;
}

.contact-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.contact-success > p:not(.eyebrow) {
  color: #686b64;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 430px;
}

.contact-success button {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  gap: 25px;
  margin-top: 28px;
  padding: 14px 19px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-success button span {
  font-size: 16px;
}

.contact-success button:hover {
  background: #b56245;
  border-color: #b56245;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .contact-success {
    padding: 10px 0;
  }

  .contact-success h3 {
    font-size: 34px;
  }
}

/* =========================
   NEWSLETTER STATES
========================= */

.newsletter-error {
  color: #a34f38 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  margin: 14px auto 0 !important;
}

.newsletter-again {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  gap: 25px;
  margin-top: 30px;
  padding: 14px 19px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.newsletter-again span {
  font-size: 16px;
}

.newsletter-again:hover {
  background: #b56245;
  border-color: #b56245;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .newsletter-again {
    font-size: 12px;
  }
}

/* =========================
   BAG DRAWER
========================= */

.bag-overlay {
  background: rgba(20, 23, 19, 0.35);
  inset: 0;
  position: fixed;
  z-index: 200;
}

.bag-drawer {
  background: #f8f6f1;
  box-shadow: -15px 0 50px rgba(36, 39, 32, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 480px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.bag-header {
  align-items: flex-start;
  border-bottom: 1px solid #ddd8ce;
  display: flex;
  justify-content: space-between;
  padding: 30px 30px 25px;
}

.bag-header .eyebrow {
  margin-bottom: 9px;
}

.bag-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin: 0;
}

.bag-close {
  background: none;
  border: 0;
  color: #242720;
  font-size: 28px;
  line-height: 1;
  padding: 0;
}

.bag-empty {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.bag-empty p {
  color: #686b64;
  font-size: 14px;
  margin: 0;
}

.bag-empty button {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: inline-flex;
  font-size: 12px;
  gap: 18px;
  margin-top: 24px;
  padding: 13px 17px;
}

.bag-empty button span {
  font-size: 15px;
}

.bag-items {
  flex: 1;
  overflow-y: auto;
  padding: 25px 30px;
}

.bag-item {
  border-bottom: 1px solid #ddd8ce;
  display: flex;
  gap: 17px;
  padding: 0 0 22px;
  margin-bottom: 22px;
}

.bag-item img {
  aspect-ratio: 1;
  background: #e8e3da;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  width: 105px;
}

.bag-item-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.bag-item-category {
  color: #777970;
  font-size: 8px;
  letter-spacing: 1.3px;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.bag-item-info h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

.bag-item-price {
  font-size: 13px;
  margin: 7px 0 14px;
}

.bag-item-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.quantity-control {
  align-items: center;
  border: 1px solid #d4cfc5;
  display: inline-flex;
}

.quantity-control button {
  background: none;
  border: 0;
  color: #242720;
  font-size: 15px;
  height: 30px;
  width: 30px;
}

.quantity-control span {
  font-size: 12px;
  min-width: 25px;
  text-align: center;
}

.remove-item {
  background: none;
  border: 0;
  color: #777970;
  font-size: 10px;
  padding: 5px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bag-footer {
  background: #eeebe4;
  border-top: 1px solid #ddd8ce;
  padding: 25px 30px 28px;
}

.bag-total {
  align-items: center;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-bottom: 17px;
}

.bag-total strong {
  font-weight: 500;
}

.bag-checkout {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 16px 18px;
  width: 100%;
}

.bag-checkout span {
  font-size: 16px;
}

.bag-checkout:hover {
  background: #b56245;
  border-color: #b56245;
}

.bag-footer > p {
  color: #85877f;
  font-size: 9px;
  line-height: 1.5;
  margin: 13px 0 0;
  text-align: center;
}


/* =========================
   BAG MOBILE
========================= */

@media (max-width: 800px) {
  .bag-drawer {
    max-width: none;
    width: 100%;
  }

  .bag-header {
    padding: 25px 22px 21px;
  }

  .bag-items {
    padding: 22px;
  }

  .bag-footer {
    padding: 22px;
  }
}

/* =========================
   PRODUCT STOCK STATES
========================= */

.product-image-wrap {
  position: relative;
}

.sold-out-label {
  align-items: center;
  background: rgba(36, 39, 32, 0.86);
  color: #ffffff;
  display: flex;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
  z-index: 2;
}

.sold-out-button {
  background: #d8d4cb !important;
  border-color: #d8d4cb !important;
  color: #777970 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.sold-out-button:hover {
  background: #d8d4cb !important;
  border-color: #d8d4cb !important;
  transform: none !important;
}

.product-card.sold-out img {
  filter: grayscale(20%);
  opacity: 0.78;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */

.product-page {
  background: #f8f6f1;
  min-height: 100vh;
}

/* Main product area */

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  min-height: 760px;
  padding: 70px 6vw 100px;
  gap: 7vw;
  align-items: center;
}

.product-detail-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e9e5dc;
}

.product-detail-image img {
  display: block;
  width: 100%;
  height: min(720px, 70vw);
  min-height: 560px;
  object-fit: cover;
}

.product-detail-sold-out {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  background: #292d27;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Product information */

.product-detail-info {
  max-width: 560px;
  padding: 20px 0;
}

.product-detail-info .eyebrow {
  margin-bottom: 20px;
}

.product-detail-info h1 {
  margin: 0;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-detail-price {
  margin: 28px 0 0;
  color: #242720;
  font-size: 18px;
  font-weight: 500;
}

.product-detail-short {
  max-width: 500px;
  margin: 30px 0 0;
  color: #62665f;
  font-size: 16px;
  line-height: 1.8;
}

/* Purchase area */

.product-purchase {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(36, 39, 32, 0.18);
}

.product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #242720;
  font-size: 13px;
}

.product-quantity > span {
  color: #6c7069;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 600;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36, 39, 32, 0.25);
  background: #f8f6f1;
}

.quantity-control button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #242720;
  font-size: 17px;
  cursor: pointer;
}

.quantity-control button:hover:not(:disabled) {
  background: #ece9e1;
}

.quantity-control button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.quantity-control span {
  min-width: 38px;
  text-align: center;
  color: #242720;
  font-size: 13px;
}

/* Add to bag */

.product-add-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid #242720;
  background: #242720;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.product-add-button span {
  font-size: 18px;
}

.product-add-button:hover {
  background: transparent;
  color: #242720;
}

.product-stock {
  margin: 13px 0 0;
  color: #73766f;
  font-size: 12px;
}

/* Sold out */

.product-sold-out-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
}

.product-sold-out-message strong {
  color: #242720;
  font-size: 14px;
  font-weight: 600;
}

.product-sold-out-message span {
  color: #73766f;
  font-size: 13px;
}

/* Product information accordions */

.product-information {
  margin-top: 48px;
  border-top: 1px solid rgba(36, 39, 32, 0.18);
}

.product-information details {
  border-bottom: 1px solid rgba(36, 39, 32, 0.18);
}

.product-information summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  color: #242720;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.product-information summary::-webkit-details-marker {
  display: none;
}

.product-information summary span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.product-information details[open] summary span {
  transform: rotate(45deg);
}

.product-information details > p {
  max-width: 520px;
  margin: 0 0 23px;
  color: #666a62;
  font-size: 13px;
  line-height: 1.8;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 24px;
}

.product-specs div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-specs span {
  color: #7a7d76;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-specs strong {
  color: #242720;
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   RELATED PRODUCTS
   ========================================================= */

.related-products {
  padding: 110px 6vw 120px;
  background: #ebe8df;
}

.related-heading {
  margin-bottom: 45px;
}

.related-heading h2 {
  margin: 10px 0 0;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

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

.related-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.related-image {
  overflow: hidden;
  background: #ddd8ce;
  aspect-ratio: 1 / 1.08;
}

.related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.025);
}

.related-card > p {
  margin: 17px 0 7px;
  color: #777a72;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 0;
  color: #242720;
  font-size: 15px;
  font-weight: 500;
}

.related-card > span {
  display: block;
  margin-top: 9px;
  color: #242720;
  font-size: 13px;
}

/* =========================================================
   PRODUCT CARD LINK
   ========================================================= */

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-link .product-image-wrap {
  cursor: pointer;
}

.product-card-link h3 {
  transition: opacity 0.2s ease;
}

.product-card-link:hover h3 {
  opacity: 0.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    padding: 40px 5vw 80px;
    gap: 50px;
    align-items: start;
  }

  .product-detail-image img {
    height: 75vw;
    min-height: 0;
    max-height: 720px;
  }

  .product-detail-info {
    max-width: none;
  }

  .product-detail-info h1 {
    max-width: 700px;
  }

  .related-products {
    padding: 80px 5vw 90px;
  }
}

@media (max-width: 640px) {
  .product-detail {
    padding: 25px 20px 65px;
    gap: 38px;
  }

  .product-detail-image img {
    height: 115vw;
  }

  .product-detail-sold-out {
    top: 15px;
    left: 15px;
  }

  .product-detail-info {
    padding: 0;
  }

  .product-detail-info h1 {
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1;
  }

  .product-detail-price {
    margin-top: 20px;
  }

  .product-detail-short {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .product-purchase {
    margin-top: 30px;
    padding-top: 24px;
  }

  .product-information {
    margin-top: 35px;
  }

  .product-information summary {
    padding: 18px 0;
  }

  .product-specs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-products {
    padding: 65px 20px 75px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .related-heading {
    margin-bottom: 30px;
  }

  .related-heading h2 {
    font-size: 42px;
  }
}

/* =========================================================
   SHOP PAGE
   ========================================================= */

.shop-page {
  background: #f8f6f1;
  min-height: 100vh;
}

/* Intro */

.shop-intro {
  padding: 115px 6vw 100px;
  background: #e8e5dc;
}

.shop-intro-inner {
  max-width: 850px;
}

.shop-intro h1 {
  margin: 18px 0 28px;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(55px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.shop-intro-inner > p:last-child {
  max-width: 600px;
  margin: 0;
  color: #666a62;
  font-size: 16px;
  line-height: 1.8;
}

/* Products section */

.shop-products {
  padding: 75px 6vw 120px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(36, 39, 32, 0.18);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filters button {
  padding: 10px 16px;
  border: 1px solid rgba(36, 39, 32, 0.22);
  background: transparent;
  color: #555950;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.shop-filters button:hover {
  border-color: #242720;
  color: #242720;
}

.shop-filters button.active {
  border-color: #242720;
  background: #242720;
  color: #fff;
}

.shop-count {
  flex-shrink: 0;
  margin: 0;
  color: #777a72;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Grid */

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

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

.shop-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.shop-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: #e5e0d7;
}

.shop-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.025);
}

.shop-sold-out {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 11px;
  background: #292d27;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-card-info {
  padding-top: 17px;
}

.shop-card-info p {
  margin: 0 0 7px;
  color: #777a72;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-card-info h2 {
  margin: 0;
  color: #242720;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* Card bottom */

.shop-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(36, 39, 32, 0.16);
}

.shop-card-bottom > span {
  color: #242720;
  font-size: 13px;
}

.shop-card-bottom button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid #242720;
  background: #242720;
  color: #fff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.shop-card-bottom button span {
  font-size: 14px;
}

.shop-card-bottom button:hover {
  background: transparent;
  color: #242720;
}

.shop-card-bottom .shop-sold-out-button {
  border-color: #c9c6bd;
  background: transparent;
  color: #8b8d86;
  cursor: not-allowed;
}

/* Tablet */

@media (max-width: 1000px) {
  .shop-intro {
    padding: 90px 5vw 80px;
  }

  .shop-products {
    padding: 65px 5vw 90px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 18px;
  }
}

/* Mobile */

@media (max-width: 640px) {
  .shop-intro {
    padding: 70px 20px 65px;
  }

  .shop-intro h1 {
    font-size: clamp(45px, 13vw, 65px);
    line-height: 0.98;
  }

  .shop-intro-inner > p:last-child {
    font-size: 14px;
  }

  .shop-products {
    padding: 50px 20px 70px;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 35px;
    gap: 20px;
  }

  .shop-filters {
    gap: 6px;
  }

  .shop-filters button {
    padding: 8px 12px;
    font-size: 10px;
  }

  .shop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 12px;
  }

  .shop-card-info {
    padding-top: 12px;
  }

  .shop-card-info h2 {
    font-size: 13px;
  }

  .shop-card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .shop-card-bottom button {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================================================
   SHOP COMING SOON
   ========================================================= */

.shop-coming-soon {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 30px;
  text-align: center;
  background: #ebe8df;
}

.shop-coming-soon h2 {
  margin: 14px 0 20px;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.shop-coming-soon > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: #696d65;
  font-size: 14px;
  line-height: 1.8;
}

.shop-coming-soon a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 18px;
  border: 1px solid #242720;
  background: #242720;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.shop-coming-soon a span {
  font-size: 16px;
}

.shop-coming-soon a:hover {
  background: transparent;
  color: #242720;
}

@media (max-width: 640px) {
  .shop-coming-soon {
    min-height: 380px;
    padding: 55px 20px;
  }

  .shop-coming-soon h2 {
    font-size: 43px;
  }
}

/* =========================================================
   COLLECTION CTA
   ========================================================= */

.collection-cta {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}

.collection-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border: 1px solid #242720;
  color: #242720;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.collection-cta a span {
  font-size: 17px;
  line-height: 1;
}

.collection-cta a:hover {
  background: #242720;
  color: #fff;
}

@media (max-width: 640px) {
  .collection-cta {
    margin-top: 40px;
  }

  .collection-cta a {
    width: 100%;
    justify-content: space-between;
  }
}
.collections-menu button,
.mobile-collection-links button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
/* =========================================================
   POLICY PAGES
   ========================================================= */

.policy-page {
  background: #f8f6f1;
  min-height: 100vh;
}

/* Hero */

.policy-hero {
  padding: 115px 6vw 100px;
  background: #e8e5dc;
}

.policy-hero h1 {
  margin: 18px 0 28px;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.policy-hero > p:last-child {
  max-width: 570px;
  margin: 0;
  color: #666a62;
  font-size: 16px;
  line-height: 1.8;
}

/* Content */

.policy-content {
  max-width: 1050px;
  margin: 0 auto;
  padding: 90px 6vw 120px;
}

.policy-section {
  display: grid;
  grid-template-columns: 80px minmax(0, 720px);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(36, 39, 32, 0.16);
}

.policy-number {
  margin: 5px 0 0;
  color: #8a8d85;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.policy-section h2 {
  margin: 0 0 17px;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.policy-section p:not(.policy-number) {
  max-width: 700px;
  margin: 0;
  color: #666a62;
  font-size: 14px;
  line-height: 1.9;
}

/* Note */

.policy-note {
  margin-top: 65px;
  padding: 45px;
  background: #ebe8df;
}

.policy-note > p:not(.eyebrow) {
  max-width: 650px;
  margin: 15px 0 0;
  color: #666a62;
  font-size: 14px;
  line-height: 1.8;
}

.policy-note a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 13px 17px;
  border: 1px solid #242720;
  background: #242720;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.policy-note a span {
  font-size: 16px;
}

.policy-note a:hover {
  background: transparent;
  color: #242720;
}

/* Responsive */

@media (max-width: 700px) {
  .policy-hero {
    padding: 75px 20px 65px;
  }

  .policy-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .policy-hero > p:last-child {
    font-size: 14px;
  }

  .policy-content {
    padding: 55px 20px 75px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 35px 0;
  }

  .policy-number {
    margin: 0;
  }

  .policy-section h2 {
    font-size: 30px;
  }

  .policy-section p:not(.policy-number) {
    font-size: 13px;
  }

  .policy-note {
    margin-top: 45px;
    padding: 30px 25px;
  }
}

/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.search-panel {
  overflow: visible;
}

.search-results {
  width: min(100%, 620px);
  max-height: 460px;
  margin: 0 auto;
  overflow-y: auto;
  border-top: 1px solid rgba(36, 39, 32, 0.12);
  background: #f8f6f1;
  box-shadow: 0 18px 40px rgba(36, 39, 32, 0.08);
}

.search-results-label {
  margin: 0;
  padding: 14px 20px 8px;
  color: #8a8d85;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(36, 39, 32, 0.08);
  color: #242720;
  text-decoration: none;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: #ebe8df;
}

.search-result img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  object-fit: cover;
}

.search-result div {
  min-width: 0;
}

.search-result p {
  margin: 0 0 4px;
  color: #8a8d85;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result h3 {
  margin: 0 0 5px;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
}

.search-result span {
  color: #666a62;
  font-size: 12px;
}

.search-no-results {
  padding: 28px 20px 32px;
}

.search-no-results > p:not(.search-results-label) {
  margin: 5px 0 18px;
  color: #666a62;
  font-size: 13px;
  line-height: 1.6;
}

.search-no-results button {
  padding: 10px 15px;
  border: 1px solid #242720;
  background: #242720;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .search-results {
    width: 100%;
    max-height: 55vh;
  }

  .search-result {
    padding: 12px 16px;
  }

  .search-result img {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }
}
/* =========================================================
   404 PAGE
   ========================================================= */

.not-found-page {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6vw;
  background: #f8f6f1;
}

.not-found-inner {
  width: min(680px, 100%);
  text-align: center;
}

.not-found-inner h1 {
  margin: 18px 0 24px;
  color: #242720;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.not-found-inner > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 auto 34px;
  color: #666a62;
  font-size: 15px;
  line-height: 1.8;
}

.not-found-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  background: #242720;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.not-found-button:hover {
  transform: translateY(-2px);
  background: #34372f;
}

.not-found-button span {
  font-size: 16px;
}

@media (max-width: 700px) {
  .not-found-page {
    min-height: 62vh;
    padding: 90px 6vw;
  }

  .not-found-inner h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .not-found-inner > p:not(.eyebrow) {
    font-size: 14px;
  }
}

/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page {
  background: #f8f6f1;
  min-height: calc(100vh - 110px);
  padding: 90px 6vw 110px;
}

.checkout-intro {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 70px;
  max-width: 1280px;
}

.checkout-intro .eyebrow {
  margin-bottom: 14px;
}

.checkout-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 0.98;
  margin: 0 0 22px;
}

.checkout-intro > div > p:last-child {
  color: #686b64;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.checkout-return {
  background: none;
  border: 0;
  color: #242720;
  cursor: pointer;
  font-size: 12px;
  padding: 10px 0;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.checkout-layout {
  align-items: flex-start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  max-width: 1280px;
}

.checkout-form {
  background: #ffffff;
  border: 1px solid #ddd8ce;
}

.checkout-section {
  border-bottom: 1px solid #ddd8ce;
  padding: 38px 40px 42px;
}

.checkout-section:last-child {
  border-bottom: 0;
}

.checkout-section-heading {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.checkout-section-heading .eyebrow {
  margin: 4px 0 0;
  min-width: 22px;
}

.checkout-section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0;
}

.checkout-fields {
  display: grid;
  gap: 22px;
}

.checkout-fields.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-fields label {
  color: #686b64;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 9px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.checkout-fields input {
  background: #f8f6f1;
  border: 1px solid #d4cfc5;
  border-radius: 0;
  color: #242720;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  padding: 14px 15px;
  text-transform: none;
  transition: border-color 0.2s ease;
}

.checkout-fields input:focus {
  border-color: #242720;
}

.checkout-option {
  align-items: center;
  border: 1px solid #d4cfc5;
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
}

.checkout-option.selected {
  border-color: #242720;
}

.checkout-option > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.checkout-option strong {
  font-size: 13px;
  font-weight: 500;
}

.checkout-option span {
  color: #777970;
  font-size: 11px;
}

.checkout-check {
  align-items: center;
  background: #242720;
  border-radius: 50%;
  color: #ffffff !important;
  display: flex;
  font-size: 10px !important;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.checkout-note {
  color: #85877f;
  font-size: 10px;
  line-height: 1.6;
  margin: 14px 0 0;
}

/* =========================
   CHECKOUT SUMMARY
========================= */

.checkout-summary {
  background: #eeebe4;
  border: 1px solid #ddd8ce;
  padding: 32px;
  position: sticky;
  top: 30px;
}

.checkout-summary-header {
  border-bottom: 1px solid #d4cfc5;
  padding-bottom: 24px;
}

.checkout-summary-header .eyebrow {
  margin-bottom: 9px;
}

.checkout-summary-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin: 0;
}

.checkout-summary-items {
  padding: 24px 0;
}

.checkout-summary-item {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  padding-bottom: 20px;
}

.checkout-summary-item:not(:last-child) {
  border-bottom: 1px solid #d4cfc5;
  margin-bottom: 20px;
}

.checkout-summary-item img {
  aspect-ratio: 1;
  background: #e8e3da;
  display: block;
  object-fit: cover;
  width: 62px;
}

.checkout-summary-item > div {
  min-width: 0;
}

.checkout-summary-item p {
  color: #777970;
  font-size: 8px;
  letter-spacing: 1.2px;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.checkout-summary-item h3 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 6px;
}

.checkout-summary-item span {
  color: #85877f;
  font-size: 10px;
}

.checkout-summary-item > strong {
  font-size: 12px;
  font-weight: 500;
}

.checkout-totals {
  border-top: 1px solid #d4cfc5;
  padding-top: 20px;
}

.checkout-totals > div {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 13px;
}

.checkout-totals strong {
  font-weight: 500;
}

.checkout-total {
  border-top: 1px solid #d4cfc5;
  font-size: 15px !important;
  margin-top: 18px;
  padding-top: 20px;
}

.checkout-total strong {
  font-size: 17px;
}

.place-order-button {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 27px;
  padding: 17px 19px;
  transition: background 0.2s ease,
    border-color 0.2s ease;
  width: 100%;
}

.place-order-button span {
  font-size: 17px;
}

.place-order-button:hover {
  background: #b56245;
  border-color: #b56245;
}

.checkout-legal {
  color: #85877f;
  font-size: 9px;
  line-height: 1.6;
  margin: 14px 0 0;
  text-align: center;
}

/* =========================
   CHECKOUT EMPTY STATE
========================= */

.checkout-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 600px;
  padding: 100px 20px;
  text-align: center;
}

.checkout-empty h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 65px);
  font-weight: 500;
  letter-spacing: -1.5px;
  margin: 12px 0 20px;
}

.checkout-empty p:not(.eyebrow) {
  color: #686b64;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.checkout-back-button {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  display: inline-flex;
  font-size: 12px;
  gap: 20px;
  margin-top: 28px;
  padding: 14px 18px;
}

.checkout-back-button span {
  font-size: 15px;
}

/* =========================
   CHECKOUT MOBILE
========================= */

@media (max-width: 900px) {
  .checkout-page {
    padding: 65px 22px 80px;
  }

  .checkout-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
  }

  .checkout-intro h1 {
    font-size: clamp(45px, 12vw, 65px);
  }

  .checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .checkout-form,
  .checkout-summary {
    width: 100%;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-section {
    padding: 30px 22px 34px;
  }

  .checkout-summary {
    padding: 25px 22px;
  }
}

@media (max-width: 600px) {
  .checkout-fields.two-columns {
    grid-template-columns: 1fr;
  }

  .checkout-section-heading {
    gap: 13px;
  }

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

  .checkout-option {
    padding: 17px;
  }

  .checkout-summary-item {
    grid-template-columns: 55px minmax(0, 1fr) auto;
  }

  .checkout-summary-item img {
    width: 55px;
  }

  .checkout-empty {
    padding: 70px 10px;
  }
}
.checkout-fields select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f8f6f1;
  background-image:
    linear-gradient(45deg, transparent 50%, #686b64 50%),
    linear-gradient(135deg, #686b64 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  border: 1px solid #d4cfc5;
  border-radius: 0;
  color: #242720;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  padding: 14px 40px 14px 15px;
}

.checkout-fields select:focus {
  border-color: #242720;
}

/* =========================
   ORDER PLACED
========================= */

.order-placed-page {
  align-items: center;
  background: #f8f6f1;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 140px);
  padding: 80px 30px;
}

.order-placed-card {
  background: #eeebe4;
  border: 1px solid #ddd8ce;
  max-width: 720px;
  padding: 65px 70px;
  text-align: center;
  width: 100%;
}

.order-placed-card .eyebrow {
  margin-bottom: 25px;
}

.order-success-icon {
  align-items: center;
  background: #242720;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-size: 22px;
  height: 58px;
  justify-content: center;
  margin: 0 auto 28px;
  width: 58px;
}

.order-placed-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0;
}

.order-placed-message {
  color: #686b64;
  font-size: 14px;
  line-height: 1.7;
  margin: 18px auto 32px;
  max-width: 450px;
}

.order-number {
  align-items: center;
  background: #f8f6f1;
  border: 1px solid #ddd8ce;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 28px;
  max-width: 500px;
  padding: 17px 20px;
  text-align: left;
}

.order-number span {
  color: #777970;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.order-number strong {
  color: #242720;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.order-placed-details {
  border-bottom: 1px solid #ddd8ce;
  border-top: 1px solid #ddd8ce;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 25px;
}

.order-placed-details > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 15px;
}

.order-placed-details > div:nth-child(odd) {
  border-right: 1px solid #ddd8ce;
}

.order-placed-details > div:nth-child(-n + 2) {
  border-bottom: 1px solid #ddd8ce;
}

.order-placed-details span {
  color: #777970;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.order-placed-details strong {
  color: #242720;
  font-size: 13px;
  font-weight: 500;
}

.order-placed-note {
  color: #85877f;
  font-size: 10px;
  line-height: 1.6;
  margin: 0 auto 30px;
  max-width: 470px;
}

.order-placed-actions {
  display: flex;
  justify-content: center;
}

.order-placed-button {
  align-items: center;
  background: #242720;
  border: 1px solid #242720;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  justify-content: space-between;
  min-width: 210px;
  padding: 15px 18px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.order-placed-button span {
  font-size: 16px;
}

.order-placed-button:hover {
  background: #b56245;
  border-color: #b56245;
  transform: translateY(-1px);
}


/* =========================
   ORDER PLACED MOBILE
========================= */

@media (max-width: 800px) {
  .order-placed-page {
    min-height: calc(100vh - 120px);
    padding: 45px 20px;
  }

  .order-placed-card {
    padding: 45px 25px;
  }

  .order-placed-card h1 {
    font-size: 32px;
  }

  .order-placed-message {
    font-size: 13px;
  }

  .order-number {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
  }

  .order-placed-details {
    grid-template-columns: 1fr;
  }

  .order-placed-details > div {
    border-bottom: 1px solid #ddd8ce;
    border-right: 0 !important;
  }

  .order-placed-details > div:last-child {
    border-bottom: 0;
  }

  .order-placed-details > div:nth-child(-n + 2) {
    border-bottom: 1px solid #ddd8ce;
  }

  .order-placed-button {
    width: 100%;
  }
}

/* =========================
   STORY PAGE
========================= */

.story-page {
  background: #f7f5f0;
}

.story-hero {
  padding: 140px 6% 130px;
  text-align: center;
  border-bottom: 1px solid rgba(25, 25, 25, 0.12);
}

.story-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.story-hero h1 {
  margin: 18px 0 28px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.story-hero-text {
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(25, 25, 25, 0.68);
}


/* =========================
   STORY INTRODUCTION
========================= */

.story-introduction {
  padding: 120px 6%;
}

.story-introduction-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 80px;
}

.story-copy h2 {
  margin: 0 0 35px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.story-copy p {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(25, 25, 25, 0.68);
}


/* =========================
   STORY PHILOSOPHY
========================= */

.story-philosophy {
  padding: 120px 6%;
  background: #ebe8e0;
}

.story-philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.story-philosophy h2 {
  margin: 18px 0 70px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.story-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.story-philosophy-grid > div {
  padding-top: 25px;
  border-top: 1px solid rgba(25, 25, 25, 0.2);
}

.story-philosophy-grid span {
  display: block;
  margin-bottom: 25px;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.story-philosophy-grid h3 {
  margin: 0 0 15px;
  font-size: 27px;
  font-weight: 400;
}

.story-philosophy-grid p {
  max-width: 330px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(25, 25, 25, 0.68);
}


/* =========================
   STORY VALUES
========================= */

.story-values {
  padding: 120px 6%;
}

.story-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.story-values-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.story-values-copy {
  padding-top: 45px;
}

.story-values-copy p {
  max-width: 550px;
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(25, 25, 25, 0.68);
}


/* =========================
   STORY CTA
========================= */

.story-cta {
  padding: 130px 6%;
  background: #20201d;
  color: #f7f5f0;
  text-align: center;
}

.story-cta-inner {
  max-width: 850px;
  margin: 0 auto;
}

.story-cta .eyebrow {
  color: inherit;
  opacity: 0.6;
}

.story-cta h2 {
  margin: 18px 0 40px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.story-shop-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 17px 26px;
  border: 1px solid rgba(247, 245, 240, 0.45);
  color: #f7f5f0;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.25s ease,
              color 0.25s ease;
}

.story-shop-button span {
  font-size: 20px;
  line-height: 1;
}

.story-shop-button:hover {
  background: #f7f5f0;
  color: #20201d;
}


/* =========================
   STORY MOBILE
========================= */

@media (max-width: 768px) {
  .story-hero {
    padding: 90px 6% 80px;
  }

  .story-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .story-hero-text {
    font-size: 16px;
  }

  .story-introduction {
    padding: 80px 6%;
  }

  .story-introduction-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .story-copy h2 {
    font-size: 42px;
  }

  .story-copy p {
    font-size: 16px;
  }

  .story-philosophy {
    padding: 80px 6%;
  }

  .story-philosophy h2 {
    margin-bottom: 50px;
    font-size: 46px;
  }

  .story-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .story-philosophy-grid p {
    max-width: none;
  }

  .story-values {
    padding: 80px 6%;
  }

  .story-values-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .story-values-heading h2 {
    font-size: 46px;
  }

  .story-values-copy {
    padding-top: 0;
  }

  .story-values-copy p {
    font-size: 16px;
  }

  .story-cta {
    padding: 90px 6%;
  }

  .story-cta h2 {
    font-size: 46px;
  }
}