:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --paper: #faf8f5;
  --white: #ffffff;
  --accent: #2c3a4a;
  --btn: #111111;
  --ok: #2e5a3c;
  --err: #8a2b2b;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.announcement {
  background: var(--ink);
  color: #f3efe8;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.logo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo-mark {
  width: 26px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: lowercase;
}

.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

.logo-footer {
  justify-self: start;
  color: #fff;
  margin-bottom: 18px;
}

.logo-footer .logo-word {
  font-size: 18px;
  color: #fff;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a:hover,
.header-tools a:hover {
  opacity: 0.65;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #d8d2c8;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 8vw 80px;
  max-width: 720px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 78px);
  margin: 0 0 16px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn);
  color: #fff;
  border: 1px solid var(--btn);
  min-height: 48px;
  padding: 0 24px;
  font: 500 13px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: #2b2b2b;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--paper);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.collection-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card span,
.collection-card strong {
  position: relative;
  z-index: 1;
}

.collection-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}

.collection-card .copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  z-index: 1;
}

.collection-card h3 {
  font-size: 40px;
  margin: 0 0 8px;
}

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

.product-card {
  display: block;
}

.product-card .thumb {
  background: var(--paper);
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 14px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px;
}

.price {
  color: var(--muted);
  font-size: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--paper);
}

.feature {
  text-align: center;
  padding: 8px 12px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border: 1px solid #d9d3cb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.feature h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 560px;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.split-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

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

.review {
  border: 1px solid var(--line);
  padding: 0 0 24px;
}

.review img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.review-body {
  padding: 20px 22px 0;
}

.stars {
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 8px;
}

.disclaimer,
.legal p,
.legal li {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  background: var(--ink);
  color: #f6f1ea;
  text-align: center;
  padding: 72px 24px;
}

.cta-band h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 12px;
}

.footer {
  background: #111;
  color: #d9d4cc;
  padding: 56px 24px 28px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.footer a,
.footer p {
  display: block;
  color: #cfc8be;
  font-size: 14px;
  margin: 0 0 8px;
}

.footer a:hover {
  color: #fff;
}

.footer-legal {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  font-size: 12px;
  color: #9d978e;
}

.page-hero {
  background: var(--paper);
  padding: 56px 24px 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 10px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.gallery {
  background: var(--paper);
}

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

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.thumbs button {
  border: 1px solid var(--line);
  padding: 0;
  background: var(--paper);
  cursor: pointer;
}

.thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
}

.buy-box h1 {
  font-size: 48px;
  margin: 0 0 8px;
}

.option-row {
  margin: 20px 0;
}

.option-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.swatches,
.qty {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.swatches button,
.qty button,
.qty span {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font: inherit;
}

.swatches button.active {
  border-color: var(--ink);
}

.qty span {
  cursor: default;
}

.notice {
  background: var(--paper);
  padding: 16px 18px;
  font-size: 14px;
  margin: 20px 0;
}

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

.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 16px 8px;
  vertical-align: middle;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cart-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  background: var(--paper);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

label.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

input,
select,
textarea {
  font: inherit;
  border: 1px solid #d5d0c8;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.pay-box {
  border: 1px solid var(--ink);
  padding: 16px 18px;
  background: var(--paper);
}

.summary {
  border: 1px solid var(--line);
  padding: 24px;
  position: sticky;
  top: 96px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}

.summary-row.total {
  font-size: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  margin: 12px 0;
}

.check input {
  min-height: 0;
  margin-top: 3px;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  font-size: 48px;
}

.legal h2 {
  font-size: 28px;
  margin: 32px 0 10px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  max-width: 720px;
  margin: 0 auto;
  display: none;
}

.cookie.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.show {
  display: grid;
}

.modal-card {
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  font-size: 40px;
  margin: 0 0 12px;
}

.error {
  color: var(--err);
  font-size: 13px;
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .logo {
    justify-self: start;
  }

  .logo-word {
    font-size: 17px;
  }

  .product-grid,
  .features,
  .reviews,
  .footer-grid,
  .grid-2,
  .split,
  .product-layout,
  .checkout-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .split img {
    min-height: 280px;
  }

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

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .header-tools .hide-sm {
    display: none;
  }
}
