:root {
  --ink: #35312e;
  --muted: #6e6259;
  --cream: #fcfaf6;
  --warm: #f5f1e9;
  --sand: #f7f3eb;
  --line: #e6e6e6;
  --brick: #d37657;
  --brick-dark: #c87b5e;
  --wine: #670a18;
  --white: #ffffff;
  --fs-hero: 50px;
  --fs-39: 39px;
  --fs-31: 31px;
  --fs-25: 25px;
  --fs-20: 20px;
  --fs-16: 16px;
  --fs-13: 13px;
  --fs-10: 10px;
  --max: 1344px;
  font-family: "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: var(--fs-16);
  line-height: 1.45;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.top-strip {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  background: #f0eedd;
  color: var(--wine);
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.top-strip p {
  margin: 0;
}

.top-strip__close {
  position: absolute;
  right: 44px;
  top: 50%;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--wine);
  transform: translateY(-50%);
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: var(--fs-13);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav--right {
  justify-content: flex-end;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 32px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.cart-pill {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: var(--brick-dark);
  color: var(--warm);
  font-size: var(--fs-13);
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 605px;
  overflow: hidden;
  background: var(--sand);
}

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

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 169px 0 0 287px;
}

.eyebrow {
  margin: 0;
  color: var(--ink);
  font-size: var(--fs-16);
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 260px;
  margin: 24px 0 45px;
  color: var(--ink);
  font-size: var(--fs-hero);
  line-height: 1.44;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero h1 span {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 206px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.button--primary,
.button--ghost:hover {
  background: var(--brick);
  color: var(--white);
}

.button--ghost {
  min-width: 148px;
  min-height: 42px;
  border-color: var(--brick);
  background: transparent;
  color: var(--brick);
  transition: color 160ms ease, background 160ms ease;
}

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

.press {
  height: 212px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--warm);
}

.press blockquote {
  margin: 0 0 38px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.press__logos {
  width: min(1140px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 46px;
}

.press__logos img {
  max-height: 36px;
  object-fit: contain;
}

.welcome {
  background: var(--cream);
}

.welcome__inner {
  width: min(1170px, calc(100% - 80px));
  min-height: 340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 135px;
}

.welcome h2 {
  margin: 0;
  font-size: var(--fs-39);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.welcome p {
  max-width: 650px;
  margin: 0;
  color: #4f463f;
  font-size: var(--fs-16);
  line-height: 1.6;
}

.features {
  min-height: 939px;
  padding: 75px 0 85px;
  background: #fbf6ea;
  overflow: hidden;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 44px;
  font-size: var(--fs-31);
  line-height: 1;
  font-weight: 400;
}

.swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.swatch {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--swatch-color, #e09d81);
  outline: 0;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.swatch[data-color="#E09D81"] { --swatch-color: #e09d81; }
.swatch[data-color="#748EA1"] { --swatch-color: #748ea1; }
.swatch[data-color="#B76D47"] { --swatch-color: #b76d47; }
.swatch[data-color="#7D836E"] { --swatch-color: #7d836e; }
.swatch[data-color="#C33636"] { --swatch-color: #c33636; }
.swatch[data-color="#CDC7B3"] { --swatch-color: #cdc7b3; }
.swatch[data-color="#595752"] { --swatch-color: #595752; }
.swatch[data-color="#D3C2CA"] { --swatch-color: #d3c2ca; }

.swatch.is-active,
.swatch:focus-visible {
  box-shadow: 0 0 0 3px #e09d81, inset 0 0 0 3px var(--cream);
}

.swatch:hover {
  transform: translateY(-2px);
}

.feature-stage {
  position: relative;
  width: min(920px, calc(100% - 64px));
  min-height: 650px;
  margin: 54px auto 0;
}

.feature-stage__product {
  width: min(562px, 62vw);
  margin: 0 auto;
  transition: opacity 160ms ease;
}

.callout {
  position: absolute;
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
  text-align: center;
  text-transform: uppercase;
}

.callout span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #e09d81;
}

.callout--lid {
  top: 91px;
  left: 0;
}

.callout--lid span {
  right: -49px;
  top: 16px;
}

.callout--spatula {
  top: 44px;
  right: 20px;
}

.callout--spatula span {
  left: 76px;
  bottom: -48px;
}

.callout--basket {
  top: 284px;
  right: 0;
}

.callout--basket span {
  left: -38px;
  top: 4px;
}

.callout--spouts {
  top: 355px;
  left: 54px;
  max-width: 110px;
}

.callout--spouts span {
  right: -72px;
  top: 4px;
}

.callout--handle {
  top: 504px;
  right: 16px;
}

.callout--handle span {
  left: 12px;
  top: -32px;
}

.callout--nonstick {
  left: 0;
  bottom: 34px;
}

.callout--nonstick span {
  right: -58px;
  bottom: -16px;
}

.collection {
  padding: 80px 48px 72px;
  background: var(--cream);
}

.collection__intro {
  max-width: 560px;
  margin: 0 auto 78px;
  text-align: center;
}

.collection__intro h2 {
  margin: 0;
  font-size: var(--fs-31);
  line-height: 1.2;
  font-weight: 700;
}

.collection__intro p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: var(--fs-16);
  line-height: 1.55;
}

.products {
  width: min(1296px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product__image {
  position: relative;
  width: 100%;
  height: 285px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  background: #fbf9f5;
  overflow: hidden;
}

.product__image img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.product--feature .product__image img {
  max-width: 96%;
}

.badge {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  min-width: 146px;
  padding: 2px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: var(--fs-13);
  line-height: 1;
  transform: translateX(-50%);
}

.mini-swatches {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 21px;
}

.mini-swatches span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--swatch);
}

.product h3 {
  margin: 0 0 2px;
  font-size: var(--fs-20);
  line-height: 1.2;
  font-weight: 700;
}

.product .price {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--fs-13);
  line-height: 1.6;
}

.product p:not(.price) {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-13);
  line-height: 1.5;
}

.social {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 480px 1fr;
  background: var(--cream);
}

.photo-strip {
  min-height: 480px;
  overflow: hidden;
}

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

.social__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 62px;
  background: #f5f1e9;
  text-align: center;
}

.social__center .eyebrow {
  font-size: var(--fs-13);
  line-height: 1.6;
  text-transform: none;
}

.social__center h2 {
  margin: 28px 0 54px;
  font-size: var(--fs-25);
  line-height: 1.24;
  font-weight: 700;
}

.site-footer {
  background: var(--ink);
  color: var(--warm);
}

.footer-main {
  min-height: 579px;
  width: min(1344px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 448px;
  gap: 120px;
  padding: 80px 0 70px;
}

.newsletter h2 {
  margin: 0;
  font-size: var(--fs-25);
  line-height: 1.16;
  font-weight: 700;
}

.newsletter p {
  max-width: 585px;
  margin: 31px 0 59px;
  color: var(--warm);
  font-size: var(--fs-13);
}

.newsletter form {
  width: min(448px, 100%);
  display: grid;
  grid-template-columns: 1fr 101px;
  height: 60px;
}

.newsletter label {
  position: relative;
  display: block;
}

.newsletter label span {
  position: absolute;
  left: 20px;
  top: 20px;
  color: rgba(245, 241, 233, 0.8);
  font-size: var(--fs-13);
  pointer-events: none;
}

.newsletter input {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(245, 241, 233, 0.35);
  border-right: 0;
  background: transparent;
  color: var(--warm);
  padding: 18px 18px 8px;
  outline: 0;
}

.newsletter input:focus {
  border-color: var(--warm);
}

.newsletter button {
  border: 1px solid rgba(245, 241, 233, 0.35);
  background: var(--warm);
  color: var(--ink);
  font-size: var(--fs-13);
}

.form-status {
  min-height: 20px;
  margin-top: 14px !important;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.footer-nav h3 {
  margin: 0 0 30px;
  color: var(--warm);
  font-size: var(--fs-16);
  line-height: 1.3;
  font-weight: 700;
}

.footer-nav a {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: var(--fs-16);
  line-height: 1.1;
}

.footer-nav__region {
  margin-top: 88px !important;
  margin-bottom: 8px !important;
}

.region-flags {
  display: flex;
  gap: 24px;
  color: var(--warm);
  font-size: var(--fs-13);
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: #807c62;
  color: var(--warm);
  font-size: var(--fs-13);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

  .hero__content {
    padding-left: 120px;
  }

  .welcome__inner {
    gap: 70px;
  }

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

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

  .photo-strip {
    min-height: 360px;
  }

  .social__center {
    order: -1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 760px) {
  :root {
    --fs-hero: 42px;
    --fs-39: 31px;
    --fs-31: 25px;
  }

  .top-strip {
    height: auto;
    min-height: 40px;
    padding: 8px 52px 8px 18px;
    justify-content: flex-start;
    text-align: left;
  }

  .top-strip__close {
    right: 12px;
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .nav {
    display: none;
  }

  .site-header.is-open .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }

  .site-header.is-open .nav--right {
    top: 178px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
  }

  .hero {
    min-height: 620px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__content {
    padding: 84px 24px 0;
  }

  .hero h1 {
    margin-bottom: 34px;
  }

  .press {
    height: auto;
    padding: 48px 24px;
  }

  .press__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 34px;
  }

  .welcome__inner {
    width: calc(100% - 48px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 68px 0;
  }

  .features {
    min-height: auto;
    padding: 58px 0;
  }

  .swatches {
    flex-wrap: wrap;
    padding: 0 40px;
  }

  .feature-stage {
    width: calc(100% - 24px);
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature-stage__product {
    width: min(520px, 100%);
  }

  .callout {
    position: static;
    max-width: 320px;
  }

  .callout span {
    position: static;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
  }

  .collection {
    padding: 62px 24px 80px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product__image {
    height: 260px;
  }

  .footer-main {
    width: calc(100% - 48px);
    padding: 56px 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav__region {
    margin-top: 34px !important;
  }

  .newsletter form {
    grid-template-columns: 1fr;
    height: auto;
  }

  .newsletter input,
  .newsletter button {
    height: 58px;
    border: 1px solid rgba(245, 241, 233, 0.35);
  }

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

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}
