:root {
  --ink: #1d2528;
  --muted: #647078;
  --line: #d8dedc;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --forest: #315847;
  --lake: #486f83;
  --clay: #a45e49;
  --sun: #d8a24c;
  --dusk: #c58f6f;
  color-scheme: light;
  font-family: Inter, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(29, 37, 40, 0.12);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
nav,
.hero-actions,
.header-actions,
.cart-title {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 16px;
  margin-top: 4px;
  border-radius: 999px 999px 8px 8px;
  background: var(--forest);
  box-shadow: inset -8px -4px 0 var(--lake);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 5px;
  border-radius: 50%;
  background: inherit;
}

.brand-mark::before {
  left: 4px;
  bottom: 5px;
  width: 16px;
  height: 16px;
}

.brand-mark::after {
  right: 3px;
  bottom: 6px;
  width: 13px;
  height: 13px;
  background: var(--sun);
}

nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
nav a[aria-current="page"],
.text-link:hover {
  color: var(--forest);
}

.header-actions {
  gap: 10px;
}

.visit-button,
.cart-button,
.cart-title button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  cursor: pointer;
}

.visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero img {
  object-position: 50% 48%;
  filter: saturate(1.08) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 16, 19, 0.74), rgba(9, 16, 19, 0.26) 58%, rgba(9, 16, 19, 0.08)),
    linear-gradient(0deg, rgba(9, 16, 19, 0.32), rgba(9, 16, 19, 0));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 28px 9vh;
  color: white;
}

.hero-copy h1 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 10vw, 132px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c29b;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border: 1px solid var(--forest);
  background: var(--forest);
  color: white;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.metrics div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 26px;
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.checkout {
  padding: 72px 28px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 42px;
  align-items: center;
  padding: 76px 28px 44px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.page-hero.compact {
  display: block;
  max-width: none;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
}

.page-hero img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-position: 50% 46%;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #d2c4b9;
}

.product-image img,
.lookbook-image img,
.journal-grid img {
  filter: saturate(1.04) contrast(1.04);
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  color: var(--muted);
}

.product-body button {
  width: 100%;
}

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

.summary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.summary-card img {
  aspect-ratio: 16 / 10;
}

.summary-card div {
  padding: 18px;
}

.lookbook {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  min-height: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.lookbook-copy {
  align-self: center;
  padding: 52px;
}

.lookbook-image img {
  object-position: 50% 48%;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--lake);
  font-weight: 800;
}

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

.journal-grid article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.journal-grid img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  margin-bottom: 16px;
}

.journal-grid article:nth-child(1) img {
  object-position: 50% 46%;
}

.journal-grid article:nth-child(2) img {
  object-position: 50% 52%;
}

.journal-grid article:nth-child(3) img {
  object-position: 50% 55%;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  border-top: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--sun);
  background: rgba(255, 255, 255, 0.66);
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  background: #e8ece8;
}

.checkout-panel,
.cart-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}

.cart-title {
  justify-content: space-between;
  gap: 16px;
}

.cart-title h2 {
  font-size: 28px;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 96px;
  margin: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-item small {
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 18px;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 620px;
  }

  .hero img {
    object-position: 44% 52%;
  }

  .hero-copy {
    padding: 0 18px 56px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .metrics,
  .summary-grid,
  .product-grid,
  .journal-grid,
  .lookbook,
  .page-hero,
  .split,
  .checkout {
    grid-template-columns: 1fr;
  }

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

  .section,
  .page-hero,
  .checkout {
    padding: 54px 18px;
  }

  .page-hero.compact {
    padding-bottom: 34px;
  }

  .lookbook {
    min-height: auto;
  }

  .lookbook-image {
    aspect-ratio: 4 / 3;
  }

  .lookbook-copy {
    padding: 34px 18px;
  }

  footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}
