:root {
    --ink: #11100e;
    --ink-soft: #191714;
    --charcoal: #24211d;
    --wood: #5f4433;
    --wood-light: #9f785b;
    --rice: #f2eee5;
    --rice-muted: #d8d1c4;
    --paper: #e8e1d5;
    --vermillion: #b43a2d;
    --line-dark: rgba(242, 238, 229, 0.22);
    --line-light: rgba(17, 16, 14, 0.2);
    --content: min(1180px, calc(100% - 96px));
    --notice-height: 32px;
    --header-height: 80px;
    --space-section: clamp(96px, 12vw, 180px);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--notice-height) + var(--header-height) + 12px);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--ink);
    color: var(--rice);
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    word-break: keep-all;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

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

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

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

::selection {
    background: var(--vermillion);
    color: #fff;
}

[id] {
    scroll-margin-top: calc(var(--notice-height) + var(--header-height) + 12px);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 16px;
    z-index: 2000;
    padding: 12px 18px;
    background: #fff;
    color: #111;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

.sample-notice {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--notice-height);
    display: grid;
    place-items: center;
    padding: 5px 24px;
    background: #e9e0d1;
    color: #211d18;
    border-bottom: 1px solid rgba(17, 16, 14, 0.2);
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.site-header {
    position: fixed;
    top: var(--notice-height);
    left: 0;
    z-index: 900;
    width: 100%;
    height: var(--header-height);
    color: var(--rice);
    transition:
        background-color 250ms ease,
        border-color 250ms ease,
        backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
    background: rgba(17, 16, 14, 0.94);
    border-bottom: 1px solid var(--line-dark);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: var(--content);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
}

.wordmark-korean {
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.wordmark-english {
    font-size: 9px;
    letter-spacing: 0.24em;
    color: var(--rice-muted);
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 44px);
}

.primary-navigation a {
    position: relative;
    display: block;
    padding: 12px 2px;
    color: #eee8de;
    font-size: 14px;
}

.primary-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: var(--rice);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease-out);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.menu-button span {
    position: absolute;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
}

.menu-button span:first-child {
    transform: translateY(-4px);
}

.menu-button span:last-child {
    transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    isolation: isolate;
    display: grid;
    align-items: end;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 38%, rgba(118, 78, 48, 0.28), transparent 32%),
        linear-gradient(125deg, #211c17 0%, #0e0d0b 72%);
}

.hero > .hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -3;
}

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

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

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.86) 0%, rgba(8, 7, 6, 0.45) 48%, rgba(8, 7, 6, 0.17) 76%),
        linear-gradient(0deg, rgba(8, 7, 6, 0.78) 0%, transparent 45%),
        linear-gradient(180deg, rgba(8, 7, 6, 0.5) 0%, transparent 30%);
}

.hero-content {
    width: var(--content);
    margin: 0 auto;
    padding: calc(var(--notice-height) + var(--header-height) + 84px) 0 clamp(72px, 10vh, 120px);
}

.eyebrow {
    margin-bottom: 24px;
    color: var(--wood-light);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.25em;
}

.hero .eyebrow {
    color: #d4b18e;
}

.hero h1,
.section h2 {
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-weight: 400;
    letter-spacing: -0.065em;
}

.hero h1 {
    max-width: 820px;
    color: #fffaf1;
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.98;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 em {
    color: #d9b38c;
    font-style: normal;
}

.hero-summary {
    margin-top: 36px;
    color: #e7dfd3;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.9;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    min-height: 48px;
    margin-top: 34px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
}

.text-link span {
    transition: transform 200ms ease;
}

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

.text-link--light {
    color: #fffaf1;
}

.hero-side-note {
    position: absolute;
    right: 40px;
    bottom: 50%;
    color: rgba(255, 250, 241, 0.58);
    font-size: 9px;
    letter-spacing: 0.32em;
    transform: translate(45%, 50%) rotate(90deg);
}

.section {
    position: relative;
    padding-block: var(--space-section);
}

.section-inner {
    width: var(--content);
    margin: 0 auto;
}

.section-index {
    margin-bottom: 40px;
    color: var(--wood-light);
    font-family: Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.16em;
}

.section h2 {
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1.18;
}

.philosophy {
    background:
        linear-gradient(90deg, rgba(95, 68, 51, 0.08) 1px, transparent 1px) 0 0 / 25% 100%,
        var(--paper);
    color: var(--ink);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(72px, 10vw, 150px);
    align-items: start;
}

.philosophy-copy {
    padding-top: 84px;
}

.philosophy-copy .lead {
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: clamp(21px, 2.1vw, 29px);
    line-height: 1.75;
    letter-spacing: -0.035em;
}

.philosophy-copy > p + p {
    margin-top: 28px;
    color: #4c463f;
}

.philosophy-copy blockquote {
    margin-top: 68px;
    padding: 32px 0 0 30px;
    border-top: 1px solid var(--line-light);
    border-left: 3px solid var(--vermillion);
}

.philosophy-copy blockquote p {
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: 20px;
    line-height: 1.7;
}

.philosophy-copy cite {
    display: block;
    margin-top: 16px;
    color: #6d655d;
    font-size: 13px;
    font-style: normal;
}

.craft {
    min-height: 900px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    padding: 0;
    background: var(--ink-soft);
}

.craft-media {
    min-height: 900px;
}

.craft-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-content {
    align-self: center;
    max-width: 640px;
    padding: var(--space-section) clamp(56px, 7vw, 120px);
}

.craft-content h2 {
    color: #fffaf1;
}

.craft-steps {
    margin-top: clamp(58px, 7vw, 90px);
    border-top: 1px solid var(--line-dark);
}

.craft-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line-dark);
}

.craft-steps > li > span {
    color: var(--wood-light);
    font-family: "Noto Serif KR", "Batang", serif;
    font-size: 20px;
}

.craft-steps h3 {
    color: #fffaf1;
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: 21px;
    font-weight: 400;
}

.craft-steps p {
    margin-top: 5px;
    color: var(--rice-muted);
    font-size: 14px;
}

.course {
    background: #ded5c7;
    color: var(--ink);
}

.course-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: end;
}

.course-heading > p {
    padding-bottom: 10px;
    color: #4e4942;
}

.course-visual {
    aspect-ratio: 3 / 1.55;
    margin-top: clamp(64px, 8vw, 110px);
    overflow: hidden;
    background: #29231e;
}

.course-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
    border-top: 1px solid var(--line-light);
}

.course-list article {
    min-height: 210px;
    padding: 28px clamp(20px, 3vw, 40px) 28px 0;
}

.course-list article + article {
    padding-left: clamp(20px, 3vw, 40px);
    border-left: 1px solid var(--line-light);
}

.course-number {
    color: #7c6d61;
    font-family: Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.course-list h3 {
    margin-top: 25px;
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: 22px;
    font-weight: 400;
}

.course-list article > p:last-child {
    margin-top: 14px;
    color: #514a43;
    font-size: 14px;
}

.course-note {
    margin-top: 18px;
    color: #625b53;
    font-size: 12px;
}

.space {
    display: grid;
    grid-template-columns: minmax(460px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    padding: 0;
    background: #171512;
}

.space-content {
    align-self: center;
    justify-self: end;
    width: min(100%, 680px);
    padding: var(--space-section) clamp(56px, 7vw, 100px) var(--space-section) max(48px, calc((100vw - 1180px) / 2));
}

.space-content > p:not(.section-index, .eyebrow) {
    max-width: 500px;
    margin-top: 35px;
    color: var(--rice-muted);
}

.space-facts {
    margin-top: 55px;
    border-top: 1px solid var(--line-dark);
}

.space-facts div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
}

.space-facts dt {
    color: var(--wood-light);
    font-size: 13px;
}

.space-facts dd {
    color: var(--rice);
    font-size: 14px;
}

.space-media {
    min-height: 760px;
}

.space-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(560px, 0.92fr);
    padding: 0;
    background: #e7ded1;
    color: #29231e;
}

.location-media {
    min-height: 820px;
}

.location-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.location-content {
    align-self: center;
    width: 100%;
    max-width: none;
    padding: 96px clamp(56px, 5vw, 80px);
}

.location-content .section-index {
    color: rgba(75, 55, 41, 0.55);
}

.location h2 {
    margin-top: 18px;
    color: #241d18;
    font-size: clamp(48px, 4.4vw, 64px);
    line-height: 1.16;
}

.location-lead {
    max-width: 520px;
    margin-top: 30px;
    color: #51473f;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.75;
}

.location-facts {
    margin-top: 42px;
    border-top: 1px solid rgba(72, 51, 37, 0.24);
}

.location-facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(72, 51, 37, 0.16);
}

.location-facts dt {
    color: #7e593e;
    font-size: 13px;
    font-weight: 700;
}

.location-facts dd,
.location-facts address {
    color: #3d352f;
    font-size: 15px;
    font-style: normal;
}

.location-facts span {
    color: #766b63;
    font-size: 13px;
}

.location-note {
    margin-top: 24px;
    color: #6a5f57;
    font-size: 13px;
    line-height: 1.8;
}

.contact {
    background:
        radial-gradient(circle at 50% 0, rgba(145, 100, 66, 0.2), transparent 38%),
        #0f0e0c;
    text-align: center;
}

.contact-inner {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
}

.contact .eyebrow {
    color: #c09b77;
}

.contact h2 {
    color: #fffaf1;
    font-size: clamp(46px, 6.5vw, 88px);
}

.contact-summary {
    max-width: 650px;
    margin: 36px auto 0;
    color: var(--rice-muted);
}

.contact-information {
    max-width: 720px;
    margin: 70px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--line-dark);
}

.contact-information dl {
    text-align: left;
}

.contact-information dl div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 13px 0;
}

.contact-information dt {
    color: #c09b77;
    font-size: 13px;
}

.contact-information dd {
    color: #eee8de;
    font-size: 14px;
}

.outline-button {
    display: inline-grid;
    min-width: 210px;
    min-height: 52px;
    place-items: center;
    margin-top: 46px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 250, 241, 0.65);
    color: #fffaf1;
    font-size: 14px;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.outline-button:hover {
    background: #fffaf1;
    color: var(--ink);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 50px max(48px, calc((100vw - 1180px) / 2));
    background: #090807;
    color: #898177;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
}

.footer-wordmark {
    margin-bottom: 7px;
    color: var(--rice);
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: 17px;
}

.footer-wordmark span {
    margin-left: 8px;
    color: #898177;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 8px;
    letter-spacing: 0.18em;
}

.visual-shell {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(159, 120, 91, 0.25), transparent 55%),
        #211d18;
}

.visual-fallback {
    position: absolute;
    inset: 0;
    display: none;
    place-content: center;
    gap: 18px;
    padding: 40px;
    background:
        linear-gradient(135deg, rgba(121, 82, 55, 0.5), rgba(12, 11, 9, 0.86)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 70px);
    color: #fffaf1;
    text-align: center;
}

.visual-fallback span {
    font-size: 10px;
    letter-spacing: 0.28em;
}

.visual-fallback strong {
    font-family: Georgia, "Noto Serif KR", "Batang", serif;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.35;
}

.visual-shell.is-missing > img,
.visual-shell.is-missing > picture {
    display: none;
}

.visual-shell.is-missing > .visual-fallback {
    display: grid;
}

.visual-fallback--craft {
    background:
        linear-gradient(145deg, rgba(88, 59, 42, 0.68), rgba(14, 13, 11, 0.92)),
        repeating-linear-gradient(0deg, transparent 0 48px, rgba(255, 255, 255, 0.03) 48px 49px);
}

.visual-fallback--course {
    background:
        radial-gradient(ellipse at center, rgba(114, 55, 39, 0.55), transparent 25%),
        linear-gradient(135deg, #332820, #11100e);
}

.visual-fallback--space {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(8, 7, 6, 0.55)),
        repeating-linear-gradient(90deg, #3a2c22 0 80px, #31251e 80px 160px);
}

.visual-fallback--location {
    background:
        linear-gradient(180deg, rgba(12, 11, 9, 0.1), rgba(12, 11, 9, 0.62)),
        repeating-linear-gradient(90deg, #35271f 0 52px, #2b211b 52px 104px);
}

.has-js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 800ms var(--ease-out),
        transform 800ms var(--ease-out);
}

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

@media (max-width: 1100px) {
    :root {
        --content: min(100% - 64px, 980px);
    }

    .craft {
        grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    }

    .craft-content {
        padding-inline: 52px;
    }

    .space {
        grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    }

    .space-content {
        padding-left: 48px;
        padding-right: 52px;
    }

    .location {
        grid-template-columns: minmax(0, 1fr) minmax(500px, 0.96fr);
    }

    .location-content {
        padding-inline: 48px;
    }
}

@media (max-width: 900px) {
    .location {
        grid-template-columns: 1fr;
    }

    .location-media {
        min-height: auto;
        aspect-ratio: 3 / 2;
    }

    .location-content {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --content: calc(100% - 40px);
        --notice-height: 44px;
        --header-height: 68px;
        --space-section: 88px;
    }

    body {
        font-size: 15px;
    }

    .sample-notice {
        padding-inline: 16px;
    }

    .wordmark-korean {
        font-size: 21px;
    }

    .wordmark-english {
        display: none;
    }

    .menu-button {
        position: relative;
        display: grid;
        place-items: center;
        z-index: 2;
    }

    .primary-navigation {
        position: fixed;
        top: calc(var(--notice-height) + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-items: center;
        padding: 32px 20px 80px;
        background: rgba(17, 16, 14, 0.985);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition:
            visibility 200ms,
            opacity 200ms ease,
            transform 200ms ease;
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-navigation ul {
        flex-direction: column;
        gap: 8px;
    }

    .primary-navigation a {
        min-width: 180px;
        padding: 12px 20px;
        text-align: center;
        font-family: Georgia, "Noto Serif KR", "Batang", serif;
        font-size: 24px;
    }

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

    .hero h1 {
        font-size: clamp(52px, 16vw, 86px);
        line-height: 1.02;
    }

    .hero-summary br {
        display: none;
    }

    .hero-side-note {
        display: none;
    }

    .philosophy-grid,
    .course-heading {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .philosophy-copy {
        padding-top: 0;
    }

    .philosophy-copy blockquote {
        margin-top: 48px;
    }

    .craft,
    .space,
    .location {
        grid-template-columns: 1fr;
    }

    .craft-media {
        min-height: auto;
        aspect-ratio: 4 / 5;
    }

    .craft-content {
        max-width: none;
        padding: 88px 20px;
    }

    .craft-steps {
        margin-top: 54px;
    }

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

    .course-list {
        grid-template-columns: 1fr;
    }

    .course-list article {
        min-height: auto;
        padding: 28px 0;
    }

    .course-list article + article {
        padding-left: 0;
        border-top: 1px solid var(--line-light);
        border-left: 0;
    }

    .space-content {
        justify-self: stretch;
        width: auto;
        padding: 88px 20px;
    }

    .space-media {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .location-media {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .location-content {
        max-width: none;
        padding: 88px 20px;
    }

    .location-facts div {
        grid-template-columns: 86px 1fr;
        gap: 14px;
    }

    .site-footer {
        flex-direction: column;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --content: calc(100% - 32px);
        --space-section: 76px;
    }

    .sample-notice {
        font-size: 13px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-media img {
        object-position: 58% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0.28)),
            linear-gradient(0deg, rgba(8, 7, 6, 0.9), transparent 56%);
    }

    .hero-content {
        padding-top: 180px;
        padding-bottom: 54px;
    }

    .hero h1 {
        font-size: clamp(48px, 17vw, 70px);
    }

    .hero-summary {
        margin-top: 26px;
        font-size: 15px;
    }

    .section h2 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .section-index {
        margin-bottom: 28px;
    }

    .philosophy-copy .lead {
        font-size: 20px;
    }

    .philosophy-copy blockquote {
        padding-left: 20px;
    }

    .craft-content,
    .space-content {
        padding-block: 76px;
        padding-inline: 16px;
    }

    .craft-steps li {
        grid-template-columns: 34px 1fr;
        gap: 14px;
    }

    .course-visual {
        margin-top: 52px;
        aspect-ratio: 3 / 4;
    }

    .contact-inner {
        width: calc(100% - 32px);
    }

    .contact h2 {
        font-size: clamp(40px, 13vw, 56px);
    }

    .contact-information dl div {
        grid-template-columns: 72px 1fr;
        gap: 14px;
    }
}

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

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

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

@media (prefers-contrast: more) {
    :root {
        --line-dark: rgba(255, 255, 255, 0.48);
        --line-light: rgba(0, 0, 0, 0.45);
    }

    .eyebrow,
    .section-index {
        color: #b9855f;
    }
}

@media print {
    .sample-notice,
    .site-header,
    .text-link,
    .outline-button {
        display: none;
    }

    body,
    .section,
    .site-footer {
        background: #fff;
        color: #000;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
        background: #fff;
        color: #000;
    }

    .hero-media,
    .hero-shade {
        display: none;
    }

    .hero-content,
    .section-inner {
        width: 100%;
        padding-inline: 20px;
    }
}
