:root {
  --background: #f7f3eb;
  --foreground: #171412;
  --ink-soft: #5f5850;
  --line: #d9d0c1;
  --paper: #fffaf1;
  --black: #11100f;
  --wine: #681e2e;
  --gold: #b89355;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
}

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

main {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: rgba(247, 243, 235, 0.86);
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  width: 128px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-header nav {
  gap: clamp(14px, 3vw, 32px);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: 118px clamp(20px, 5vw, 64px) 58px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  margin-bottom: 6px;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.78;
  letter-spacing: 0.02em;
}

.tagline {
  margin-bottom: 28px;
  color: var(--wine);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.intro,
.section-heading p,
.quality-panel p,
.contact p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.intro {
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: var(--black);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
  color: var(--black);
}

.button:hover {
  border-color: var(--wine);
  background: var(--wine);
  color: white;
}

.hero-image {
  position: relative;
  min-height: clamp(340px, 46vw, 540px);
  overflow: hidden;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: #e8dece;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 243, 235, 0.1), transparent 30%),
    linear-gradient(0deg, rgba(23, 20, 18, 0.15), transparent 42%);
  pointer-events: none;
}

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

.collection,
.quality,
.contact {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 26px;
}

.section-heading h2,
.quality h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.92;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  display: grid;
  min-height: 520px;
  grid-template-rows: 1fr auto;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-photo {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #eee5d6;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-info {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.product-info h3 {
  margin-bottom: 4px;
  font-size: 1.7rem;
  line-height: 1;
}

.product-info p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.material,
.price {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price {
  color: var(--foreground) !important;
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
  background: var(--black);
  color: var(--paper);
}

.quality .eyebrow {
  color: #d2b371;
}

.quality-panel {
  padding-top: 8px;
}

.quality-panel p {
  color: #d9d0c1;
}

.quality-panel ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quality-panel li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  color: #fffaf1;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  min-height: 520px;
  place-items: center;
  text-align: center;
}

.contact .eyebrow,
.contact h2,
.contact p,
.contact .button {
  max-width: 760px;
}

.contact p {
  margin: 22px auto 32px;
}

@media (max-width: 980px) {
  .hero,
  .quality {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .site-header nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 0.68rem;
  }

  .brand {
    width: 112px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-image {
    min-height: 310px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .product-card {
    min-height: 470px;
  }
}
