:root {
    --ink: #1c2925;
    --ink-soft: #44534d;
    --wine: #953747;
    --wine-dark: #742638;
    --sage: #6f8176;
    --gold: #c39a62;
    --paper: #f8f5ef;
    --paper-deep: #eee8de;
    --white: #ffffff;
    --line: rgba(28, 41, 37, 0.14);
    --shadow: 0 22px 60px rgba(28, 41, 37, 0.12);
    --radius-lg: 34px;
    --radius-md: 20px;
    --page: 1240px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Aptos, "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menuOpen {
    overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

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

.skipLink {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-140%);
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
}

.skipLink:focus {
    transform: translateY(0);
}

.header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(28, 41, 37, 0.1);
    background: rgba(248, 245, 239, 0.92);
    backdrop-filter: blur(16px);
}

.headerInner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logoMark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50% 50% 50% 12px;
    background: var(--wine);
    color: var(--white);
    font-size: 20px;
    font-style: italic;
}

.topNav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    font-size: 15px;
    font-weight: 600;
}

.topNav a {
    position: relative;
    padding-block: 8px;
}

.topNav a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: var(--wine);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.topNav a:hover::after,
.topNav a.current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.topNav a.current {
    color: var(--wine-dark);
}

.topBtns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topBtns a {
    min-width: 92px;
    padding: 10px 16px;
    border: 1px solid var(--wine);
    border-radius: 999px;
    background: var(--wine);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.topBtns a:hover {
    transform: translateY(-1px);
}

.topBtns a.signin {
    background: transparent;
    color: var(--wine-dark);
}

.mobileShow,
.menuBtn {
    display: none;
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 24px;
    border: 1px solid var(--wine);
    border-radius: 999px;
    background: var(--wine);
    box-shadow: 0 10px 24px rgba(149, 55, 71, 0.18);
    color: var(--white);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.2;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    border-color: var(--wine-dark);
    background: var(--wine-dark);
    box-shadow: 0 14px 30px rgba(116, 38, 56, 0.24);
    transform: translateY(-2px);
}

.btn span {
    font-size: 22px;
    line-height: 1;
}

.btnLight {
    border-color: var(--white);
    background: var(--white);
    box-shadow: none;
    color: var(--wine-dark);
}

.btnLight:hover {
    border-color: var(--paper-deep);
    background: var(--paper-deep);
    color: var(--wine-dark);
}

.eyebrow,
.sectionKicker,
.articleLabel {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--wine-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.banner {
    overflow: hidden;
    padding: calc(var(--header-height) + 54px) 0 76px;
    background:
        radial-gradient(circle at 12% 12%, rgba(195, 154, 98, 0.18), transparent 24%),
        var(--paper);
}

.heroGrid {
    display: grid;
    min-height: 660px;
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
    align-items: center;
    gap: 64px;
}

.words {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding-block: 30px;
}

.words::before {
    content: none;
}

.words h1,
.section01 h2,
.section02 h2,
.section03 h2,
.innerBanner h2,
.articleHeading h1,
.blogDetail h2,
.blogDetail h3,
.articleCta h2 {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.words h1 {
    max-width: 100%;
    font-size: clamp(44px, 4vw, 58px);
}

.words h1 .heroLine {
    display: block;
    white-space: nowrap;
}

.words h1 .heroAccent {
    color: var(--wine);
}

.words p {
    max-width: 650px;
    margin: 28px 0 32px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.72;
}

.heroMedia {
    position: relative;
    align-self: center;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 220px 28px 220px 28px;
    box-shadow: var(--shadow);
}

.heroMedia::before {
    position: absolute;
    z-index: 1;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

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

.section01 {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--wine-dark);
    color: var(--white);
    text-align: center;
}

.section01::before,
.section01::after {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.section01::before {
    top: -170px;
    left: -80px;
}

.section01::after {
    right: -100px;
    bottom: -210px;
}

.statement {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.section01 .sectionKicker {
    color: #e7c697;
}

.section01 h2 {
    margin: 0 auto 30px;
    font-size: clamp(40px, 5vw, 64px);
}

.section01 p {
    max-width: 830px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.84);
}

.section02 {
    padding: 126px 0;
}

.section02 .item {
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 88px;
}

.section02 .item + .item {
    margin-top: 130px;
}

.section02 .picRight figure {
    order: 2;
}

.section02 .picRight .txt {
    order: 1;
}

.section02 figure {
    position: relative;
}

.section02 figure::before {
    position: absolute;
    z-index: -1;
    width: 62%;
    height: 62%;
    border-radius: 50%;
    background: var(--paper-deep);
    content: "";
}

.section02 .picRight figure::before {
    top: -28px;
    right: -28px;
}

.section02 .picLeft figure::before {
    bottom: -28px;
    left: -28px;
    background: rgba(111, 129, 118, 0.19);
}

.section02 figure img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.section02 h2 {
    margin-bottom: 28px;
    font-size: clamp(38px, 4.3vw, 56px);
}

.section02 p {
    color: var(--ink-soft);
}

.section02 p + p {
    margin-top: 20px;
}

.section03 {
    padding: 0 0 120px;
}

.closingGrid {
    display: grid;
    overflow: hidden;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    border-radius: var(--radius-lg);
    background: var(--ink);
    box-shadow: var(--shadow);
    color: var(--white);
}

.section03 figure {
    width: calc(100% - 64px);
    aspect-ratio: 4 / 3;
    margin: 32px;
    overflow: hidden;
    border-radius: 24px;
}

.section03 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.section03 .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px;
}

.section03 .sectionKicker {
    color: #e7c697;
}

.section03 h2 {
    margin-bottom: 26px;
    font-size: clamp(40px, 4.6vw, 60px);
}

.section03 p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
}

.footer {
    padding: 74px 0 110px;
    border-top: 1px solid var(--line);
    background: var(--paper-deep);
}

.footerBrand {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.footerLogo {
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footerBrand p {
    color: var(--ink-soft);
    font-size: 15px;
}

.footLinks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    padding: 48px 0 30px;
}

.footLinks dl {
    min-width: 0;
}

.footLinks dt {
    margin-bottom: 15px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.footLinks dd {
    margin: 9px 0;
}

.footLinks a,
.simpleLinks a {
    color: var(--ink-soft);
    font-size: 15px;
}

.footLinks a:hover,
.simpleLinks a:hover {
    color: var(--wine-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.copyRight {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 14px;
    text-align: center;
}

.mobileFootNav {
    display: none;
}

.mask {
    visibility: hidden;
    position: fixed;
    z-index: 80;
    inset: 0;
    background: rgba(28, 41, 37, 0.58);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.mask.isOpen {
    visibility: visible;
    opacity: 1;
}

.innerBanner {
    padding: calc(var(--header-height) + 86px) 0 86px;
    background:
        linear-gradient(90deg, rgba(28, 41, 37, 0.96), rgba(28, 41, 37, 0.72)),
        url("blogPic01.jpg") center 44% / cover no-repeat;
    color: var(--white);
}

.innerBanner .sectionKicker {
    color: #e7c697;
}

.innerBanner h2 {
    max-width: 800px;
    font-size: clamp(46px, 6vw, 74px);
}

.blogBody {
    padding: 100px 0 126px;
}

.articleLayout {
    max-width: 980px;
}

.articleHeading {
    max-width: 850px;
    margin-bottom: 52px;
}

.articleLabel {
    margin-bottom: 20px;
}

.articleHeading h1 {
    font-size: clamp(48px, 6.5vw, 76px);
}

.articleHero {
    margin-bottom: 58px;
}

.articleHero img {
    width: 100%;
    aspect-ratio: 16 / 8;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.blogDetail {
    max-width: 760px;
    margin-inline: auto;
}

.blogDetail p {
    margin-bottom: 28px;
    color: #34423d;
    font-size: 19px;
    line-height: 1.82;
}

.blogDetail h2 {
    margin: 64px 0 24px;
    font-size: clamp(36px, 4.2vw, 50px);
}

.blogDetail h3 {
    margin: 58px 0 20px;
    font-size: clamp(30px, 3.5vw, 40px);
}

.blogDetail > p:first-child::first-letter {
    float: left;
    margin: 8px 10px 0 0;
    color: var(--wine-dark);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 0.72;
}

.blogDetail a {
    color: var(--wine-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.ulList,
.olList {
    margin: 14px 0 36px 28px;
    padding: 0;
}

.ulList li,
.olList li {
    margin: 10px 0;
    padding-left: 8px;
    color: var(--ink-soft);
}

.ulList li::marker,
.olList li::marker {
    color: var(--wine);
    font-weight: 800;
}

.articleCta {
    margin-top: 74px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--ink);
    color: var(--white);
}

.articleCta .sectionKicker {
    color: #e7c697;
}

.articleCta h2 {
    margin: 0 0 28px;
}

.footerSimple .simpleLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 38px 0;
}

@media (max-width: 1120px) {
    .topNav {
        gap: 16px;
        font-size: 14px;
    }

    .topNav a:nth-child(3) {
        display: none;
    }

    .heroGrid {
        grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
        gap: 38px;
    }

    .words h1 {
        font-size: clamp(42px, 4.3vw, 50px);
    }

    .section02 .item {
        gap: 56px;
    }

    .section03 .txt {
        padding: 54px;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 70px;
    }

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

    .headerInner {
        gap: 16px;
    }

    .logo a {
        font-size: 19px;
    }

    .logoMark {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .topBtns {
        margin-left: auto;
    }

    .topBtns a.signin {
        display: none;
    }

    .topBtns a {
        min-width: auto;
        padding: 9px 16px;
    }

    .menuBtn {
        display: grid;
        width: 44px;
        height: 44px;
        align-content: center;
        gap: 5px;
        padding: 10px;
        border: 0;
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
    }

    .menuBtn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--ink);
        transition: transform 180ms ease, opacity 180ms ease;
    }

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

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

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

    .topNav {
        visibility: hidden;
        position: fixed;
        z-index: 90;
        top: var(--header-height);
        right: 0;
        display: flex;
        width: min(86vw, 380px);
        height: calc(100dvh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 32px 26px;
        background: var(--paper);
        box-shadow: -20px 0 50px rgba(28, 41, 37, 0.16);
        opacity: 0;
        transform: translateX(100%);
        transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
    }

    .topNav.isOpen {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .topNav a,
    .topNav a:nth-child(3),
    .topNav .mobileShow {
        display: block;
        padding: 15px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
    }

    .topNav .navJoin {
        margin-top: 20px;
        border: 0;
        border-radius: 999px;
        background: var(--wine);
        color: var(--white);
        text-align: center;
    }

    .heroGrid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .words {
        padding-top: 22px;
    }

    .words h1 {
        max-width: 760px;
    }

    .heroMedia {
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 170px 26px 170px 26px;
    }

    .section02 .item {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .section02 .item + .item {
        margin-top: 104px;
    }

    .section02 .picRight figure,
    .section02 .picRight .txt {
        order: initial;
    }

    .section02 figure {
        max-width: 680px;
    }

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

    .section03 figure {
        width: calc(100% - 64px);
        min-height: 0;
        aspect-ratio: 16 / 10;
        margin: 32px;
    }

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

@media (max-width: 620px) {
    body {
        padding-bottom: 78px;
        font-size: 17px;
    }

    .pageWidth {
        width: min(100% - 28px, var(--page));
    }

    .topBtns {
        display: none;
    }

    .menuBtn {
        margin-left: auto;
    }

    .banner {
        padding: calc(var(--header-height) + 36px) 0 58px;
    }

    .words::before {
        margin-bottom: 22px;
    }

    .words h1 {
        font-size: clamp(40px, 12vw, 52px);
    }

    .words h1 .heroLine {
        display: inline;
        white-space: normal;
    }

    .words p {
        margin-top: 22px;
        font-size: 17px;
    }

    .btn {
        width: 100%;
    }

    .heroMedia {
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 110px 22px 110px 22px;
    }

    .heroMedia img {
        object-position: right center;
    }

    .section01 {
        padding: 84px 0;
    }

    .section01 h2 {
        font-size: 42px;
    }

    .section02 {
        padding: 88px 0;
    }

    .section02 .item + .item {
        margin-top: 82px;
        padding-top: 82px;
        border-top: 1px solid var(--line);
    }

    .section02 figure::before {
        display: none;
    }

    .section02 h2 {
        font-size: 39px;
    }

    .section03 {
        padding-bottom: 76px;
    }

    .closingGrid {
        border-radius: 24px;
    }

    .section03 figure {
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 10;
        margin: 0;
        border-radius: 0;
    }

    .section03 .txt {
        padding: 40px 28px;
    }

    .section03 h2 {
        font-size: 40px;
    }

    .footer {
        padding: 60px 0 46px;
    }

    .footerBrand {
        display: block;
    }

    .footerBrand p {
        margin-top: 8px;
    }

    .footLinks {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobileFootNav {
        position: fixed;
        z-index: 70;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 72px;
        grid-template-columns: repeat(3, 1fr) minmax(114px, 1.25fr);
        align-items: center;
        padding: 8px 12px;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -12px 30px rgba(28, 41, 37, 0.08);
        backdrop-filter: blur(14px);
    }

    .mobileFootNav a {
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        color: var(--ink-soft);
        font-size: 11px;
        line-height: 1.1;
    }

    .mobileFootNav i {
        display: block;
        width: 24px;
        height: 24px;
    }

    .mobileFootNav img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobileFootNav .join {
        min-height: 48px;
        border-radius: 999px;
        background: var(--wine);
        color: var(--white);
        font-size: 13px;
        font-weight: 800;
    }

    .innerBanner {
        padding: calc(var(--header-height) + 70px) 0 70px;
    }

    .innerBanner h2 {
        font-size: 48px;
    }

    .blogBody {
        padding: 70px 0 90px;
    }

    .articleHeading h1 {
        font-size: 46px;
    }

    .articleHero {
        margin-bottom: 44px;
    }

    .articleHero img {
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }

    .blogDetail p {
        font-size: 18px;
    }

    .blogDetail h2 {
        margin-top: 50px;
        font-size: 37px;
    }

    .blogDetail h3 {
        margin-top: 46px;
        font-size: 31px;
    }

    .articleCta {
        padding: 34px 24px;
        border-radius: 22px;
    }

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

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

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