@charset "UTF-8";

:root {
  --navy-950: #0b2738;
  --navy-900: #123a56;
  --navy-800: #194e70;
  --blue-600: #2f7cae;
  --blue-100: #dcecf5;
  --blue-50: #edf6fa;
  --ink: #16242c;
  --ink-soft: #53616a;
  --line: #d9dfe0;
  --paper: #fffefa;
  --sand: #f5f1e8;
  --yellow: #f2cf63;
  --yellow-soft: #fff4c9;
  --white: #ffffff;
  --danger: #a83d2d;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 30px rgba(15, 43, 57, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 43, 57, 0.18);
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Pretendard Variable", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
blockquote,
figure,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 800;
}

em {
  color: var(--blue-600);
  font-style: normal;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #e4aa20;
  outline-offset: 3px;
}

.utility-bar {
  color: #dce9ef;
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(12, 39, 55, 0.1);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 10px 34px rgba(11, 39, 56, 0.09);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 76px;
  height: 46px;
  flex: none;
  object-fit: contain;
  background: var(--white);
  border-radius: 9px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  background: var(--blue-100);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  position: absolute;
  content: "";
  border: 2px solid var(--navy-900);
  border-radius: 50%;
}

.brand-mark::before {
  width: 25px;
  height: 25px;
  left: 2px;
  top: 10px;
}

.brand-mark::after {
  width: 20px;
  height: 20px;
  right: -2px;
  top: 15px;
  background: var(--yellow);
}

.brand-mark i:first-child {
  width: 48px;
  height: 16px;
  left: -5px;
  top: -9px;
  border-radius: 0;
  transform: rotate(-14deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: #6f7d84;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 30px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
  color: #48575f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--navy-900);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.18;
}

.header-phone small {
  color: #75828a;
  font-size: 10px;
  font-weight: 700;
}

.header-phone strong {
  color: var(--navy-900);
  font-size: 15px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--navy-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.contact-icon-phone {
  -webkit-mask-image: url("images/icons/telephone-fill.svg");
  mask-image: url("images/icons/telephone-fill.svg");
}

.contact-icon-kakao {
  -webkit-mask-image: url("images/icons/chat-fill.svg");
  mask-image: url("images/icons/chat-fill.svg");
}

.contact-icon-daangn {
  -webkit-mask-image: url("images/icons/house-heart-fill.svg");
  mask-image: url("images/icons/house-heart-fill.svg");
}

.button .contact-icon {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 22px rgba(18, 58, 86, 0.2);
}

.button-primary:hover {
  background: var(--navy-950);
  box-shadow: 0 14px 30px rgba(18, 58, 86, 0.25);
}

.button-kakao {
  color: #332b13;
  background: var(--yellow);
}

.button-outline {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(18, 58, 86, 0.3);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background:
    linear-gradient(rgba(47, 124, 174, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 124, 174, 0.045) 1px, transparent 1px),
    var(--sand);
  background-size: 38px 38px;
}

.home-hero::before {
  position: absolute;
  width: 540px;
  height: 540px;
  right: -160px;
  top: -220px;
  content: "";
  background: var(--blue-100);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.hero-copy {
  padding-bottom: 76px;
}

.hero-copy h1 {
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.hero-description {
  max-width: 590px;
  margin-bottom: 30px;
  color: #46555e;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.8;
}

/* 관리자에서 입력한 장문은 엔터 위치를 모든 화면에서 그대로 유지합니다. */
.hero-description,
.about-story-grid > div > p:not(.eyebrow),
.product-content > div,
.product-detail-copy > p:not(.eyebrow),
.product-dialog-copy > p:not(.eyebrow),
.review-card blockquote,
.review-dialog blockquote,
.faq-item > div p,
.process-card p,
.contact-cta-inner > div:first-child > h2,
.contact-cta-inner > div:first-child > p:not(.eyebrow) {
  white-space: pre-line;
}

.hero-actions .button {
  min-width: 170px;
}

.hero-note {
  margin: 20px 0 0;
  color: #66747c;
  font-size: 13px;
  font-weight: 700;
}

.hero-note span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  color: var(--navy-900);
  background: var(--blue-100);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.hero-image-main {
  position: absolute;
  inset: 0 0 22px 52px;
  overflow: hidden;
  border-radius: 200px 200px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.hero-image-main::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(11, 39, 56, 0.2));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .7s ease, transform 5.5s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 63%;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  width: 126px;
  height: 126px;
  right: -34px;
  top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: var(--yellow);
  border: 1px solid rgba(11, 39, 56, 0.18);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transform: rotate(7deg);
}

.hero-stamp strong {
  font-size: 26px;
  line-height: 1;
}

.hero-stamp span {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--navy-900);
  border-radius: 18px 18px 0 0;
}

.proof-strip > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.proof-strip strong em {
  color: var(--yellow);
  font-size: 16px;
}

.proof-strip span {
  margin-top: 8px;
  color: #b8ccd7;
  font-size: 12px;
  font-weight: 700;
}

.event-ribbon {
  color: var(--navy-950);
  background: var(--yellow);
}

.event-ribbon-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.event-ribbon-inner > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.event-ribbon-inner div > span {
  padding: 6px 11px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.event-ribbon-inner strong {
  font-size: 15px;
}

.event-ribbon-inner > a {
  flex: none;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 110px 0;
}

.section-tint {
  background: var(--blue-50);
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-story h2,
.service-area h2,
.compare-grid h2,
.prep-grid h2 {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.section-heading > div > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .section-heading h2,
.section-dark .section-heading > div > p:last-child {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid-all {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 39, 56, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(11, 39, 56, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.product-card-link {
  height: 100%;
  display: block;
}

.product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8e3e7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image picture,
.hero-image-main picture,
.gallery-card picture {
  width: 100%;
  height: 100%;
  display: block;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-content {
  padding: 22px 20px 24px;
}

.product-content > p {
  margin-bottom: 7px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-content h3 {
  margin-bottom: 9px;
  color: var(--navy-950);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.product-content > div {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.product-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 900;
}

.product-more i {
  font-style: normal;
  transition: transform 0.2s ease;
}

.product-card:hover .product-more i {
  transform: translateX(4px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 238px;
  padding: 30px 28px;
  background: var(--white);
  border-top: 4px solid var(--navy-900);
  border-right: 1px solid var(--line);
}

.process-card:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.process-card:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.process-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.gallery-preview .gallery-card:first-child {
  grid-row: 1 / 3;
}

.gallery-preview .gallery-card:nth-child(2) {
  grid-column: 2 / 4;
}

.gallery-card {
  min-width: 0;
  margin: 0;
}

.gallery-card button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #d8e3e7;
  border: 0;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card button:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-number {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(11, 39, 56, 0.78);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.gallery-card figcaption {
  padding: 10px 2px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.gallery-preview figcaption {
  display: none;
}

.review-section {
  color: var(--white);
  background: var(--navy-950);
}

.review-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.review-summary > div > span {
  display: block;
  color: #9fb7c4;
  font-size: 12px;
  font-weight: 800;
}

.review-summary > div > strong {
  margin-right: 16px;
  font-size: clamp(56px, 7vw, 86px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.review-summary > div > div {
  display: inline-block;
  color: var(--yellow);
  letter-spacing: 0.12em;
}

.review-summary > p {
  max-width: 560px;
  margin: 0;
  color: #d0dce2;
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.review-preview,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.review-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(11, 39, 56, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(11, 39, 56, 0.04);
}

.review-section .review-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.review-stars {
  margin-bottom: 19px;
  color: #e7ad19;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.review-stars b {
  margin-left: 5px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}

.review-card blockquote {
  margin-bottom: 26px;
  color: #34444d;
  font-size: 15px;
  line-height: 1.8;
}

.js .review-card blockquote {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-read-more {
  display: none;
}

.js .review-read-more {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: -10px 0 22px;
  padding: 6px 0;
  color: var(--blue-600);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 850;
}

.review-read-more:hover {
  color: var(--navy-950);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-photo {
  height: 180px;
  overflow: hidden;
  margin: -28px -28px 22px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #e4eaed;
}

.review-photo picture,
.review-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.review-photo img {
  object-fit: cover;
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  color: #89949a;
  font-size: 11px;
}

.review-card footer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.review-card footer > .review-card-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  text-align: right;
}

.review-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #d95f0b;
  font-size: 10px;
  font-weight: 850;
}

.review-card-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-dialog {
  width: min(calc(100% - 36px), 680px);
  max-width: none;
  max-height: min(88dvh, 760px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(4, 17, 25, 0.4);
}

.review-dialog::backdrop {
  background: rgba(4, 17, 25, 0.78);
  backdrop-filter: blur(8px);
}

.review-dialog-close {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 16px;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(11, 39, 56, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.dialog-side-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(11, 39, 56, .78);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(4, 17, 25, .26);
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.dialog-side-nav:hover {
  background: var(--navy-900);
  transform: translateY(-50%) scale(1.06);
}

.dialog-side-nav span {
  margin-top: -4px;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.dialog-side-prev { left: 12px; }
.dialog-side-next { right: 12px; }

.review-dialog-inner {
  max-height: min(88dvh, 760px);
  padding: 46px 72px 32px;
  overflow-y: auto;
}

.review-dialog-inner > .eyebrow {
  margin-bottom: 8px;
  color: #df640d;
}

.review-dialog-stars {
  margin-bottom: 24px;
  color: #e7ad19;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .08em;
}

.review-dialog-stars b {
  margin-left: 7px;
  color: var(--navy-950);
  font-size: 13px;
  letter-spacing: 0;
}

.review-dialog blockquote {
  margin: 0;
  color: #263943;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 650;
  line-height: 1.9;
  letter-spacing: -.02em;
  white-space: pre-line;
}

.review-dialog-author {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-dialog-author > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.review-dialog-author strong {
  color: var(--navy-950);
  font-size: 14px;
}

.review-dialog-author div > span {
  padding: 3px 8px;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.review-dialog-author small {
  width: 100%;
  color: #8a979d;
  font-size: 10px;
}

.review-dialog-author > a {
  flex: 0 0 auto;
  color: #d95f0b;
  font-size: 11px;
  font-weight: 850;
}

.review-dialog-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-dialog-nav > span {
  color: #839097;
  font-size: 10px;
  font-weight: 800;
}

.review-card footer strong {
  color: var(--navy-950);
  font-size: 13px;
}

.review-card footer small {
  width: 100%;
}

.review-badge {
  padding: 2px 7px;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.review-more {
  margin-top: 30px;
  color: var(--yellow);
}

.service-area {
  background: var(--sand);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.9fr;
  align-items: center;
  gap: clamp(24px, 3.2vw, 46px);
}

.service-area-grid > div:first-child > p:not(.eyebrow),
.area-section-grid > div:first-child > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--ink-soft);
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.area-cloud span {
  padding: 8px 14px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid rgba(18, 58, 86, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.service-area-map {
  min-width: 0;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(18, 58, 86, .1);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11, 39, 56, .1);
}

.service-map-canvas {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 22%, rgba(47, 124, 174, .14), transparent 34%),
    linear-gradient(145deg, #edf6fa, #f9f5ea);
  border-radius: 20px;
}

.service-map-canvas > img {
  position: absolute;
  width: 78%;
  height: auto;
  left: -8%;
  top: 22px;
  opacity: .66;
  filter: saturate(.5) contrast(.95);
}

.service-map-focus {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  left: 25%;
  top: 29%;
  display: grid;
  place-items: center;
  background: rgba(242, 207, 99, .34);
  border: 2px solid #e3aa18;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(242, 207, 99, .17);
}

.service-map-focus::after {
  position: absolute;
  left: 22px;
  top: -9px;
  padding: 4px 8px;
  content: "출장권역";
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.service-map-focus i {
  width: 8px;
  height: 8px;
  background: var(--navy-900);
  border-radius: 50%;
}

.service-map-zoom {
  position: absolute;
  z-index: 3;
  width: min(76%, 252px);
  right: 10px;
  bottom: 12px;
  padding: 14px 14px 11px;
  background: rgba(255, 254, 250, .96);
  border: 1px solid rgba(18, 58, 86, .13);
  border-radius: 18px;
  box-shadow: 0 15px 36px rgba(11, 39, 56, .17);
  backdrop-filter: blur(10px);
}

.service-map-zoom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.service-map-zoom-head strong {
  color: var(--navy-950);
  font-size: 11px;
}

.service-map-zoom-head span {
  color: var(--blue-600);
  font-size: 7px;
  font-weight: 850;
}

.service-map-plot {
  position: relative;
  height: 168px;
  background:
    linear-gradient(rgba(47, 124, 174, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 124, 174, .07) 1px, transparent 1px),
    #f8fbfc;
  background-size: 24px 24px;
  border: 1px solid rgba(18, 58, 86, .08);
  border-radius: 13px;
}

.service-map-plot::before {
  position: absolute;
  width: 86%;
  height: 78%;
  left: 7%;
  top: 10%;
  content: "";
  background: rgba(47, 124, 174, .07);
  border: 1px dashed rgba(47, 124, 174, .22);
  border-radius: 45% 38% 43% 35%;
  transform: rotate(-7deg);
}

.service-map-pin {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
}

.service-map-pin i {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 0;
  background: var(--blue-600);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(11, 39, 56, .28);
  transform: translate(-50%, -50%);
}

.service-map-pin b {
  position: absolute;
  left: 0;
  top: 0;
  padding: 3px 6px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(18, 58, 86, .11);
  border-radius: 999px;
  box-shadow: 0 3px 9px rgba(11, 39, 56, .08);
  font-size: 8px;
  line-height: 1;
  white-space: nowrap;
  transform: translate(7px, -50%);
}

.service-map-pin.pin-label-left b { transform: translate(calc(-100% - 7px), -50%); }
.service-map-pin.pin-label-top b { transform: translate(-50%, -27px); }
.service-map-pin.pin-label-bottom b { transform: translate(-50%, 8px); }

.service-map-pin.is-home i {
  width: 12px;
  height: 12px;
  background: #e3aa18;
}

.service-map-pin.is-home b {
  color: var(--navy-950);
  background: var(--yellow);
  border-color: #e3aa18;
  font-weight: 900;
}

.service-area-map figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 5px 0;
}

.service-area-map figcaption strong {
  color: var(--navy-950);
  font-size: 10px;
}

.service-area-map figcaption span {
  color: var(--ink-soft);
  font-size: 8px;
}

.service-area-map > small {
  display: block;
  padding: 4px 5px 0;
  color: #95a0a5;
  font-size: 7px;
}

.service-area-map > small a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-area-card {
  padding: 42px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-area-card > span {
  color: #a9c2cf;
  font-size: 12px;
  font-weight: 800;
}

.service-area-card h3 {
  margin: 8px 0 26px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.service-area-card ol {
  padding: 0;
  margin-bottom: 30px;
  list-style: none;
  counter-reset: item;
}

.service-area-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #dfebf0;
  font-size: 14px;
  counter-increment: item;
}

.service-area-card li::before {
  margin-right: 12px;
  color: var(--yellow);
  content: "0" counter(item);
  font-size: 10px;
  font-weight: 900;
}

.service-area-card .button-primary {
  width: 100%;
  color: var(--navy-950);
  background: var(--yellow);
}

.contact-cta {
  padding: 84px 0;
  background: var(--yellow);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.contact-cta .eyebrow {
  color: var(--navy-900);
}

.contact-cta h2 {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.contact-cta p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: #584f32;
}

.contact-cta-actions .button-kakao {
  background: var(--white);
}

.contact-cta-inner > div:last-child > small {
  display: block;
  margin-top: 14px;
  color: #695e3d;
  font-size: 11px;
}

.page-intro {
  position: relative;
  overflow: hidden;
  padding: 76px 0 90px;
  background:
    radial-gradient(circle at 85% 12%, var(--blue-100) 0 16%, transparent 16.2%),
    linear-gradient(rgba(47, 124, 174, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 124, 174, 0.045) 1px, transparent 1px),
    var(--sand);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.page-intro .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 46px;
  color: #7b878d;
  font-size: 11px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-600);
}

.page-intro h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--navy-950);
  font-size: clamp(43px, 6.8vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.065em;
}

.page-intro > .container > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-story figure {
  margin: 0;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(18, 58, 86, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.about-story figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.product-detail figure {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-detail figure picture,
.product-detail figure img {
  width: 100%;
  height: 100%;
  display: block;
}

.product-detail figure img {
  min-height: 560px;
  object-fit: cover;
}

.product-detail-copy h2 {
  margin-bottom: 9px;
  color: var(--navy-950);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.product-detail-copy > strong {
  display: block;
  margin-bottom: 22px;
  color: var(--blue-600);
  font-size: 17px;
}

.product-detail-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.detail-checks {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.detail-checks span {
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  color: #42535c;
  font-size: 13px;
  font-weight: 750;
}

.detail-checks span::before {
  margin-right: 9px;
  color: var(--blue-600);
  content: "✓";
  font-weight: 900;
}

.product-detail-actions {
  margin-top: 28px;
}

.product-detail-copy > small {
  display: block;
  margin-top: 13px;
  color: #839097;
  font-size: 11px;
}

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

.empty-state {
  padding: 65px 24px;
  text-align: center;
}

.about-story-grid > div > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.about-story .proof-strip {
  margin-top: 34px;
  border-radius: var(--radius-md);
}

.about-story .proof-strip > div {
  min-height: 95px;
}

.about-story .proof-strip strong {
  font-size: 21px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-values {
  padding: 76px 0;
}

.about-values .section-heading {
  margin-bottom: 32px;
}

.value-grid article {
  min-height: 218px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.value-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.value-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.value-grid p {
  margin: 0;
  color: #b8cbd4;
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.choice-guide {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr auto;
  align-items: center;
  gap: 26px;
  padding: 25px 30px;
  background: var(--yellow-soft);
  border: 1px solid rgba(127, 100, 20, 0.15);
  border-radius: var(--radius-md);
}

.choice-guide strong {
  color: var(--navy-950);
}

.choice-guide p {
  margin: 0;
  color: #655d43;
  font-size: 13px;
}

.choice-guide a {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.compare-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.compare-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-grid li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid #cfdfe6;
}

.compare-grid li strong {
  color: var(--navy-900);
}

.compare-grid li span {
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  /* 사진이 몇 장이든 알아서 칸을 채운다 (한 칸 최소 300px) */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  align-items: start;
  gap: 26px 18px;
}

/* 사진 아래 설명이 다음 줄 사진에 가리지 않도록 카드를 세로로 흐르게 둔다 */
.gallery-grid .gallery-card {
  display: flex;
  flex-direction: column;
}

.gallery-grid .gallery-card button {
  height: auto;
  aspect-ratio: 4 / 3;
}

.gallery-note,
.source-note {
  margin: 30px 0 0;
  color: #7f8b91;
  font-size: 12px;
  text-align: center;
}

.review-hero-stat {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px 38px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
}

.review-hero-stat > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-hero-stat span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.review-hero-stat strong {
  color: var(--navy-950);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.review-hero-stat > div:first-child > div {
  color: #e3aa18;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.review-grid {
  align-items: stretch;
}

.review-grid .review-card {
  min-height: 320px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: clamp(40px, 7vw, 100px);
}

.faq-layout aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.faq-layout aside span {
  color: #b1c6d1;
  font-size: 12px;
}

.faq-layout aside strong {
  margin: 10px 0 22px;
  font-size: 23px;
}

.faq-layout aside a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-item summary b {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 12px;
}

.faq-item summary i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--navy-900);
  transition: transform 0.2s ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item > div {
  padding: 0 50px 28px;
}

.faq-item > div p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-method-section {
  padding: 76px 0;
}

.contact-method {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  background: var(--blue-50);
  border: 1px solid rgba(18, 58, 86, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.contact-method-phone {
  color: var(--white);
  background: var(--navy-900);
}

.contact-method-kakao {
  background: var(--yellow);
}

.contact-method > span {
  margin-bottom: 7px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 900;
}

.contact-method-phone > span,
.contact-method-phone p {
  color: #bad0db;
}

.contact-method h2 {
  margin-bottom: 30px;
  font-size: 21px;
}

.contact-method strong {
  margin-top: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.contact-method p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-method i {
  position: absolute;
  right: 28px;
  bottom: 25px;
  font-size: 22px;
  font-style: normal;
}

.area-section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.area-cloud-large {
  gap: 11px;
  margin: 0;
}

.area-cloud-large span {
  padding: 12px 19px;
  font-size: 14px;
}

.prep-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.prep-grid ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.prep-grid li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.prep-grid li > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
}

.prep-grid li strong {
  color: var(--navy-950);
  font-size: 17px;
}

.prep-grid li p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-final {
  padding: 110px 0;
  color: var(--white);
  background: var(--navy-950);
  text-align: center;
}

.contact-final .container > p {
  margin-bottom: 13px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-final h2 {
  margin-bottom: 34px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.contact-final-actions {
  justify-content: center;
}

.contact-final-actions .button-primary {
  color: var(--navy-950);
  background: var(--white);
}

.lightbox {
  width: min(94vw, 980px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(4, 17, 25, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(4, 17, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(4, 17, 25, 0.3);
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.lightbox-nav:hover {
  background: rgba(18, 58, 86, 0.94);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-nav span {
  margin-top: -3px;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 4px 0;
  color: var(--white);
}

.lightbox-caption p {
  margin: 0;
  font-size: 12px;
  font-weight: 750;
}

.lightbox-caption span {
  flex: 0 0 auto;
  color: #b9c8d0;
  font-size: 11px;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -44px;
  right: 0;
  min-height: 38px;
  padding: 7px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
}

.product-dialog {
  width: min(calc(100% - 40px), 980px);
  max-width: none;
  max-height: min(88vh, 760px);
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  border-radius: 26px;
  box-shadow: 0 34px 100px rgba(4, 17, 25, 0.38);
}

.product-dialog::backdrop {
  background: rgba(4, 17, 25, 0.78);
  backdrop-filter: blur(8px);
}

.product-dialog-close {
  position: absolute;
  z-index: 3;
  right: 16px;
  top: 16px;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(11, 39, 56, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  min-height: 610px;
}

.product-dialog-image {
  min-height: 610px;
  background: var(--blue-50);
}

.product-dialog-image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.product-dialog-copy {
  align-self: center;
  padding: 58px 52px 48px;
}

.product-dialog-copy h2 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.product-dialog-copy > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 15px;
}

.product-dialog-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.product-dialog-copy > small {
  display: block;
  margin-top: 12px;
  color: #849198;
  font-size: 10px;
}

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

.product-dialog-actions .button {
  min-width: 0;
  padding-inline: 13px;
  font-size: 12px;
}

.product-dialog-counter {
  position: absolute;
  z-index: 4;
  right: 58px;
  bottom: 16px;
  padding: 5px 9px;
  color: #75858d;
  background: rgba(255, 254, 250, .9);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
}

.floating-contact {
  position: fixed;
  z-index: 420;
  right: 22px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-contact a {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(11, 39, 56, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 38px rgba(11, 39, 56, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.floating-contact a:active {
  transform: translateY(-1px) scale(0.97);
}

.floating-contact .contact-icon {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  transition: transform 0.2s ease;
}

.floating-contact a:hover .contact-icon {
  transform: scale(1.08);
}

.floating-contact a > b {
  position: absolute;
  right: 72px;
  top: 50%;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(11, 39, 56, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(11, 39, 56, 0.2);
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-contact a:hover > b,
.floating-contact a:focus-visible > b {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-call { color: var(--white); background: var(--navy-900); }
.floating-kakao { color: #2f2913; background: #fee500; }
.floating-daangn { color: var(--white); background: #ff6f0f; }

.site-footer {
  padding: 76px 0 26px;
  color: #b8c8d0;
  background: #071d2a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand > strong {
  color: var(--white);
  font-size: 22px;
}

.footer-brand > img {
  width: 130px;
  height: 75px;
  margin-bottom: 18px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
}

.footer-brand p {
  max-width: 390px;
  margin: 16px 0 0;
  color: #8da2ad;
  font-size: 13px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #6f8996;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 20px;
}

.site-footer nav a {
  font-size: 12px;
}

.footer-contact > a {
  color: var(--white);
  font-size: 23px;
  font-weight: 800;
}

.footer-contact p {
  margin: 7px 0 0;
  color: #7e959f;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6f8792;
  font-size: 11px;
}

.mobile-action-bar {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-phone {
    display: none;
  }

  .hero-stamp {
    right: -10px;
  }

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

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

@media (max-width: 920px) {
  .utility-bar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    border-top: 1px solid transparent;
    box-shadow: 0 22px 40px rgba(11, 39, 56, 0.12);
    transition: max-height 0.35s ease, visibility 0.35s ease, border-color 0.35s ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    visibility: visible;
    border-color: var(--line);
  }

  .mobile-menu-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .mobile-menu-inner > a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-menu-inner > a.is-active {
    color: var(--blue-600);
  }

  .mobile-menu-contact {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 17px 20px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: var(--radius-sm);
  }

  .mobile-menu-contact span {
    font-size: 12px;
  }

  .mobile-menu-contact a {
    font-weight: 900;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: 53px;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-image-main {
    left: 26px;
  }

  .hero-stamp {
    width: 104px;
    height: 104px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border-radius: var(--radius-md);
  }

  .process-card,
  .process-card:first-child,
  .process-card:last-child {
    border: 0;
    border-top: 4px solid var(--navy-900);
    border-radius: 0;
  }

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

  .contact-method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-method:last-child {
    grid-column: 1 / -1;
    min-height: 200px;
  }

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

  .choice-guide {
    grid-template-columns: 1fr auto;
  }

  .choice-guide p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about-story-grid,
  .product-detail-grid,
  .service-area-grid,
  .contact-cta-inner,
  .area-section-grid,
  .prep-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service-area-map {
    width: min(100%, 620px);
    justify-self: center;
  }

  .about-story figure {
    max-width: 600px;
  }

  .about-story figure img {
    height: auto;
  }

  .product-detail figure,
  .product-detail figure img {
    min-height: 480px;
  }

  .contact-cta-inner {
    gap: 30px;
  }

  .faq-layout {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --radius-md: 16px;
    --radius-lg: 24px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-logo {
    width: 64px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu-inner {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .mobile-menu-inner > a {
    padding: 14px 2px;
  }

  .mobile-menu-contact {
    grid-column: auto;
    align-items: center;
  }

  .mobile-menu-contact span {
    max-width: 120px;
  }

  .home-hero {
    padding-top: 40px;
  }

  .home-hero::before {
    width: 340px;
    height: 340px;
    right: -170px;
    top: 170px;
  }

  .hero-grid {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-description {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-note {
    font-size: 11px;
  }

  .hero-visual {
    height: 420px;
    margin: 0 -18px;
  }

  .hero-image-main {
    inset: 0 19px;
    border-radius: 150px 150px 18px 18px;
  }

  .hero-stamp {
    width: 94px;
    height: 94px;
    right: 17px;
    top: 35px;
  }

  .hero-stamp strong {
    font-size: 21px;
  }

  .hero-stamp span {
    font-size: 9px;
  }

  .home-hero > .container:last-child {
    width: 100%;
    margin-top: 38px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }

  .proof-strip > div {
    min-height: 88px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .proof-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-strip strong {
    font-size: 22px;
  }

  .proof-strip span {
    margin-top: 5px;
    font-size: 10px;
  }

  .event-ribbon-inner {
    min-height: 0;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .event-ribbon-inner > div {
    align-items: flex-start;
    gap: 11px;
  }

  .event-ribbon-inner strong {
    font-size: 13px;
    line-height: 1.55;
  }

  .event-ribbon-inner > a {
    display: inline-block;
    margin: 10px 0 0 86px;
    font-size: 11px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .about-story h2,
  .service-area h2,
  .compare-grid h2,
  .prep-grid h2 {
    font-size: 30px;
  }

  .section-heading > div > p:last-child {
    font-size: 14px;
  }

  .section-heading > .text-link {
    margin-top: 16px;
  }

  .product-grid,
  .product-grid-all {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    display: block;
    min-height: 190px;
  }

  .product-card-link {
    display: grid;
    grid-template-columns: 40% 60%;
  }

  .product-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-content {
    align-self: center;
    padding: 20px 18px;
  }

  .product-content h3 {
    font-size: 17px;
  }

  .product-content > div {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 12px;
  }

  .product-more {
    margin-top: 11px;
  }

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

  .process-card {
    min-height: 0;
    padding: 24px;
    border-top-width: 3px;
  }

  .process-card > span {
    margin-bottom: 22px;
  }

  .gallery-preview {
    width: calc(100% + 18px);
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding: 0 18px 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-preview::-webkit-scrollbar,
  .review-preview::-webkit-scrollbar {
    display: none;
  }

  .gallery-preview .gallery-card {
    width: 82vw;
    height: 390px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .review-summary {
    display: block;
    padding-bottom: 32px;
  }

  .review-summary > div > strong {
    font-size: 58px;
  }

  .review-summary > p {
    margin-top: 20px;
    font-size: 19px;
  }

  .review-preview {
    width: calc(100% + 18px);
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding-right: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-preview .review-card {
    width: 84vw;
    min-height: 280px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .service-area-card {
    padding: 30px 24px;
  }

  .service-area-map {
    padding: 10px;
    border-radius: 22px;
  }

  .service-map-canvas {
    min-height: 400px;
  }

  .service-map-zoom {
    width: min(78%, 252px);
  }

  .service-area-map figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact-cta {
    padding: 64px 0;
  }

  .contact-cta h2 {
    font-size: 30px;
  }

  .contact-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-intro {
    padding: 42px 0 58px;
    background-size: auto, 32px 32px, 32px 32px, auto;
  }

  .breadcrumb {
    margin-bottom: 36px;
  }

  .page-intro h1 {
    font-size: clamp(39px, 12vw, 53px);
  }

  .page-intro > .container > p:last-child {
    font-size: 14px;
  }

  .about-story-grid {
    gap: 34px;
  }

  .about-story figure {
    padding: 12px;
    border-radius: 18px;
  }

  .about-story .proof-strip {
    border-radius: var(--radius-md);
  }

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

  .value-grid article {
    min-height: 0;
    padding: 25px 24px;
  }

  .value-grid article > span {
    margin-bottom: 22px;
  }

  .choice-guide {
    display: block;
    padding: 23px 20px;
  }

  .choice-guide p {
    margin: 9px 0 14px;
  }

  .product-grid-all {
    margin-top: 18px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .compare-grid li {
    grid-template-columns: 105px 1fr;
    gap: 15px;
    padding: 17px 0;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-grid .gallery-card button {
    aspect-ratio: 4 / 3;
  }

  .review-hero-stat {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .review-hero-stat > div {
    display: block;
  }

  .review-hero-stat > div > span {
    display: block;
  }

  .review-hero-stat .button {
    grid-column: 1 / -1;
  }

  .review-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .review-grid .review-card {
    min-height: 280px;
  }

  .review-card {
    padding: 24px 22px;
  }

  .review-photo {
    margin: -24px -22px 20px;
  }

  .product-detail-grid {
    gap: 34px;
  }

  .product-detail figure,
  .product-detail figure img {
    min-height: 420px;
  }

  .product-detail-copy h2 {
    font-size: 34px;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-layout aside {
    position: static;
  }

  .faq-item summary {
    min-height: 78px;
    gap: 12px;
    font-size: 15px;
  }

  .faq-item summary span {
    gap: 10px;
  }

  .faq-item > div {
    padding: 0 8px 24px 40px;
  }

  .faq-item > div p {
    font-size: 14px;
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .contact-method,
  .contact-method:last-child {
    min-height: 180px;
    grid-column: auto;
    padding: 24px;
  }

  .contact-method strong {
    margin-top: 0;
  }

  .area-cloud-large span {
    padding: 9px 14px;
    font-size: 12px;
  }

  .prep-grid {
    gap: 18px;
  }

  .prep-grid li {
    grid-template-columns: 36px 1fr;
    gap: 13px;
  }

  .contact-final {
    padding: 78px 0;
  }

  .contact-final h2 {
    font-size: 38px;
  }

  .contact-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 500;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(74px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 254, 250, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(11, 39, 56, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    min-width: 0;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.15s ease, filter 0.15s ease;
  }

  .mobile-action-bar a:active {
    transform: scale(0.96);
    filter: brightness(0.96);
  }

  .mobile-action-bar .mobile-action-kakao {
    color: #2f2913;
    background: #fee500;
  }

  .mobile-action-bar .mobile-action-daangn {
    color: var(--white);
    background: #ff6f0f;
  }

  .mobile-action-bar .contact-icon {
    width: 21px;
    height: 21px;
  }

  .mobile-action-bar .mobile-action-label {
    overflow: hidden;
    max-width: 100%;
    font-size: 11px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .floating-contact {
    display: none;
  }

  .review-dialog {
    width: 100%;
    max-height: 92dvh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .review-dialog-inner {
    max-height: 92dvh;
    padding: 40px 52px calc(24px + env(safe-area-inset-bottom));
  }

  .review-dialog blockquote {
    font-size: 16px;
    line-height: 1.85;
  }

  .review-dialog-author {
    display: block;
  }

  .review-dialog-author > a {
    display: inline-block;
    margin-top: 13px;
  }

  .review-dialog-nav {
    justify-content: center;
  }

  .review-dialog .dialog-side-nav,
  .product-dialog .dialog-side-nav {
    width: 38px;
    height: 38px;
  }

  .review-dialog .dialog-side-nav span,
  .product-dialog .dialog-side-nav span {
    font-size: 31px;
  }

  .review-dialog .dialog-side-prev,
  .product-dialog .dialog-side-prev { left: 7px; }

  .review-dialog .dialog-side-next,
  .product-dialog .dialog-side-next { right: 7px; }

  .lightbox {
    width: calc(100% - 16px);
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-caption {
    padding-inline: 4px;
  }

  .product-dialog {
    width: 100%;
    max-height: 92dvh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .product-dialog-grid {
    display: block;
    min-height: 0;
    max-height: 92dvh;
    overflow-y: auto;
  }

  .product-dialog-image,
  .product-dialog-image img {
    min-height: 0;
    height: 300px;
  }

  .product-dialog-copy {
    padding: 30px 52px calc(46px + env(safe-area-inset-bottom));
  }

  .product-dialog-copy h2 {
    padding-right: 54px;
    font-size: 30px;
  }

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

  .product-dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    margin-top: 0;
  }

  .product-dialog-counter {
    right: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(50%);
  }

  .site-footer {
    padding-bottom: 24px;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 380px;
  }

  .event-ribbon-inner > a {
    margin-left: 0;
  }

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

  .product-card-link {
    grid-template-columns: 38% 62%;
  }

  .product-content {
    padding: 16px 14px;
  }

  .product-content > p {
    font-size: 10px;
  }

  .product-content h3 {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
