:root {
  --cream: #f7efe8;
  --paper: #fffdfb;
  --ink: #432d24;
  --muted: #786258;
  --rose: #b9574a;
  --rose-dark: #914136;
  --sage: #7e8868;
  --gold: #aa8152;
  --line: #e8d7ca;
  --shadow: 0 20px 55px rgba(77, 48, 34, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; }

.site-header {
  display: flex;
  width: min(100% - 40px, 1240px);
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 150px; height: 88px; object-fit: contain; }
.header-link { color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.header-link span { margin-left: 7px; color: var(--rose); }

.hero {
  display: grid;
  width: min(100% - 40px, 1240px);
  min-height: 620px;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  margin: 0 auto;
  padding: 44px 0 88px;
}

.eyebrow { margin: 0 0 16px; color: var(--sage); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow span { padding: 0 5px; color: var(--rose); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 580px; margin: 0 0 24px; font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 500; letter-spacing: -0.045em; line-height: 0.98; }
h1 em { color: var(--rose); font-weight: inherit; }
.hero__copy > p:not(.eyebrow) { max-width: 520px; margin: 0 0 30px; color: var(--muted); font-size: 1.08rem; }

.button { display: inline-flex; min-height: 52px; align-items: center; gap: 13px; padding: 13px 24px; color: #fff; background: var(--rose); border-radius: 999px; box-shadow: 0 11px 25px rgba(185, 87, 74, 0.22); font-weight: 700; text-decoration: none; transition: 180ms ease; }
.button:hover, .button:focus-visible { background: var(--rose-dark); transform: translateY(-2px); }
.button span { font-size: 1.2rem; }

.hero__mosaic { position: relative; min-height: 530px; }
.hero__image { position: absolute; display: block; object-fit: cover; box-shadow: var(--shadow); }
.hero__image--main { inset: 0 25% 0 0; width: 75%; height: 100%; border-radius: 110px 24px 24px 24px; }
.hero__image--top, .hero__image--bottom { right: 0; width: 34%; height: 43%; border: 8px solid var(--cream); border-radius: 22px; }
.hero__image--top { top: 4%; }
.hero__image--bottom { bottom: 4%; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: rgba(255,255,255,.42); }
.benefits p { display: flex; min-height: 84px; align-items: center; justify-content: center; gap: 10px; margin: 0; color: var(--muted); font-family: Georgia, "Times New Roman", serif; }
.benefits p + p { border-left: 1px solid var(--line); }
.benefits span { color: var(--gold); font-size: 1.25rem; }

.showcase { width: min(100% - 40px, 1240px); margin: auto; padding: 105px 0 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2, .contact h2 { margin: 0; font-size: clamp(2.35rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
.section-heading > p { max-width: 360px; margin: 0; color: var(--muted); }
.section-heading .eyebrow { margin-bottom: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 8px 32px rgba(77,48,34,.06); text-decoration: none; transition: box-shadow 200ms ease, transform 200ms ease; }
.product-card--featured { grid-column: span 2; }
.product-card--featured .product-card__media { aspect-ratio: 16 / 10; }
.product-card:hover, .product-card:focus-visible { box-shadow: var(--shadow); outline: none; transform: translateY(-7px); }
.product-card:focus-visible { box-shadow: 0 0 0 4px rgba(185,87,74,.22), var(--shadow); }
.product-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #eaded4; }
.product-card__image { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity 420ms ease, transform 500ms ease; }
.product-card:hover .product-card__image, .product-card:focus-visible .product-card__image { transform: scale(1.035); }
.product-card__image--alternate { position: absolute; inset: 0; opacity: 0; }
.product-card--has-variant:hover .product-card__image--primary, .product-card--has-variant:focus-visible .product-card__image--primary { opacity: 0; }
.product-card--has-variant:hover .product-card__image--alternate, .product-card--has-variant:focus-visible .product-card__image--alternate { opacity: 1; }
.product-card__tag { position: absolute; top: 16px; left: 16px; padding: 7px 11px; color: var(--ink); background: rgba(255,253,251,.9); border-radius: 999px; backdrop-filter: blur(8px); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card__hint { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 9px 12px; color: #fff; background: rgba(67,45,36,.68); border-radius: 10px; backdrop-filter: blur(8px); font-size: .72rem; text-align: center; transition: opacity 180ms ease; }
.product-card--has-variant:hover .product-card__hint, .product-card--has-variant:focus-visible .product-card__hint { opacity: 0; }
.product-card__body { position: relative; display: grid; min-height: 118px; grid-template-columns: 1fr auto; align-items: center; gap: 8px 18px; padding: 22px; }
.product-card__type { margin: 0 0 3px; color: var(--sage); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 1.55rem; font-weight: 500; line-height: 1.2; }
.product-card__arrow { display: grid; width: 40px; height: 40px; place-items: center; color: var(--rose); border: 1px solid var(--line); border-radius: 50%; font-size: 1.1rem; transition: 180ms ease; }
.product-card:hover .product-card__arrow, .product-card:focus-visible .product-card__arrow { color: #fff; background: var(--rose); border-color: var(--rose); }
.swatches { display: flex; grid-column: 1 / -1; gap: 6px; }
.swatch { width: 13px; height: 13px; border: 2px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.swatch--brown { background: #9b5e31; }
.swatch--blue { background: #397bb9; }
.swatch--sand { background: #c9a886; }
.swatch--mustard { background: #b58727; }
.swatch--pink { background: #d58ba1; }
.swatch--red { background: #a51f35; }
.swatch--beige { background: #bda181; }
.swatch--white { background: #fff; }
.swatch--orange { background: #c47a16; }

.contact { padding: 95px 20px; color: #fff; background: var(--ink); text-align: center; }
.contact .eyebrow { color: #c9bca0; }
.contact > p:not(.eyebrow) { margin: 20px auto 30px; color: #d9ccc5; }
.button--light { color: var(--ink); background: #fff8f2; box-shadow: none; }
.button--light:hover, .button--light:focus-visible { color: #fff; background: var(--rose); }

footer { display: flex; width: min(100% - 40px, 1240px); min-height: 120px; align-items: center; justify-content: space-between; gap: 24px; margin: auto; color: var(--muted); font-size: .78rem; }
footer img { width: 120px; height: 72px; object-fit: contain; }
footer a { text-decoration: none; }

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 30px; }
  .hero__copy { max-width: 680px; text-align: center; justify-self: center; }
  .hero__copy > p:not(.eyebrow) { margin-inline: auto; }
  .hero__mosaic { min-height: 520px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits p:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .benefits p:nth-child(4) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--featured { grid-column: span 2; }
}

@media (max-width: 600px) {
  .site-header { width: min(100% - 28px, 1240px); min-height: 82px; }
  .brand img { width: 120px; height: 70px; }
  .header-link { font-size: .68rem; }
  .hero { width: min(100% - 28px, 1240px); gap: 42px; padding: 24px 0 60px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero__mosaic { min-height: 390px; }
  .hero__image--main { right: 18%; width: 82%; border-radius: 65px 20px 20px; }
  .hero__image--top, .hero__image--bottom { width: 38%; height: 38%; border-width: 5px; }
  .benefits { grid-template-columns: 1fr; }
  .benefits p { min-height: 64px; }
  .benefits p + p { border-top: 1px solid var(--line); border-left: 0; }
  .showcase { width: min(100% - 28px, 1240px); padding: 72px 0 80px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 18px; }
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card--featured { grid-column: auto; }
  .product-card--featured .product-card__media, .product-card__media { aspect-ratio: 4 / 5; }
  .product-card__hint { display: none; }
  .contact { padding: 72px 20px; }
  footer { flex-direction: column; padding: 30px 0; text-align: center; }
}

@media (hover: none) {
  .product-card--has-variant .product-card__image--alternate { opacity: 0; }
  .product-card--has-variant .product-card__image--primary { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
