:root {
  --charcoal: #1d1d1b;
  --deep-charcoal: #10110f;
  --beige: #cbb99d;
  --beige-dark: #ad8d67;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --ink: #242321;
  --muted: #77736e;
  --line: #e4ded5;
  --page-width: 1440px;
  --shadow: 0 20px 55px rgba(42, 35, 26, 0.08);
}

body {
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 14%, rgba(203, 185, 157, 0.14), transparent 30%),
    var(--ivory);
  font-family: "Noto Sans KR", "Pretendard", Arial, sans-serif;
  line-height: 1.5;
  word-break: keep-all;
}

body.modal-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 16px;
  padding: 12px 18px;
  color: #fff;
  background: #000;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only,
.icon-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-width {
  width: min(calc(100% - 96px), var(--page-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  color: var(--ivory);
  background: var(--deep-charcoal);
}

.brand-strip {
  height: 61px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(203, 185, 157, 0.22);
  background: var(--deep-charcoal) url("../images/hero/top-architecture-original-v2.png") center 28% / cover no-repeat;
}

.brand-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.08), rgba(8, 9, 8, 0.45) 31%, rgba(8, 9, 8, 0.45) 69%, rgba(8, 9, 8, 0.08));
}

.brand-strip p {
  position: relative;
  z-index: 1;
  color: var(--beige);
  font-family: "Noto Serif KR", "Nanum Myeongjo", "Batang", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.065em;
}

.navigation-shell {
  height: 110px;
  width: min(calc(100% - 96px), var(--page-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 310px 1fr 118px;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 292px;
  height: 86px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.brand-logo > img {
  width: 56px;
  height: 70px;
  object-fit: contain;
}

.brand-words {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-words strong {
  color: var(--ivory);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand-words span {
  margin-top: 6px;
  color: rgba(247, 244, 238, 0.7);
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.brand-logo:hover .brand-words span,
.brand-logo:focus-visible .brand-words span {
  color: var(--beige);
}

.brand-logo > img {
  filter: none;
}

.company-strengths h2 img {
  width: 58px;
  height: 72px;
  flex: 0 0 58px;
  object-fit: contain;
  transform: none;
  filter: none;
}

.primary-navigation {
  min-width: 0;
  height: 100%;
}

.mobile-menu-button {
  display: none;
}

.menu-list {
  min-width: 0;
}

.menu-list > li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: rgba(247, 244, 238, 0.22);
  transform: translateY(-50%);
}

.menu-list {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  align-items: stretch;
}

.menu-list > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-list > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  position: relative;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.menu-list > li > a.menu-two-line {
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.menu-two-line > span,
.footer-two-line > span {
  display: block;
}

.menu-list > li > a::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 27px;
  left: 20%;
  height: 2px;
  background: var(--beige);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.menu-list > li:hover > a,
.menu-list > li:focus-within > a {
  color: var(--beige-dark);
}

.menu-list > li:hover > a::after,
.menu-list > li:focus-within > a::after {
  transform: scaleX(1);
}

.submenu {
  position: absolute;
  top: calc(100% - 16px);
  left: 50%;
  width: 122px;
  padding: 5px;
  border: 1px solid rgba(203, 185, 157, 0.35);
  border-radius: 3px;
  color: var(--ivory);
  background: rgba(25, 25, 23, 0.98);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 160ms ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 8px 6px;
  border-radius: 3px;
  font-size: 13px;
  text-align: center;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--beige-dark);
  background: rgba(203, 185, 157, 0.08);
}

.shop-button {
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--beige);
  background: transparent;
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
  transition: 180ms ease;
}

.shop-button:hover,
.shop-button:focus-visible {
  color: var(--beige-dark);
  background: transparent;
}

.shop-cart-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-section {
  height: clamp(382px, 25vw, 480px);
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #171713 url("../images/hero/main-hero-approved-202608.png") center 52% / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 7, 0.56) 0%, rgba(7, 8, 7, 0.31) 31%, rgba(7, 8, 7, 0.04) 58%, transparent 78%);
}

.hero-content {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding-left: clamp(38px, 3.5vw, 58px);
}

.hero-content h1 {
  font-size: clamp(40px, 2.65vw, 46px);
  font-weight: 350;
  line-height: 1.33;
  letter-spacing: -0.055em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-content h1 strong {
  color: var(--beige);
  font-weight: 650;
}

.hero-description {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.72;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.information-section {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 36px;
  padding-block: 14px 56px;
}

.information-column,
.showcase-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel,
.solution-panel,
.product-preview {
  border: 1px solid rgba(210, 200, 186, 0.76);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--shadow);
}

.notice-panel {
  min-height: 157px;
  padding: 14px 22px 13px;
}

.panel-heading,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2,
.section-heading h2 {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.panel-heading a,
.section-heading a {
  color: var(--muted);
  font-size: 13px;
}

.notice-list {
  padding: 7px 0 0;
}

.notice-list li {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #5f5b55;
  font-size: 14px;
}

.notice-list a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-list a::before {
  content: "·";
  margin-right: 8px;
  color: var(--beige-dark);
}

.notice-list em {
  margin-left: 6px;
  color: #a29b91;
  font-size: 10px;
  font-style: normal;
}

.notice-list time {
  flex: 0 0 auto;
  color: #99938b;
  font-size: 12px;
}

.notice-list .notice-status {
  justify-content: center;
  min-height: 81px;
  color: #8a837a;
  text-align: center;
}

.support-panel {
  min-height: 266px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 20px;
}

.support-contact-panel,
.strengths-panel {
  padding: 18px 20px;
}

/* PC 왼쪽 정보 영역: 강점을 먼저, 연락처를 다음에 표시합니다. */
.strengths-panel { order: 1; }
.support-contact-panel { order: 2; }
.featured-products { order: 3; }

.support-contact-panel .support-contact {
  padding: 0;
  border-right: 0;
}

.strengths-panel .company-strengths {
  padding: 0;
}

.strength-blueprint-slogan {
  display: none;
}

/* PC 강점 카드: 실제 텍스트는 유지하고 도면 그래픽만 배경으로 겹칩니다. */
@media (min-width: 901px) {
  .information-section {
    align-items: start;
    column-gap: 36px;
    row-gap: 18px;
  }

  .information-column,
  .showcase-column {
    height: 536px;
    display: grid;
    grid-template-rows: 286px 236px;
    gap: 14px;
  }

  .information-column > *,
  .showcase-column > * {
    min-height: 0;
    height: 100%;
  }

  .strengths-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #fdfbf7;
    background-image:
      linear-gradient(90deg,
        rgba(253, 251, 247, 1) 0%,
        rgba(253, 251, 247, 0.98) 42%,
        rgba(253, 251, 247, 0.88) 55%,
        rgba(253, 251, 247, 0.28) 74%,
        rgba(253, 251, 247, 0) 100%),
      url("../images/ui/strengths-blueprint-v1-20260828.png");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat;
  }

  .strengths-panel .company-strengths {
    position: relative;
    z-index: 1;
  }

  .strength-blueprint-slogan {
    position: absolute;
    right: 18px;
    bottom: 13px;
    z-index: 2;
    display: block;
    padding-left: 36px;
    color: #9c7952;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .strength-blueprint-slogan::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 1px;
    background: #b79569;
  }

}

.featured-products {
  padding: 14px 14px 16px;
  overflow: hidden;
}

.featured-products .panel-heading {
  margin-inline: 4px;
}

.featured-products .panel-heading > span {
  color: var(--beige-dark);
  font-size: 11px;
  font-weight: 700;
}

.featured-carousel-shell {
  height: 156px;
  min-height: 156px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 7px;
}

.featured-product-viewport {
  height: 156px;
  min-width: 0;
  overflow: hidden;
}

.featured-product-track {
  height: 156px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 7px;
  animation: featured-fade 280ms ease both;
}

@keyframes featured-fade {
  from { opacity: .35; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}

.featured-product-card {
  height: 156px;
  min-width: 0;
  display: grid;
  grid-template-rows: 92px 64px;
  overflow: hidden;
  border: 1px solid #e3ddd4;
  border-radius: 6px;
  background: #fff;
}

.featured-product-card img,
.featured-product-empty {
  width: 100%;
  height: 92px;
  aspect-ratio: auto;
  display: block;
  object-fit: contain;
  background: #f8f5ef;
}

.featured-product-card img { padding: 4px; }

.featured-product-card div {
  height: 64px;
  min-height: 64px;
  overflow: hidden;
  padding: 7px 8px 8px;
}

.featured-product-card strong {
  height: 30px;
  display: -webkit-box;
  overflow: hidden;
  color: #2f2b27;
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-product-card span {
  height: 13px;
  margin-top: 4px;
  display: block;
  overflow: hidden;
  color: #9a8a76;
  font-size: 9px;
}

.featured-product-status {
  grid-column: 1 / -1;
  padding: 46px 8px;
  color: #8a837a;
  font-size: 12px;
  text-align: center;
}

.featured-arrow {
  width: 28px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: #292824;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.featured-arrow:hover,
.featured-arrow:focus-visible {
  color: #1d1d1b;
  background: var(--beige);
}

.featured-arrow:disabled { opacity: .35; cursor: default; }

/* PC 등록 상품: 두 열 아래 전체 폭에서 6~8개를 한 줄로 표시합니다. */
@media (min-width: 901px) {
  .featured-products {
    width: 100%;
    grid-column: 1 / -1;
    padding: 16px 18px 18px;
  }

  .featured-carousel-shell,
  .featured-product-viewport,
  .featured-product-track {
    height: 174px;
  }

  .featured-carousel-shell {
    min-height: 174px;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 10px;
  }

  .featured-product-track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .featured-product-card {
    height: 174px;
    grid-template-rows: 108px 66px;
  }

  .featured-product-card img,
  .featured-product-empty {
    height: 108px;
  }

  .featured-product-card div {
    height: 66px;
    min-height: 66px;
  }

  .featured-arrow {
    width: 32px;
    height: 46px;
  }
}

@media (min-width: 1181px) {
  .featured-product-track {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.support-contact {
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.support-contact h2,
.company-strengths h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.support-contact dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  border-bottom: 1px solid #eee8df;
}

.support-contact dt {
  color: #6c675f;
  font-size: 13px;
  font-weight: 700;
}

.support-contact dt {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: var(--beige-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-contact dd {
  color: #3e3b37;
  font-size: 13px;
  font-weight: 700;
}

.support-contact dd a:hover,
.support-contact dd a:focus-visible {
  color: var(--beige-dark);
}

.support-link {
  width: 175px;
  height: 44px;
  margin: 13px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background: var(--beige-dark);
  font-size: 14px;
  font-weight: 700;
}

.support-link-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-strengths {
  padding-left: 18px;
}

.company-strengths h2 {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 58px;
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: -0.045em;
}

.company-strengths h2 img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.strength-brand-heading > span {
  display: grid;
  gap: 2px;
}

.strength-brand-heading small {
  color: #26231f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.strength-brand-heading strong {
  font-size: 15px;
  line-height: 1.2;
}

.company-strengths li {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5b5752;
  font-size: 14px;
}

.strength-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(173, 141, 103, 0.55);
  border-radius: 50%;
  color: var(--beige-dark);
  background: rgba(203, 185, 157, 0.1);
}

.strength-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-panel {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border-radius: 8px;
}

.solution-card {
  height: 286px;
  position: relative;
  overflow: hidden;
  background: #e8e0d5;
  animation: solution-fade 320ms ease both;
}

@keyframes solution-fade {
  from { opacity: .35; }
  to { opacity: 1; }
}

.solution-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #e8e0d5 0%,
    rgba(232, 224, 213, 0.99) 31%,
    rgba(232, 224, 213, 0.9) 40%,
    rgba(232, 224, 213, 0.38) 53%,
    rgba(232, 224, 213, 0) 67%
  );
  pointer-events: none;
}

.solution-copy {
  width: 50%;
  height: 100%;
  padding: 24px 20px 22px 30px;
  position: relative;
  z-index: 2;
}

.solution-kicker {
  display: none;
}

.solution-copy h2 {
  margin-top: 0;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.solution-copy > p:not(.solution-kicker) {
  margin-top: 9px;
  color: #676158;
  font-size: 13px;
  line-height: 1.55;
}

.solution-features {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.solution-features li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding: 0 5px;
  border-right: 1px solid rgba(115, 105, 91, 0.14);
  color: #655f56;
  font-size: 9px;
  line-height: 1.3;
  text-align: center;
}

.solution-features li:last-child {
  border-right: 0;
}

.solution-feature-icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--beige-dark);
}

.solution-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 74%;
  overflow: hidden;
  background: #7b7164;
}

.solution-image img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  object-position: center;
}

.solution-controls {
  position: absolute;
  z-index: 5;
  bottom: 10px;
  left: 30px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  border-left: 1px solid rgba(92, 82, 69, 0.24);
  border-right: 1px solid rgba(92, 82, 69, 0.24);
}

.solution-controls > button {
  width: 20px;
  height: 28px;
  color: #554d43;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.solution-controls > button:disabled {
  opacity: 0.45;
  cursor: default;
}

.solution-dots {
  display: flex;
  gap: 6px;
}

.solution-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 50%;
  background: #9d9891;
}

.solution-dot.is-active {
  background: var(--beige);
}

.product-preview {
  padding: 0 0 14px;
  border-radius: 8px;
}

.product-preview .section-heading {
  margin: 0 18px;
  padding-block: 8px 7px;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e3ddd4;
  border-radius: 7px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 15px 32px rgba(43, 36, 28, 0.12);
}

.product-card img {
  width: 100%;
  aspect-ratio: 2.2;
  object-fit: cover;
}

.product-card div {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 13px;
}

.product-card strong {
  font-size: 15px;
}

.product-card span {
  margin-top: 3px;
  color: #8a847c;
  font-size: 11px;
}

.modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(8, 8, 7, 0.7);
  backdrop-filter: blur(5px);
}

.modal-backdrop[hidden] {
  display: none;
}

.shop-modal {
  width: min(450px, 100%);
  position: relative;
  padding: 34px 38px 30px;
  border: 1px solid rgba(203, 185, 157, 0.62);
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 9px;
  right: 11px;
  width: 32px;
  height: 32px;
  color: #615b53;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.modal-logo {
  width: 42px;
  height: 52px;
  margin: 0 auto 7px;
  display: block;
  object-fit: contain;
}

.modal-label {
  color: var(--beige-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.shop-modal h2 {
  margin-top: 10px;
  font-size: 22px;
}

.shop-modal > p:not(.modal-label) {
  margin-top: 13px;
  color: #686159;
  font-size: 12px;
  line-height: 1.7;
}

.modal-confirm {
  min-width: 120px;
  height: 40px;
  margin-top: 20px;
  color: #fff;
  background: var(--beige-dark);
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  color: rgba(247, 244, 238, .76);
  background: var(--deep-charcoal);
  font-family: 'Noto Sans KR', sans-serif;
}

.site-footer-inner {
  width: min(1380px, calc(100% - 96px));
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(390px, 1.25fr) minmax(220px, .65fr);
  align-items: start;
  gap: 54px;
}

.footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand-heading img {
  width: 46px;
  height: 55px;
  object-fit: contain;
}

.footer-brand-heading strong,
.footer-brand-heading span {
  display: block;
}

.footer-brand-heading strong {
  color: #f7f4ee;
  font-size: 16px;
  letter-spacing: -.03em;
}

.footer-brand-heading span {
  margin-top: 4px;
  color: rgba(247, 244, 238, .48);
  font-size: 10px;
}

.footer-slogan {
  margin-top: 16px;
  color: rgba(247, 244, 238, .63);
  font-size: 11px;
  line-height: 1.75;
}

.footer-slogan span {
  color: rgba(203, 185, 157, .72);
  font-size: 9px;
}

.footer-contact {
  color: inherit;
  font-style: normal;
  font-size: 11px;
}

.footer-contact dl,
.footer-contact dd { margin: 0; }

.footer-contact dl > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  padding: 3px 0;
}

.footer-contact dt {
  color: var(--beige);
  font-weight: 700;
}

.footer-contact dd {
  color: rgba(247, 244, 238, .68);
  line-height: 1.6;
}

.footer-links {
  display: block;
  font-size: 11px;
}

.footer-links strong {
  display: block;
  margin-bottom: 4px;
  color: var(--beige);
  font-size: 12px;
}

.footer-product-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  white-space: nowrap;
}

.footer-product-links > a {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  line-height: 1.45;
  text-align: center;
}

.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--beige); }
.footer-bottom {
  width: min(1380px, calc(100% - 96px));
  margin: 0 auto;
  padding: 17px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(203, 185, 157, .58);
  font-size: 10px;
  letter-spacing: .08em;
}

.top-button {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 1px solid #1d1d1b;
  border-radius: 0;
  color: #fff;
  background: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(12px, -50%);
  transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.top-button:hover {
  border-color: var(--beige);
  color: #151515;
  background: var(--beige);
}

@media (max-width: 980px) {
  .site-footer-inner {
    width: calc(100% - 48px);
    grid-template-columns: 1fr 1.2fr;
    gap: 34px;
  }

  .footer-links { grid-column: 1 / -1; }
  .footer-bottom { width: calc(100% - 48px); }
}

@media (max-width: 640px) {
  .site-footer-inner {
    width: calc(100% - 36px);
    padding: 32px 0 27px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links { grid-column: auto; }
  .footer-product-links { gap: 14px; justify-content: flex-start; }
  .footer-contact dl > div { grid-template-columns: 72px 1fr; }
  .footer-bottom { width: calc(100% - 36px); }

  .top-button {
    top: auto;
    right: 14px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    transform: translateX(12px);
  }

  .top-button.is-visible {
    transform: translateX(0);
  }
}

:focus-visible {
  outline: 3px solid rgba(203, 185, 157, 0.75);
  outline-offset: 3px;
}
