:root {
    --bg: #fbfaf6;
    --paper: #fffdf8;
    --paper-strong: #ffffff;
    --beige: #efe3cf;
    --beige-soft: #f7efe3;
    --gold: #b89556;
    --gold-dark: #7f6338;
    --ink: #1f1d19;
    --muted: #6d665b;
    --line: rgba(126, 101, 57, 0.18);
    --shadow: 0 24px 80px rgba(64, 51, 30, 0.12);
    --nav-height: 112px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Noto Sans KR', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.72;
    word-break: keep-all;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.main-content,
.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 18px clamp(18px, 4vw, 56px);
    transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 253, 248, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(54, 44, 28, 0.08);
}

.site-header-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.brand-link {
    grid-column: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 124px;
}

.brand-link img {
    width: 42px;
    height: 42px;
}

.brand-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--gold-dark);
}

.site-nav {
    grid-column: 1 / 4;
    justify-self: center;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 54px);
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: #39342d;
    font-size: 15px;
    font-weight: 600;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: left 180ms ease, right 180ms ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    left: 0;
    right: 0;
}

.header-cta {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid rgba(184, 149, 86, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: #30271a;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(126, 99, 52, 0.08);
}

.menu-toggle {
    display: none;
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.section-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section-kicker {
    display: inline-flex;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.section-title {
    margin: 14px 0 18px;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.18;
    letter-spacing: 0;
}

.section-copy {
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 19px);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-naver {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
    background: #2b241a;
    color: #fff;
    box-shadow: 0 18px 36px rgba(31, 29, 25, 0.18);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.74);
    color: #2b241a;
    border-color: rgba(126, 99, 52, 0.22);
}

.btn-naver {
    background: #03c75a;
    color: #fff;
    box-shadow: 0 18px 34px rgba(3, 199, 90, 0.2);
}

.naver-mark {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-naver:hover {
    transform: translateY(-2px);
}

.motion-ready .reveal-item {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 42px, 0) scale(0.985);
    transition:
        opacity 720ms cubic-bezier(0.2, 0.72, 0.18, 1),
        transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1),
        filter 760ms cubic-bezier(0.2, 0.72, 0.18, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.motion-ready .reveal-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready .reveal-item {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    .btn-primary,
    .btn-secondary,
    .btn-naver,
    .site-header,
    .nav-list a::after,
    .menu-toggle span {
        transition: none;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #f6efe3;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.88) 32%, rgba(251, 250, 246, 0.18) 66%, rgba(251, 250, 246, 0.52) 100%),
        linear-gradient(180deg, rgba(251, 250, 246, 0.18) 0%, rgba(251, 250, 246, 0.98) 96%),
        url('/images/redesign/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: calc(var(--nav-height) + 70px) 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}

.hero-copy h1 {
    margin: 18px 0 24px;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(44px, 6.6vw, 84px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 34px;
    color: #4f493f;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.award-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.award-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(184, 149, 86, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #5c4723;
    font-size: 14px;
    font-weight: 800;
}

.hero-proof {
    align-self: end;
    display: grid;
    gap: 18px;
}

.proof-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.76);
    border: 1px solid rgba(184, 149, 86, 0.22);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.proof-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #071020;
}

.proof-card-body {
    padding: 20px 22px 22px;
}

.proof-card-body strong {
    display: block;
    margin-bottom: 7px;
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
}

.proof-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.scroll-note {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    color: rgba(31, 29, 25, 0.62);
    font-size: 13px;
}

.intro {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: start;
}

.portrait-frame {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff 0%, #f2e4cd 100%);
    box-shadow: var(--shadow);
}

.portrait-frame::after {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 30px;
    z-index: -1;
    border-radius: 34px;
    border: 1px solid rgba(184, 149, 86, 0.3);
}

.portrait-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
}

.intro-text {
    max-width: 620px;
}

.intro-text .section-title {
    font-size: clamp(36px, 5vw, 64px);
}

.intro-lead {
    margin: 0 0 26px;
    color: #3e372d;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
}

.intro-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.intro-list div {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.intro-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-dark);
}

.services {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #fff;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 44%, rgba(255, 255, 255, 0.42) 100%),
        url('/images/redesign/service-still.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.services .section-inner {
    position: relative;
    z-index: 1;
}

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

.service-line {
    padding: 34px 28px;
    background: rgba(255, 253, 248, 0.58);
    border-right: 1px solid var(--line);
}

.service-line:last-child {
    border-right: 0;
}

.service-line span {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
}

.service-line h3 {
    margin: 8px 0 12px;
    font-family: 'Noto Serif KR', serif;
    font-size: 32px;
}

.service-line p {
    margin: 0;
    color: var(--muted);
}

.award-section {
    padding: 105px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f2e7 100%);
}

.award-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.65fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.award-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.award-images img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #fff;
}

.reservation-band {
    padding: 96px 0;
    background:
        linear-gradient(90deg, rgba(251, 250, 246, 0.94), rgba(251, 250, 246, 0.76)),
        url('/images/redesign/footer-hanji.png');
    background-size: cover;
    background-position: center;
}

.reservation-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 46px clamp(24px, 5vw, 58px);
    border: 1px solid rgba(184, 149, 86, 0.28);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.reservation-panel h2 {
    margin: 0 0 12px;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(30px, 4vw, 48px);
}

.reservation-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.contact-wide {
    padding: 110px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: stretch;
}

.contact-wide .portrait-frame {
    width: min(100%, 520px);
    height: 100%;
    justify-self: end;
}

.contact-wide .portrait-frame img {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
}

.contact-info-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-info-list p {
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.contact-info-list strong {
    display: inline-block;
    min-width: 88px;
    color: var(--gold-dark);
}

.story-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 248, 0.88) 46%, rgba(255, 255, 255, 0.74) 100%),
        linear-gradient(180deg, #fff 0%, rgba(247, 239, 227, 0.86) 100%),
        url('/images/redesign/service-still.png');
    background-size: cover;
    background-position: center;
}

.story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(184, 149, 86, 0.16), transparent 28%),
        radial-gradient(circle at 84% 76%, rgba(239, 227, 207, 0.6), transparent 30%);
    pointer-events: none;
}

.story-section::after {
    content: "";
    position: absolute;
    left: max(24px, calc((100% - 1120px) / 2));
    bottom: 68px;
    width: min(34vw, 390px);
    aspect-ratio: 4 / 5;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.26), rgba(255, 253, 248, 0.86)),
        url('/images/main_image.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.86);
    pointer-events: none;
}

.story-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: start;
}

.story-heading {
    position: sticky;
    top: calc(var(--nav-height) + 34px);
}

.story-heading .section-kicker,
.story-heading .section-title,
.story-heading .section-copy {
    position: relative;
    z-index: 1;
}

.story-heading .section-title {
    font-size: clamp(36px, 4.6vw, 58px);
}

.story-visual {
    position: absolute;
    top: 34px;
    right: 0;
    overflow: hidden;
    width: min(44%, 230px);
    border: 1px solid rgba(184, 149, 86, 0.24);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.78);
    box-shadow: var(--shadow);
    opacity: 0.2;
    transform: rotate(2deg);
}

.story-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 38%;
}

.story-visual p {
    display: none;
}

.motion-ready .story-visual.reveal-item.is-visible {
    opacity: 0.2;
}

.story-flow {
    position: relative;
    display: grid;
    gap: 20px;
}

.story-flow::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 17px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(184, 149, 86, 0.38), transparent);
}

.story-block {
    position: relative;
    margin-left: 34px;
    padding: 30px clamp(22px, 4vw, 38px);
    border: 1px solid rgba(184, 149, 86, 0.22);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.84);
    box-shadow: 0 18px 54px rgba(64, 51, 30, 0.08);
    backdrop-filter: blur(10px);
}

.story-block::before {
    content: "";
    position: absolute;
    top: 32px;
    left: -42px;
    width: 17px;
    height: 17px;
    border: 4px solid #fffdf8;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 1px rgba(184, 149, 86, 0.32), 0 12px 28px rgba(64, 51, 30, 0.16);
}

.story-block span {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
}

.story-block h3 {
    margin: 8px 0 16px;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.24;
}

.story-block p {
    margin: 0;
    color: #514b42;
    font-size: 17px;
    line-height: 1.9;
}

.story-block p + p {
    margin-top: 14px;
}

.story-block blockquote {
    margin: 20px 0;
    padding: 20px 22px;
    border-left: 3px solid var(--gold);
    background: rgba(239, 227, 207, 0.46);
    color: #31291d;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(19px, 2.2vw, 25px);
    line-height: 1.7;
}

.story-promise {
    background: rgba(43, 36, 26, 0.92);
    box-shadow: 0 24px 80px rgba(43, 36, 26, 0.24);
}

.story-promise h3,
.story-promise p {
    color: #fffdf8;
}

.story-promise span {
    color: #e7cf9c;
}

.map-frame {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 86, 0.2);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

.site-footer {
    position: relative;
    padding: 72px 20px 32px;
    background:
        linear-gradient(180deg, rgba(251, 250, 246, 0.86), rgba(251, 250, 246, 0.95)),
        url('/images/redesign/footer-hanji.png');
    background-size: cover;
    color: #3a3328;
}

.footer-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand-row img {
    width: 42px;
    height: 42px;
}

.footer-brand-row strong {
    font-family: 'Noto Serif KR', serif;
    font-size: 24px;
}

.footer-copy,
.footer-meta {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-meta {
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.admin-login-btn {
    color: rgba(31, 29, 25, 0.42);
    font-size: 12px;
}

.page-hero {
    position: relative;
    padding: calc(var(--nav-height) + 96px) 0 86px;
    background:
        linear-gradient(100deg, rgba(251, 250, 246, 0.97), rgba(251, 250, 246, 0.76)),
        url('/images/redesign/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    max-width: 760px;
    margin: 14px 0 18px;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.16;
}

.content-section {
    padding: 96px 0;
    background: #fff;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: center;
}

.text-stack {
    display: grid;
    gap: 20px;
}

.text-stack p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.line-list {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.line-list li {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.line-list strong {
    color: var(--gold-dark);
}

.notice-text {
    margin-top: 18px;
    color: var(--gold-dark);
    font-weight: 800;
}

@media (max-width: 920px) {
    :root {
        --nav-height: 86px;
    }

    .site-header-shell {
        grid-template-columns: 1fr auto 1fr;
    }

    .brand-link {
        grid-column: 2;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 76px 16px auto 16px;
        display: none;
        padding: 20px;
        border-radius: 22px;
        background: rgba(255, 253, 248, 0.96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .nav-list a {
        justify-content: center;
        min-height: 46px;
    }

    .hero-inner,
    .intro-grid,
    .award-layout,
    .contact-grid,
    .story-layout,
    .two-column,
    .reservation-panel {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-top: calc(var(--nav-height) + 44px);
    }

    .hero-proof {
        max-width: 460px;
    }

    .contact-wide .portrait-frame {
        height: auto;
        justify-self: start;
    }

    .contact-wide .portrait-frame img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .story-heading {
        position: static;
    }

    .story-visual {
        position: static;
        width: min(100%, 360px);
        margin-top: 26px;
        opacity: 1;
        transform: none;
    }

    .story-visual img {
        aspect-ratio: 4 / 3;
    }

    .story-visual p {
        display: block;
        margin: 0;
        padding: 18px 20px 20px;
        color: var(--gold-dark);
        font-weight: 800;
        line-height: 1.65;
    }

    .motion-ready .story-visual.reveal-item.is-visible {
        opacity: 1;
    }

    .story-section::after {
        display: none;
    }

    .story-flow::before {
        display: none;
    }

    .story-block {
        margin-left: 0;
    }

    .story-block::before {
        display: none;
    }

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

    .service-line {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-line:last-child {
        border-bottom: 0;
    }

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

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-name {
        font-size: 17px;
    }

    .section-inner,
    .hero-inner {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding-bottom: 70px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .button-row {
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary,
    .btn-naver {
        width: 100%;
    }

    .intro,
    .services,
    .award-section,
    .reservation-band,
    .contact-wide,
    .story-section,
    .content-section {
        padding: 72px 0;
    }

    .award-images {
        grid-template-columns: 1fr;
    }

    .line-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .map-frame iframe {
        height: 340px;
    }
}
