:root {
  --cream: #f8f4ed;
  --paper: #fffdf8;
  --paper-2: #f0e9de;
  --ink: #282a25;
  --ink-soft: #65675f;
  --olive: #64705c;
  --olive-deep: #3d493a;
  --olive-pale: #dfe4d7;
  --rose: #d5a7a2;
  --rose-pale: #f1ddda;
  --gold: #b59a67;
  --line: rgba(40, 42, 37, .14);
  --white-line: rgba(255, 255, 255, .2);
  --serif: "Gowun Batang", "AppleMyungjo", "Batang", Georgia, serif;
  --sans: "Montserrat", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --shell: 1240px;
  --header: 92px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: .7rem 1rem;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(248, 244, 237, .88);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s, border-color .25s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(45, 42, 35, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header);
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 120px;
  min-height: 0;
  flex: 0 0 120px;
  margin-right: auto;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: .25rem;
}

.desktop-nav a {
  padding: .65rem .85rem;
  border-radius: 999px;
  color: #4f514b;
  font-size: .78rem;
  font-weight: 600;
  transition: color .2s, background .2s;
}

.desktop-nav a:hover {
  background: rgba(100, 112, 92, .1);
  color: var(--olive-deep);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.55rem;
  border: 1px solid var(--olive-deep);
  border-radius: 2px;
  background: var(--olive-deep);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}

.button:hover {
  background: #2f392e;
  box-shadow: 0 16px 30px -18px rgba(38, 47, 36, .85);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: .65rem 1.1rem;
  font-size: .72rem;
}

.button-pale {
  border-color: rgba(255, 255, 255, .7);
  background: transparent;
}

.button-pale:hover {
  background: #fff;
  color: var(--olive-deep);
}

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

.hero {
  position: relative;
  min-height: 810px;
  padding-top: var(--header);
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: var(--header) 0 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(213, 167, 162, .27), transparent 35%),
    radial-gradient(circle at 88% 24%, rgba(188, 199, 176, .36), transparent 34%),
    linear-gradient(145deg, #fbf8f3 0%, #f4eee4 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 730px;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6.5rem);
  padding-block: 5rem 6.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
  color: var(--olive);
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.2vw, 5.85rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: 1.12;
}

.hero h1 em {
  color: var(--olive);
  font-style: normal;
  white-space: nowrap;
}

.hero-lead {
  max-width: 34rem;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 1px solid var(--ink);
  padding: .25rem 0;
  font-size: .76rem;
  font-weight: 600;
  transition: color .2s, border-color .2s;
}

.text-link span {
  font-size: 1rem;
}

.text-link:hover {
  border-color: var(--rose);
  color: #9f6661;
}

.hero-points {
  display: grid;
  max-width: 31rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.hero-points li {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .83rem;
  line-height: 1.45;
}

.hero-points span {
  display: block;
  margin-bottom: .35rem;
  color: var(--rose);
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .15em;
}

.hero-media {
  position: relative;
  min-height: 575px;
}

.hero-media.hero-media-single {
  min-height: 0;
  align-self: center;
}

.hero-single-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 32px 32px 4px 4px;
  background: #f2eee6;
  box-shadow: 0 30px 70px -42px rgba(42, 43, 37, .48);
}

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

.hero-main-photo {
  position: absolute;
  inset: 0 3.5rem 2.5rem 0;
  overflow: hidden;
  border-radius: 48% 48% 2px 2px / 23% 23% 2px 2px;
  box-shadow: 0 30px 70px -42px rgba(42, 43, 37, .48);
}

.hero-main-photo img,
.hero-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo img {
  object-position: 49% center;
}

.hero-detail-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 37%;
  aspect-ratio: .9;
  overflow: hidden;
  border: 10px solid var(--cream);
  background: #fff;
  box-shadow: 0 25px 50px -30px rgba(42, 43, 37, .5);
}

.hero-detail-photo img {
  object-position: center;
}

.hero-note {
  position: absolute;
  top: 2.6rem;
  left: -2.2rem;
  display: flex;
  width: 114px;
  height: 114px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(100, 112, 92, .25);
  border-radius: 50%;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 40px -28px rgba(42, 43, 37, .5);
  text-align: center;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: .95rem;
}

.hero-note span {
  margin-top: .2rem;
  color: var(--ink-soft);
  font-size: .55rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(100, 112, 92, .2);
  background: var(--olive-pale);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.8rem;
  padding-block: .85rem;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: .9rem;
}

.ticker-track i {
  color: var(--rose);
  font-size: .65rem;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 4rem;
}

.display-title {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1.18;
}

.section-lead {
  max-width: 43rem;
  margin-top: 1.7rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.95;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.section-heading > p {
  padding-bottom: .35rem;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.85;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
}

.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
}

.service-image {
  aspect-ratio: 1.08;
  overflow: hidden;
  background: var(--paper-2);
}

.service-card-wide .service-image {
  aspect-ratio: 1.55;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.03);
  transition: transform .8s var(--ease);
}

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

.service-copy {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem;
}

.service-card-wide .service-copy {
  justify-content: center;
  padding: clamp(2.4rem, 6vw, 5.5rem);
}

.service-number {
  position: absolute;
  top: 1.7rem;
  right: 1.8rem;
  color: var(--rose);
  font-family: var(--serif);
  font-size: .8rem;
}

.service-kicker {
  color: var(--olive);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.service-copy h3 {
  margin-top: .65rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.service-card-wide .service-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.service-copy > p:not(.service-kicker) {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: .85rem;
  line-height: 1.85;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.5rem;
}

.mini-list li {
  border: 1px solid rgba(100, 112, 92, .25);
  border-radius: 999px;
  padding: .35rem .7rem;
  color: var(--olive-deep);
  font-size: .65rem;
}

.styles {
  background: var(--olive-deep);
  color: #f7f4ed;
}

.section-heading.light .eyebrow {
  color: #cbd3c4;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, .67);
}

.style-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.style-card {
  min-width: 0;
}

.photo-button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #273026;
  cursor: zoom-in;
}

.photo-button .responsive-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05) saturate(1.03);
  transition: transform .8s var(--ease), opacity .4s;
}

.photo-button:hover img {
  opacity: .9;
  transform: scale(1.045);
}

.style-card > div {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding-top: 1rem;
}

.style-card span {
  color: var(--rose);
  font-size: .58rem;
}

.style-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.styles-cta {
  margin-top: 3rem;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.gallery-item {
  position: relative;
  grid-column: span 1;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--paper-2);
  cursor: zoom-in;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.03);
  transition: transform .85s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  inset: auto 1rem 1rem;
  width: fit-content;
  padding: .45rem .7rem;
  background: rgba(255, 253, 248, .9);
  color: var(--ink);
  font-family: var(--serif);
  font-size: .75rem;
  backdrop-filter: blur(8px);
}

.social {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.social-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
}

.social-grid a {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.social-grid a::after {
  position: absolute;
  inset: 0;
  background: rgba(61, 73, 58, 0);
  content: "";
  transition: background .25s;
}

.social-grid a:hover::after {
  background: rgba(61, 73, 58, .16);
}

.social-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.social-grid a:hover img {
  transform: scale(1.045);
}

.guide {
  background: var(--rose-pale);
}

.guide-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.guide-intro > p:last-child {
  max-width: 28rem;
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: .88rem;
}

.steps {
  border-top: 1px solid rgba(40, 42, 37, .18);
}

.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.2rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(40, 42, 37, .18);
}

.steps > li > span {
  padding-top: .2rem;
  color: #a66964;
  font-size: .65rem;
  font-weight: 600;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.steps p {
  margin-top: .25rem;
  color: var(--ink-soft);
  font-size: .78rem;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(3rem, 9vw, 9rem);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.45rem 3rem 1.45rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: .4rem;
  color: var(--olive);
  content: "+";
  font-family: var(--sans);
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 42rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.9;
}

.contact {
  padding-block: clamp(5.5rem, 10vw, 9rem);
  background: #293229;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact .eyebrow {
  color: #c6cfbf;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1.15;
}

.contact-copy > p:not(.eyebrow):not(.copy-status) {
  max-width: 31rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .66);
  font-size: .86rem;
}

.copy-template {
  margin-top: 1.5rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  padding: .35rem 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 600;
}

.copy-template:hover {
  border-color: var(--rose);
  color: var(--rose-pale);
}

.copy-status {
  min-height: 1.4rem;
  margin-top: .45rem;
  color: #dce6d7;
  font-size: .7rem;
}

.contact-links {
  border-top: 1px solid var(--white-line);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 1.7rem 1rem;
  border-bottom: 1px solid var(--white-line);
  transition: background .25s, padding .25s;
}

.contact-card:hover {
  padding-inline: 1.4rem .6rem;
  background: rgba(255, 255, 255, .06);
}

.contact-card span {
  color: rgba(255, 255, 255, .55);
  font-size: .62rem;
}

.contact-card strong {
  grid-column: 1;
  margin-top: .25rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 400;
}

.contact-card i {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 1.3rem;
  font-style: normal;
}

.contact-card-primary strong {
  color: #f1d8d5;
}

.site-footer {
  background: #20261f;
  color: rgba(255, 255, 255, .73);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 3rem;
  padding-block: 3.5rem;
}

.site-footer .brand {
  width: 168px;
  max-width: 100%;
  flex-basis: 168px;
}

.site-footer .brand-logo {
  max-height: none;
}

.footer-top > p {
  font-family: var(--serif);
  font-size: .9rem;
}

.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: .5rem;
  font-size: .73rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  letter-spacing: .08em;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: .55rem;
}

.floating-contact {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1rem .65rem .75rem;
  border: 4px solid rgba(248, 244, 237, .82);
  border-radius: 999px;
  box-shadow: 0 15px 35px -18px rgba(35, 35, 31, .6);
  font-size: .75rem;
  font-weight: 700;
  transition: transform .25s var(--ease);
}

.floating-kakao {
  background: #fee500;
  color: #191919;
}

.floating-kakao-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: #191919;
}

.floating-kakao-icon circle {
  fill: #fee500;
}

.floating-instagram {
  background: linear-gradient(135deg, #5b51d8 0%, #c13584 48%, #e1306c 72%, #f77737 100%);
  color: #fff;
}

.floating-instagram-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.floating-instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.floating-contact:hover {
  transform: translateY(-4px);
}

.responsive-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.responsive-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  width: min(92vw, 1100px);
  max-width: none;
  max-height: 92vh;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(20, 24, 20, .9);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  display: grid;
  max-height: 88vh;
  place-items: center;
  gap: .75rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, .72);
  font-family: var(--serif);
  font-size: .78rem;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

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

body.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

body.has-js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 10px;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform .25s, opacity .2s;
  }

  .menu-button span + span {
    margin-top: 6px;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid transparent;
    transition: max-height .35s var(--ease), border-color .25s;
  }

  .mobile-nav.open {
    max-height: 90px;
    border-color: var(--line);
  }

  .mobile-nav a {
    padding: .85rem .5rem;
    text-align: center;
    font-size: .68rem;
    font-weight: 600;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.4vw, 4.7rem);
  }

  .hero-media {
    min-height: 510px;
  }

  .hero-points {
    display: none;
  }

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

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .style-strip {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1rem;
  }

  .style-card:nth-child(even) .photo-button {
    margin-top: 0;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header: 76px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-inner {
    gap: 1rem;
  }

  .site-header .brand {
    width: 96px;
    flex-basis: 96px;
  }

  .mobile-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-nav.open {
    max-height: 150px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4rem 5.5rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14.2vw, 5rem);
  }

  .hero-lead {
    max-width: 31rem;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media-single {
    min-height: 0;
  }

  .hero-main-photo {
    right: 2rem;
  }

  .hero-detail-photo {
    width: 40%;
    border-width: 7px;
  }

  .hero-note {
    top: -1.8rem;
    left: auto;
    right: 0;
    width: 100px;
    height: 100px;
  }

  .intro-grid,
  .section-heading,
  .guide-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading {
    gap: 1.5rem;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 34rem;
  }

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

  .service-card-wide,
  .service-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .service-card-wide .service-image,
  .service-image {
    aspect-ratio: 1.3;
  }

  .service-card-wide .service-copy {
    padding: 2rem;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .guide-grid,
  .faq-grid,
  .contact-grid {
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .8rem 1.2rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media-single {
    min-height: 0;
  }

  .hero-single-photo {
    aspect-ratio: 4 / 3;
  }

  .hero-main-photo {
    inset: 0 1.3rem 1.8rem 0;
  }

  .hero-detail-photo {
    width: 43%;
  }

  .style-strip {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .gallery-grid {
    display: grid;
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .social-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: .4rem;
    flex-direction: column;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: .45rem;
  }

  .floating-contact {
    min-height: 54px;
    padding: .55rem .85rem .55rem .65rem;
    font-size: .7rem;
  }

  .floating-kakao-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .floating-instagram-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  body.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
