:root {
  --ink: #242725;
  --muted: #7c8582;
  --line: #dfe5e2;
  --cloud: #f3f5f4;
  --mist: #f2fafb;
  --sage: #f6faef;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: 12px;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: relative;
  z-index: 20;
  height: 124.81px;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.brand {
  font:
    800 31px/1 Arial,
    sans-serif;
  letter-spacing: -1.4px;
}
.bag {
  order: 2;
  margin-left: auto;
  margin-right: 20px;
  border: 0;
  background: none;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.bag span {
  width: 20px;
  height: 21px;
  border: 1.5px solid;
  position: relative;
}
.bag span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -8px;
  width: 9px;
  height: 9px;
  border: 1.5px solid;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}
.bag small {
  font-size: 12px;
}
.menu-open {
  order: 3;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 7px;
  cursor: pointer;
}
.menu-open span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 410px;
  max-width: calc(100% - 15px);
  z-index: 100;
  background: #f5f8f6;
  padding: 28px 28px 36px;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  overflow: auto;
}
.menu::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(27, 34, 31, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu.is-open {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}
.menu.is-open::before {
  opacity: 1;
}
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
}
.menu-close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.menu-search {
  height: 44px;
  margin-top: 28px;
  border-bottom: 1px solid #aeb8b4;
  display: grid;
  grid-template-columns: auto 1fr 44px;
  align-items: center;
  gap: 10px;
}
.menu-search label {
  font-size: 9px;
  letter-spacing: 0.16em;
}
.menu-search input {
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}
.menu-search button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0 24px;
}
.menu-promos a {
  min-height: 104px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.menu-promos img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}
.menu nav {
  border-top: 1px solid var(--line);
}
.menu nav > a,
.menu summary {
  min-height: 48px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  list-style: none;
}
.menu nav > a:first-of-type,
.menu nav details:first-child summary {
  border-top: 0;
}
.menu summary::-webkit-details-marker {
  display: none;
}
.menu details[open] summary span {
  transform: rotate(45deg);
}
.menu details div {
  padding: 3px 12px 10px;
  background: rgba(255, 255, 255, 0.42);
}
.menu details div a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #66706c;
  font-size: 11px;
  border-bottom: 1px solid rgba(199, 207, 203, 0.6);
}
.menu-address {
  margin: 28px 0 0;
  line-height: 1.8;
  color: #7b8581;
}
main > section {
  position: relative;
  overflow: hidden;
}
.hero {
  height: 850px;
}
.hero picture,
.hero img {
  width: 100%;
  height: 100%;
}
.hero picture {
  display: block;
  padding-top: 40px;
}
.hero img {
  object-fit: cover;
  object-position: 50% 50%;
}
h2 {
  margin: 0;
  color: #838b88;
  font-size: 13px;
  line-height: 22.75px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.products {
  height: 488.72px;
  padding: 64px max(calc((100% - 1150px) / 2), 19px) 0;
}
.products h2 {
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.product-grid a {
  text-align: center;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.product-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.product-grid a:hover img {
  transform: scale(1.015);
}
.topics {
  height: 676.22px;
}
.topics .rail {
  transform: translateY(-10.6px);
}
.surface {
  width: min(1170px, calc(100% - 20px));
  height: calc(100% - 34px);
  margin: 0 auto;
  border-radius: 8px;
  padding-top: 96px;
  background: var(--cloud);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 74px 42px;
}
.rail-buttons {
  display: flex;
  gap: 8px;
}
.rail-buttons button {
  width: 44px;
  height: 44px;
  border: 1px solid #ccd3d0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
}
.rail-track {
  display: flex;
  gap: 28px;
  transform: translateX(74px);
  transition: transform 0.7s ease;
  will-change: transform;
}
.rail article {
  flex: 0 0 322px;
  min-width: 0;
}
.rail article img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 18px;
}
.rail article small {
  display: block;
  color: #9ca4a1;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.rail article h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}
.rail article p {
  margin: 0 0 10px;
  min-height: 38px;
  font-size: 11px;
  line-height: 1.65;
}
.topics .rail article p {
  min-height: 88px;
  font-size: 13px;
  line-height: 22.1px;
}
.rail article a,
.split a {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.seasonal {
  height: 776.93px;
  padding-top: 57px;
  background: var(--mist);
}
.seasonal .split-copy {
  height: 720px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.split-copy h3 {
  margin: 54px 0 24px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
.split-copy p {
  margin: 0 0 44px;
  font-size: 13px;
  line-height: 1.8;
}
.stories {
  height: 525px;
  padding-top: 72.7px;
}
.wide-head {
  margin: 0 max(calc((100% - 1150px) / 2), 19px) 42px;
}
.stories .rail-track {
  transform: translateX(145px);
}
.stories .rail {
  transform: translateY(-14.6px);
}
.stories .rail article {
  flex-basis: 364.66px;
}
.stories .rail article h3 {
  min-height: 43px;
}
.news {
  height: 492.87px;
  padding: 82.62px max(calc((100% - 1150px) / 2), 19px) 0;
}
.news h2 {
  text-align: center;
  margin-bottom: 32px;
}
.news-list {
  border-top: 1px solid var(--line);
}
.news-list a {
  min-height: 54px;
  display: grid;
  grid-template-columns: 120px 82px 1fr 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.news-list time {
  color: #9ca4a1;
}
.news-list small {
  width: 64px;
  padding: 5px;
  text-align: center;
  background: #eff5f1;
  color: #77827e;
}
.news-list b {
  font-size: 17px;
  font-weight: 400;
  text-align: right;
}
.about {
  height: 799.45px;
  padding-top: 70px;
}
.about .split-copy {
  height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.about .split-copy h2,
.about-description {
  width: 100%;
  max-width: 640px;
}
.about-description {
  margin-top: 24px;
  font-size: 13px;
  line-height: 22.1px;
}
.about-description span {
  display: block;
}
.about .split-copy a {
  margin-top: 16px;
  font-size: 12px;
  line-height: 21px;
}
.note {
  height: 780.86px;
}
.note .surface {
  height: 670px;
  padding-top: 126px;
  background: var(--sage);
}
.note .rail-track {
  transform: translateX(74px);
}
.note .section-head {
  margin-bottom: 28.6px;
}
.note .rail article h3 {
  min-height: 52px;
}
.site-footer {
  position: relative;
  height: 324.5px;
  padding: 62px max(calc((100% - 1150px) / 2), 19px);
  background: #f2f7f6;
  font-size: 12px;
  line-height: 1.75;
}
.footer-links {
  display: grid;
  grid-template-columns: 330px 330px 1fr;
  gap: 52px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-links button {
  border: 0;
  padding: 0 4px;
  background: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}
.payments {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
}
.payments span {
  border: 1px solid #9da6a3;
  min-width: 45px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #737b78;
  font-size: 9px;
}
.copyright {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: #99a19e;
  font-size: 9px;
  white-space: nowrap;
}
.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  opacity: 0;
  background: #202522;
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  transition: 0.2s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1100px) and (min-width: 740px) {
  .site-header {
    margin: 0 27px;
  }
  .hero {
    height: 616px;
  }
  .products {
    height: 474.72px;
    padding-top: 64px;
    padding-inline: 37px;
  }
  .topics {
    height: 612.3px;
  }
  .topics .rail {
    transform: translateY(-14.6px);
  }
  .surface {
    padding-top: 64px;
  }
  .section-head {
    margin-left: 90px;
    margin-right: 90px;
  }
  .rail-track {
    transform: translateX(91px);
  }
  .rail article {
    flex-basis: 255.33px;
  }
  .seasonal {
    height: 577px;
    padding-top: 57px;
  }
  .seasonal .split-copy {
    height: 512px;
  }
  .split-copy h3 {
    margin-top: 44px;
    font-size: 17px;
  }
  .stories {
    height: 485px;
    padding-top: 64.62px;
  }
  .stories .rail-track {
    transform: translateX(37px);
  }
  .stories .rail article {
    flex-basis: 298px;
  }
  .news {
    height: 496px;
    padding-top: 64.56px;
  }
  .about {
    height: 632px;
    padding-top: 48.81px;
  }
  .about .split-copy {
    height: 512px;
  }
  .about-description span {
    max-width: 360px;
    margin-inline: auto;
  }
  .note {
    height: 691.2px;
  }
  .note .surface {
    height: 620px;
    padding-top: 64.44px;
  }
  .note .rail-track {
    transform: translateX(91px);
  }
  .site-footer {
    height: 324.5px;
  }
}
@media (max-width: 820px) and (min-width: 740px) {
  .site-header {
    margin: 0 9px;
  }
  .hero {
    height: 472px;
  }
  .products {
    height: 419.72px;
    padding-inline: 19px;
  }
  .topics {
    height: 611.3px;
  }
  .section-head {
    margin-left: 55px;
    margin-right: 55px;
  }
  .surface {
    width: calc(100% - 10px);
  }
  .rail-track {
    gap: 20px;
    transform: translateX(55px);
  }
  .rail article {
    flex-basis: 298.09px;
  }
  .seasonal {
    height: 520.61px;
    padding-top: 67.98px;
  }
  .seasonal .split-copy {
    height: 384px;
  }
  .stories {
    height: 454px;
    padding-top: 3.99px;
  }
  .stories .rail-track {
    transform: translateX(19px);
  }
  .stories .rail article {
    flex-basis: 337.14px;
  }
  .news {
    height: 480px;
    padding-top: 64.28px;
  }
  .about {
    height: 520px;
    padding-top: 64.53px;
  }
  .about .split-copy {
    height: 384px;
  }
  .about-description span {
    max-width: 292px;
  }
  .note {
    height: 700.9px;
  }
  .note .surface {
    padding-top: 64.25px;
  }
  .note .rail-track {
    transform: translateX(55px);
  }
  .site-footer {
    height: 407.25px;
    padding-top: 80px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .payments {
    grid-column: 1/-1;
  }
}
@media (max-width: 739px) {
  .site-header {
    height: 114.81px;
    padding: 0 10px;
    justify-content: center;
  }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    letter-spacing: -0.7px;
  }
  .bag {
    position: absolute;
    left: 2px;
    margin: 0;
  }
  .menu-open {
    position: absolute;
    right: 2px;
  }
  .menu {
    width: 375px;
    padding: 22px 20px 32px;
  }
  .menu-head {
    font-size: 22px;
  }
  .menu-promos img {
    width: 80px;
    height: 80px;
  }
  .hero {
    height: 970px;
  }
  .hero picture {
    padding-top: 10px;
  }
  .hero img {
    object-fit: cover;
    object-position: 51% 50%;
  }
  .products {
    height: 1929.91px;
    padding: 64px 10px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 35.85px;
    margin-top: 32px;
  }
  .product-grid a {
    font-size: 10px;
  }
  .product-grid img {
    aspect-ratio: 4/3;
    margin-bottom: 15px;
  }
  .topics {
    height: 654.84px;
  }
  .surface {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding-top: 63.91px;
  }
  .section-head {
    margin: 0 10px 33px;
  }
  .rail-buttons button {
    width: 44px;
    height: 44px;
  }
  .rail-track {
    gap: 20px;
    transform: translateX(10px);
  }
  .rail article {
    flex-basis: 322.84px;
  }
  .rail article img {
    margin-bottom: 19px;
  }
  .rail article small {
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 17.5px;
  }
  .rail article h3 {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 22.1px;
  }
  .rail article p {
    font-size: 13px;
    line-height: 22.1px;
  }
  .topics .rail article p {
    min-height: 88.4px;
    margin-bottom: 14px;
  }
  .topics .rail article h3 {
    margin-bottom: 0;
  }
  .note .rail article h3 {
    min-height: 44.19px;
  }
  .rail article a {
    font-size: 11px;
    line-height: 19.25px;
  }
  .seasonal {
    height: 1035.35px;
    display: block;
    padding-top: 110.75px;
  }
  .seasonal > img {
    width: 720px;
    height: 720px;
    max-width: none;
    object-fit: cover;
  }
  .seasonal .split-copy {
    position: absolute;
    inset: 64px 0 auto;
    width: 100%;
    height: 249px;
    justify-content: flex-start;
    padding-top: 0;
  }
  .seasonal .split-copy h3,
  .seasonal .split-copy p,
  .seasonal .split-copy a {
    position: absolute;
    margin: 0;
  }
  .seasonal .split-copy h3 {
    top: 850px;
    width: 100%;
    font-size: 15px;
  }
  .seasonal .split-copy p {
    top: 897px;
    width: 100%;
    font-size: 11px;
  }
  .seasonal .split-copy a {
    top: 943px;
  }
  .stories {
    height: 524.56px;
    padding-top: 64px;
  }
  .wide-head {
    margin: 0 10px 40px;
  }
  .stories .rail-track {
    transform: translateX(10px);
  }
  .stories .rail {
    transform: translateY(-20.6px);
  }
  .stories .rail article {
    flex-basis: 322.84px;
  }
  .news {
    height: 682.72px;
    padding: 64.56px 10px 0;
  }
  .news h2 {
    margin-bottom: 30px;
  }
  .news-list a {
    min-height: 72px;
    grid-template-columns: 95px 64px 1fr 24px;
    font-size: 9px;
  }
  .news-list small {
    width: 54px;
  }
  .about {
    height: 1090.84px;
    display: block;
    padding-top: 110.75px;
  }
  .about > img {
    width: 720px;
    height: 720px;
    max-width: none;
    object-fit: cover;
  }
  .about .split-copy {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    height: 970px;
    padding-inline: 40px;
    justify-content: flex-end;
    padding-bottom: 40px;
  }
  .about .split-copy h2 {
    position: absolute;
    top: 0;
  }
  .about-description {
    font-size: 13px;
    line-height: 22.1px;
  }
  .about .split-copy a {
    font-size: 11px;
    line-height: 19.25px;
  }
  .note {
    height: 739.31px;
  }
  .note .surface {
    height: 100%;
    padding-top: 64px;
  }
  .note .rail-track {
    transform: translateX(10px);
  }
  .note .section-head {
    margin-bottom: 19.45px;
  }
  .site-footer {
    height: 583.75px;
    padding: 70px 10px 0;
    font-size: 10px;
    line-height: 1.8;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .payments {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .hero {
    height: 530px;
  }
  .hero img {
    object-position: 51% 50%;
  }
  .products {
    height: 1174.41px;
  }
  .product-grid {
    gap: 35.85px;
  }
  .topics {
    height: 675.89px;
  }
  .topics .rail {
    transform: translateY(-13.61px);
  }
  .surface {
    padding-top: 77px;
  }
  .rail-track {
    gap: 16px;
    transform: translateX(10px);
  }
  .rail article {
    flex-basis: 334.91px;
  }
  .seasonal {
    height: 706.34px;
    padding-top: 111.75px;
  }
  .seasonal > img {
    width: 390px;
    height: 390px;
  }
  .seasonal .split-copy {
    top: 64px;
  }
  .seasonal .split-copy h3 {
    top: 530px;
    font-size: 14px;
  }
  .seasonal .split-copy p {
    top: 575px;
    font-size: 10px;
  }
  .seasonal .split-copy a {
    top: 620px;
  }
  .stories {
    height: 533.61px;
    padding-top: 64px;
  }
  .stories .rail-track {
    transform: translateX(10px);
  }
  .stories .rail article {
    flex-basis: 334.91px;
  }
  .note .section-head {
    margin-bottom: 20.44px;
  }
  .news {
    height: 749px;
  }
  .about {
    height: 804.03px;
    padding-top: 110.75px;
  }
  .about > img {
    width: 390px;
    height: 390px;
  }
  .about .split-copy {
    top: 64px;
    height: 720px;
    padding-inline: 20px;
    padding-bottom: 73.75px;
    transform: none;
  }
  .about-description {
    max-width: 350px;
  }
  .note {
    height: 749.36px;
  }
  .note .surface {
    padding-top: 64px;
  }
  .note .rail-track {
    transform: translateX(10px);
  }
  .site-footer {
    height: 626.5px;
    padding-top: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}
