:root {
    --site-background: #f4f0e8;
    --site-surface: #ece5d9;
    --site-text: #19261f;
    --site-brand: #d56e82;
    --site-accent: #d9e56d;
    --site-on-brand: #ffffff;
    --site-on-accent: #172019;
    --site-line: color-mix(in srgb, var(--site-text) 18%, transparent);
    --site-muted: color-mix(in srgb, var(--site-text) 64%, transparent);
    --site-serif: Georgia, "Times New Roman", "Noto Serif KR", serif;
    --site-sans: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
    --site-radius: 0px;
    font-family: var(--site-sans);
    color: var(--site-text);
    background: var(--site-background);
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.public-site {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--site-background);
    color: var(--site-text);
    -webkit-font-smoothing: antialiased;
}

.public-site a {
    color: inherit;
    text-decoration: none;
}

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

.public-site button,
.public-site input,
.public-site textarea,
.public-site select {
    font: inherit;
}

.public-site :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--site-accent) 60%, transparent);
    outline-offset: 3px;
}

.preview-ribbon {
    position: fixed;
    z-index: 100;
    right: -47px;
    bottom: 31px;
    width: 190px;
    padding: 7px 0;
    background: #111;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
    text-align: center;
    transform: rotate(-45deg);
}

.site-header {
    position: relative;
    z-index: 30;
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 15px clamp(24px, 5vw, 82px);
    border-bottom: 1px solid var(--site-line);
    background: var(--site-background);
}

.tracking-pixel-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.site-identity {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.site-identity img {
    width: auto;
    max-width: 150px;
    height: 48px;
    object-fit: contain;
}

.site-monogram {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--site-text);
    border-radius: 50%;
    font-family: var(--site-serif);
    font-size: 24px;
    font-style: italic;
}

.site-name {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.site-name strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.03em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-name small {
    margin-top: 2px;
    color: var(--site-muted);
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(19px, 2.5vw, 42px);
}

.site-nav a {
    position: relative;
    padding: 12px 0;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: -.01em;
}

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

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

.site-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--site-line);
    border-radius: 50%;
    background: transparent;
    color: var(--site-text);
}

.site-menu-toggle span {
    width: 16px;
    height: 1px;
    background: currentColor;
}

.site-flashes {
    position: fixed;
    z-index: 60;
    top: 110px;
    right: 24px;
    width: min(420px, calc(100vw - 48px));
}

.site-flash {
    margin-bottom: 10px;
    padding: 15px 18px;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0,0,0,.16);
    background: var(--site-text);
    color: var(--site-background);
    font-size: 12px;
}

.site-hero {
    position: relative;
    display: grid;
    min-height: min(860px, calc(100vh - 92px));
    border-bottom: 1px solid var(--site-line);
    grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(72px, 9vw, 150px) clamp(28px, 7vw, 110px);
}

.hero-eyebrow,
.hero-company {
    display: block;
    margin-bottom: 30px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-eyebrow {
    color: var(--site-brand);
}

.hero-company {
    color: var(--site-muted);
}

.hero-copy h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(64px, 7.2vw, 130px);
    font-weight: 760;
    letter-spacing: -.085em;
    line-height: .9;
    overflow-wrap: anywhere;
}

.page-about .hero-copy h1,
.page-history .hero-copy h1,
.page-portfolio .hero-copy h1,
.page-contact .hero-copy h1 {
    font-size: clamp(62px, 7vw, 120px);
}

.hero-en-name {
    display: block;
    margin-top: 18px;
    font-family: var(--site-serif);
    font-size: clamp(28px, 3vw, 52px);
    font-style: italic;
    letter-spacing: -.04em;
}

.hero-copy > p {
    max-width: 560px;
    margin: 34px 0 0;
    color: var(--site-muted);
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.85;
}

.hero-scroll {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 15px;
    margin-top: 48px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.hero-scroll i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--site-line);
    border-radius: 50%;
    font-size: 11px;
    font-style: normal;
    transition: background 160ms ease, color 160ms ease;
}

.hero-scroll:hover i {
    background: var(--site-brand);
    color: var(--site-on-brand);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--site-brand);
}

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

.hero-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, color-mix(in srgb, var(--site-accent) 40%, transparent) 0 13%, transparent 13.5%),
        linear-gradient(145deg, color-mix(in srgb, var(--site-brand) 86%, black), var(--site-brand));
    color: var(--site-on-brand);
}

.hero-placeholder::before,
.hero-placeholder::after {
    position: absolute;
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    border: 1px solid color-mix(in srgb, var(--site-on-brand) 24%, transparent);
    border-radius: 50%;
    content: "";
}

.hero-placeholder::after {
    width: min(31vw, 410px);
    height: min(31vw, 410px);
}

.hero-placeholder > span {
    position: relative;
    z-index: 2;
    font-family: var(--site-serif);
    font-size: clamp(160px, 23vw, 360px);
    font-style: italic;
    line-height: 1;
    opacity: .9;
}

.hero-placeholder > small {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    font-size: 8px;
    letter-spacing: .16em;
    line-height: 1.7;
    text-align: right;
}

.visual-caption {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: -72px;
    color: var(--site-on-brand);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .2em;
    opacity: .7;
    transform: rotate(90deg);
}

.story-section {
    display: grid;
    min-height: 720px;
    padding: clamp(90px, 11vw, 180px) clamp(24px, 6vw, 100px);
    border-bottom: 1px solid var(--site-line);
    grid-template-columns: minmax(150px, .5fr) minmax(0, 1.5fr);
}

.story-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-aside > span {
    color: var(--site-brand);
    font-family: var(--site-serif);
    font-size: 36px;
    font-style: italic;
}

.story-aside b {
    margin-top: 13px;
    font-size: 10px;
    letter-spacing: .1em;
}

.story-aside i {
    width: 1px;
    height: 150px;
    margin: 30px 0 0 13px;
    background: var(--site-line);
}

.story-section > .markdown-body {
    width: min(100%, 900px);
}

.markdown-body {
    color: var(--site-text);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.markdown-body h1 {
    margin: 0 0 55px;
    font-size: clamp(44px, 5.2vw, 82px);
    font-weight: 700;
    letter-spacing: -.07em;
    line-height: 1.07;
}

.markdown-body h2 {
    margin: 85px 0 28px;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 680;
    letter-spacing: -.055em;
    line-height: 1.15;
}

.markdown-body h3 {
    margin: 50px 0 18px;
    font-size: clamp(21px, 2vw, 30px);
    letter-spacing: -.04em;
}

.markdown-body p {
    max-width: 760px;
    margin: 0 0 28px;
}

.markdown-body strong {
    font-weight: 800;
}

.markdown-body a {
    color: var(--site-brand);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.markdown-body ul,
.markdown-body ol {
    margin: 24px 0 35px;
    padding-left: 1.3em;
}

.markdown-body li {
    margin: 9px 0;
    padding-left: 5px;
}

.markdown-body blockquote {
    max-width: 760px;
    margin: 55px 0;
    padding: 10px 0 10px 34px;
    border-left: 2px solid var(--site-brand);
    color: var(--site-muted);
    font-family: var(--site-serif);
    font-size: clamp(20px, 2.4vw, 32px);
    font-style: italic;
    line-height: 1.55;
}

.markdown-body blockquote p {
    margin: 0;
}

.markdown-body img {
    width: min(100%, 1100px);
    margin: 55px 0;
    border-radius: var(--site-radius);
}

.markdown-body hr {
    height: 1px;
    margin: 70px 0;
    border: 0;
    background: var(--site-line);
}

.markdown-body pre {
    max-width: 100%;
    overflow-x: auto;
    padding: 22px;
    border-radius: var(--site-radius);
    background: var(--site-text);
    color: var(--site-background);
}

.markdown-body code {
    padding: .13em .35em;
    border-radius: 3px;
    background: var(--site-surface);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: .86em;
}

.markdown-body pre code {
    padding: 0;
    background: transparent;
}

.home-principles {
    display: grid;
    padding: clamp(90px, 11vw, 170px) clamp(24px, 6vw, 100px);
    border-bottom: 1px solid var(--site-line);
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
}

.principle-heading > span,
.home-company-strip > span,
.contact-heading > span {
    color: var(--site-brand);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.principle-heading h2 {
    margin: 30px 0 0;
    font-size: clamp(44px, 5vw, 74px);
    letter-spacing: -.07em;
    line-height: 1.05;
}

.principle-grid {
    border-top: 1px solid var(--site-line);
}

.principle-grid article {
    display: grid;
    min-height: 150px;
    align-items: start;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--site-line);
    grid-template-columns: 40px 130px 1fr;
}

.principle-grid article > span {
    color: var(--site-brand);
    font-family: var(--site-serif);
    font-size: 14px;
    font-style: italic;
}

.principle-grid h3 {
    margin: 0;
    font-family: var(--site-serif);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
}

.principle-grid p {
    margin: 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.75;
}

.home-company-strip {
    display: grid;
    align-items: start;
    gap: 40px;
    padding: clamp(70px, 8vw, 120px) clamp(24px, 6vw, 100px);
    border-bottom: 1px solid var(--site-line);
    background: var(--site-surface);
    grid-template-columns: .5fr 1.3fr .4fr;
}

.home-company-strip > p {
    margin: 0;
    font-family: var(--site-serif);
    font-size: clamp(28px, 3.5vw, 50px);
    letter-spacing: -.04em;
    line-height: 1.45;
}

.home-company-strip > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--site-text);
    font-size: 10px;
    font-weight: 700;
}

.home-company-strip > a b {
    color: var(--site-brand);
    font-size: 16px;
}

.contact-section {
    display: grid;
    gap: clamp(50px, 8vw, 120px);
    padding: clamp(90px, 11vw, 170px) clamp(24px, 6vw, 100px);
    border-top: 1px solid var(--site-line);
    grid-template-columns: .7fr 1.3fr;
}

.contact-heading h2 {
    margin: 30px 0;
    font-size: clamp(46px, 5vw, 76px);
    letter-spacing: -.075em;
    line-height: 1.04;
}

.contact-heading p {
    max-width: 450px;
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.8;
}

.contact-form-wrap {
    min-width: 0;
}

.contact-form-error {
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--site-brand) 35%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--site-brand) 10%, var(--site-surface));
    color: var(--site-text);
    font-size: 12px;
    line-height: 1.65;
}

.contact-form {
    display: grid;
    gap: 24px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form .field-wide {
    grid-column: 1 / -1;
}

.contact-form label > span {
    font-size: 10px;
    font-weight: 750;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--site-line);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--site-text);
}

.contact-form input {
    height: 50px;
}

.contact-form textarea {
    min-height: 150px;
    padding: 14px 0;
    line-height: 1.75;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--site-brand);
}

.contact-form button {
    min-height: 58px;
    grid-column: 1 / -1;
    border: 0;
    border-radius: var(--site-radius);
    background: var(--site-brand);
    color: var(--site-on-brand);
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
}

.contact-form button span {
    margin-left: 12px;
}

.honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.contact-success {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-line);
    background: var(--site-surface);
    text-align: center;
}

.contact-success > span {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 50%;
    background: var(--site-brand);
    color: var(--site-on-brand);
}

.contact-success h3 {
    margin: 26px 0 10px;
    font-size: 23px;
}

.contact-success p {
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
}

.site-footer {
    padding: clamp(70px, 9vw, 140px) clamp(24px, 6vw, 100px) 30px;
    background: var(--site-text);
    color: var(--site-background);
}

.site-footer-lead {
    display: grid;
    align-items: start;
    gap: 50px;
    padding-bottom: clamp(70px, 8vw, 120px);
    border-bottom: 1px solid color-mix(in srgb, var(--site-background) 20%, transparent);
    grid-template-columns: .45fr 1.3fr .4fr;
}

.footer-index {
    color: var(--site-accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.site-footer-lead strong {
    max-width: 900px;
    font-size: clamp(38px, 5.5vw, 82px);
    letter-spacing: -.07em;
    line-height: 1.08;
}

.site-footer-lead > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 13px;
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    font-weight: 700;
}

.site-footer-lead > a span {
    color: var(--site-accent);
    font-size: 16px;
}

.site-footer-meta {
    display: grid;
    gap: 40px;
    padding: 50px 0;
    grid-template-columns: 1fr 1.4fr .8fr;
}

.site-footer-meta > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: color-mix(in srgb, var(--site-background) 60%, transparent);
    font-size: 10px;
    line-height: 1.6;
}

.site-footer-meta b {
    color: var(--site-background);
    font-size: 14px;
}

.site-footer-meta a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid color-mix(in srgb, var(--site-background) 20%, transparent);
    color: color-mix(in srgb, var(--site-background) 44%, transparent);
    font-size: 8px;
    letter-spacing: .08em;
}

/* 1. Curated Cellar — Ieumia-inspired editorial */
.theme-cellar .site-header {
    border-top: 5px solid var(--site-brand);
}

.theme-cellar .hero-copy h1::after {
    display: block;
    width: 80px;
    height: 6px;
    margin-top: 38px;
    background: var(--site-accent);
    content: "";
}

.theme-cellar .site-hero:nth-child(even) {
    background: var(--site-surface);
}

.theme-cellar .home-company-strip {
    background: var(--site-brand);
    color: var(--site-on-brand);
}

.theme-cellar .home-company-strip > span,
.theme-cellar .home-company-strip > a b {
    color: var(--site-accent);
}

.theme-cellar .home-company-strip > a {
    border-color: currentColor;
}

/* 2. Boardroom — structured corporate */
.theme-boardroom {
    --site-radius: 3px;
}

.theme-boardroom .site-header {
    min-height: 74px;
    border-bottom: 3px solid var(--site-brand);
}

.theme-boardroom .site-monogram {
    border-radius: 2px;
    background: var(--site-brand);
    color: var(--site-on-brand);
    font-family: var(--site-sans);
    font-style: normal;
}

.theme-boardroom .site-nav a {
    font-size: 10px;
    font-weight: 750;
}

.theme-boardroom .site-hero {
    min-height: 690px;
    padding: clamp(26px, 4vw, 62px);
    gap: clamp(26px, 4vw, 60px);
    background:
        linear-gradient(var(--site-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--site-line) 1px, transparent 1px);
    background-size: 8.333% 100%, 100% 100%;
    grid-template-columns: 1fr 1fr;
}

.theme-boardroom .hero-copy {
    padding: clamp(40px, 5vw, 80px);
    border: 1px solid var(--site-line);
    background: var(--site-surface);
}

.theme-boardroom .hero-copy h1 {
    font-size: clamp(52px, 6vw, 94px);
    font-weight: 780;
    letter-spacing: -.065em;
    line-height: .98;
}

.theme-boardroom .hero-en-name {
    font-family: var(--site-sans);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .02em;
}

.theme-boardroom .hero-visual {
    min-height: 570px;
}

.theme-boardroom .hero-placeholder::before,
.theme-boardroom .hero-placeholder::after {
    border-radius: 0;
}

.theme-boardroom .story-section {
    gap: 50px;
    grid-template-columns: 220px minmax(0, 1fr);
}

.theme-boardroom .story-aside {
    padding: 24px;
    border-top: 4px solid var(--site-brand);
    background: var(--site-surface);
}

.theme-boardroom .story-aside > span {
    font-family: var(--site-sans);
    font-size: 44px;
    font-style: normal;
    font-weight: 800;
}

.theme-boardroom .markdown-body h1,
.theme-boardroom .markdown-body h2 {
    font-family: var(--site-sans);
}

.theme-boardroom .principle-grid article {
    grid-template-columns: 50px 150px 1fr;
}

.theme-boardroom .principle-grid h3 {
    font-family: var(--site-sans);
    font-style: normal;
    font-weight: 750;
}

.theme-boardroom .home-company-strip {
    border-top: 8px solid var(--site-brand);
}

/* 3. Terroir Film — cinematic origin story */
.theme-terroir {
    --site-radius: 0px;
}

.theme-terroir .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border-color: rgba(255,255,255,.25);
    background: linear-gradient(rgba(0,0,0,.5), transparent);
    color: #fff;
}

.theme-terroir .site-monogram {
    border-color: rgba(255,255,255,.6);
}

.theme-terroir .site-name small,
.theme-terroir .site-nav a {
    color: rgba(255,255,255,.8);
}

.theme-terroir .site-hero {
    min-height: 100vh;
    display: block;
    background: var(--site-brand);
    color: #fff;
}

.theme-terroir .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.theme-terroir .hero-visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20,12,18,.82) 0, rgba(20,12,18,.44) 55%, rgba(20,12,18,.15)),
        linear-gradient(0deg, rgba(20,12,18,.65), transparent 50%);
    content: "";
    mix-blend-mode: multiply;
}

.theme-terroir .hero-placeholder {
    filter: grayscale(.85);
}

.theme-terroir .hero-copy {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    justify-content: flex-end;
    padding: 170px clamp(30px, 8vw, 130px) clamp(70px, 9vw, 140px);
}

.theme-terroir .hero-eyebrow,
.theme-terroir .hero-company {
    color: var(--site-accent);
}

.theme-terroir .hero-copy h1 {
    max-width: 1050px;
    color: #fff;
    font-family: var(--site-serif);
    font-size: clamp(68px, 9vw, 155px);
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: .92;
}

.theme-terroir .hero-en-name {
    color: rgba(255,255,255,.7);
}

.theme-terroir .hero-copy > p {
    color: rgba(255,255,255,.68);
}

.theme-terroir .hero-scroll i {
    border-color: rgba(255,255,255,.3);
}

.theme-terroir .visual-caption {
    color: #fff;
}

.theme-terroir .story-section {
    position: relative;
    grid-template-columns: .42fr 1.25fr;
}

.theme-terroir .story-section::before {
    position: absolute;
    top: 0;
    left: 9%;
    width: 1px;
    height: 100%;
    background: var(--site-line);
    content: "";
}

.theme-terroir .story-aside > span,
.theme-terroir .markdown-body h1,
.theme-terroir .markdown-body h2,
.theme-terroir .principle-heading h2,
.theme-terroir .home-company-strip p {
    font-family: var(--site-serif);
    font-weight: 400;
}

.theme-terroir .markdown-body img {
    filter: saturate(.65) contrast(1.05);
}

.theme-terroir .home-company-strip {
    background: var(--site-brand);
    color: var(--site-on-brand);
}

.theme-terroir .home-company-strip > span,
.theme-terroir .home-company-strip > a b {
    color: var(--site-accent);
}

/* 4. Poetic Salon — soft lifestyle */
.theme-salon {
    --site-radius: 200px 200px 12px 12px;
}

.theme-salon .site-header {
    min-height: 105px;
    border-bottom: 0;
}

.theme-salon .site-identity {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.theme-salon .site-monogram {
    width: 38px;
    height: 38px;
    border-color: var(--site-brand);
    color: var(--site-brand);
}

.theme-salon .site-hero {
    min-height: 820px;
    padding: 25px clamp(28px, 7vw, 115px) 95px;
    border-bottom: 0;
    gap: clamp(30px, 7vw, 100px);
    grid-template-columns: .9fr 1.1fr;
}

.theme-salon .hero-copy {
    padding: 70px 0;
}

.theme-salon .hero-copy h1,
.theme-salon .hero-en-name {
    font-family: var(--site-serif);
    font-weight: 400;
}

.theme-salon .hero-copy h1 {
    font-size: clamp(60px, 7.2vw, 120px);
    line-height: .95;
}

.theme-salon .hero-visual {
    min-height: 680px;
    overflow: visible;
    border-radius: 52% 52% 14px 14px;
    background: var(--site-surface);
}

.theme-salon .hero-visual > img,
.theme-salon .hero-placeholder {
    overflow: hidden;
    border-radius: inherit;
}

.theme-salon .hero-visual::before {
    position: absolute;
    z-index: 3;
    right: -9%;
    bottom: -7%;
    width: 34%;
    aspect-ratio: 1;
    border: 10px solid var(--site-background);
    border-radius: 50%;
    background: var(--site-accent);
    content: "";
    opacity: .72;
}

.theme-salon .visual-caption {
    right: auto;
    bottom: -45px;
    left: 0;
    top: auto;
    color: var(--site-muted);
    transform: none;
}

.theme-salon .story-section {
    margin: 0 clamp(20px, 5vw, 80px);
    border-top: 1px solid var(--site-line);
    background: var(--site-surface);
}

.theme-salon .markdown-body h1,
.theme-salon .markdown-body h2,
.theme-salon .markdown-body blockquote,
.theme-salon .principle-heading h2,
.theme-salon .home-company-strip p,
.theme-salon .contact-heading h2,
.theme-salon .site-footer-lead strong {
    font-family: var(--site-serif);
    font-weight: 400;
}

.theme-salon .markdown-body img {
    border-radius: 48% 48% 8px 8px;
}

.theme-salon .principle-grid article {
    border-radius: 100px;
}

.theme-salon .home-company-strip {
    margin: 0 clamp(20px, 5vw, 80px) 80px;
    border: 0;
    border-radius: 180px;
}

.theme-salon .contact-form button {
    border-radius: 999px;
}

/* 5. Gallery Poster — expressive art */
.theme-poster {
    --site-radius: 0px;
}

.theme-poster .site-header {
    min-height: 78px;
    border: 4px solid var(--site-text);
    background: var(--site-accent);
}

.theme-poster .site-monogram {
    border: 3px solid currentColor;
    border-radius: 0;
    background: var(--site-background);
    font-family: var(--site-sans);
    font-style: normal;
    font-weight: 900;
}

.theme-poster .site-name strong,
.theme-poster .site-nav a {
    font-weight: 900;
    text-transform: uppercase;
}

.theme-poster .site-hero {
    min-height: 760px;
    border-right: 4px solid var(--site-text);
    border-bottom: 4px solid var(--site-text);
    border-left: 4px solid var(--site-text);
    grid-template-columns: 1.25fr .75fr;
}

.theme-poster .hero-copy {
    overflow: hidden;
    padding: clamp(50px, 7vw, 100px);
}

.theme-poster .hero-copy::before {
    position: absolute;
    right: -30px;
    bottom: 40px;
    width: 220px;
    height: 50px;
    background: var(--site-accent);
    content: "SELECTED / 2026";
    color: var(--site-on-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 50px;
    text-align: center;
    transform: rotate(-8deg);
}

.theme-poster .hero-copy h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(75px, 10vw, 170px);
    font-weight: 950;
    letter-spacing: -.1em;
    line-height: .73;
    text-transform: uppercase;
}

.theme-poster .hero-en-name {
    display: inline-block;
    padding: 8px 13px;
    background: var(--site-brand);
    color: var(--site-on-brand);
    font-family: var(--site-sans);
    font-size: clamp(18px, 2vw, 32px);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -.03em;
    transform: rotate(-2deg);
}

.theme-poster .hero-visual {
    margin: 35px;
    border: 4px solid var(--site-text);
    box-shadow: 17px 17px 0 var(--site-text);
    transform: rotate(2deg);
}

.theme-poster .hero-placeholder {
    background: var(--site-brand);
}

.theme-poster .visual-caption {
    display: none;
}

.theme-poster .story-section {
    border-right: 4px solid var(--site-text);
    border-bottom: 4px solid var(--site-text);
    border-left: 4px solid var(--site-text);
    grid-template-columns: 210px 1fr;
}

.theme-poster .story-aside > span {
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    border: 4px solid var(--site-text);
    border-radius: 0;
    background: var(--site-accent);
    color: var(--site-on-accent);
    font-family: var(--site-sans);
    font-size: 60px;
    font-style: normal;
    font-weight: 950;
    transform: rotate(-5deg);
}

.theme-poster .markdown-body h1,
.theme-poster .markdown-body h2,
.theme-poster .principle-heading h2,
.theme-poster .contact-heading h2,
.theme-poster .site-footer-lead strong {
    font-weight: 950;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.theme-poster .markdown-body blockquote {
    padding: 30px;
    border: 4px solid var(--site-text);
    background: var(--site-accent);
    color: var(--site-on-accent);
    font-family: var(--site-sans);
    font-weight: 850;
    font-style: normal;
    transform: rotate(-1deg);
}

.theme-poster .home-principles,
.theme-poster .home-company-strip,
.theme-poster .contact-section {
    border-right: 4px solid var(--site-text);
    border-bottom: 4px solid var(--site-text);
    border-left: 4px solid var(--site-text);
}

.theme-poster .principle-grid article {
    border: 3px solid var(--site-text);
    border-bottom: 0;
    padding: 25px;
}

.theme-poster .principle-grid article:last-child {
    border-bottom: 3px solid var(--site-text);
}

.theme-poster .principle-grid h3 {
    font-family: var(--site-sans);
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.theme-poster .home-company-strip {
    background: var(--site-brand);
    color: var(--site-on-brand);
}

.theme-poster .site-footer {
    border: 4px solid var(--site-text);
}

/* 6. Nocturne — dark luxury */
.theme-nocturne {
    --site-radius: 2px;
}

.theme-nocturne .site-header {
    border-bottom-color: color-mix(in srgb, var(--site-text) 16%, transparent);
    background: color-mix(in srgb, var(--site-background) 94%, transparent);
    backdrop-filter: blur(18px);
}

.theme-nocturne .site-monogram {
    border-color: var(--site-accent);
    color: var(--site-accent);
}

.theme-nocturne .site-hero {
    background:
        radial-gradient(circle at 68% 45%, color-mix(in srgb, var(--site-brand) 24%, transparent), transparent 32%),
        var(--site-background);
}

.theme-nocturne .hero-copy h1,
.theme-nocturne .hero-en-name,
.theme-nocturne .markdown-body h1,
.theme-nocturne .markdown-body h2,
.theme-nocturne .principle-heading h2,
.theme-nocturne .home-company-strip p,
.theme-nocturne .site-footer-lead strong {
    font-family: var(--site-serif);
    font-weight: 400;
}

.theme-nocturne .hero-copy h1 {
    text-shadow: 0 8px 60px color-mix(in srgb, var(--site-brand) 35%, transparent);
}

.theme-nocturne .hero-visual {
    margin: 55px;
    border: 1px solid color-mix(in srgb, var(--site-accent) 38%, transparent);
    background: linear-gradient(145deg, var(--site-surface), var(--site-background));
    box-shadow: 0 35px 100px rgba(0,0,0,.35);
}

.theme-nocturne .hero-visual::after {
    position: absolute;
    inset: 12px;
    border: 1px solid color-mix(in srgb, var(--site-accent) 16%, transparent);
    content: "";
    pointer-events: none;
}

.theme-nocturne .hero-placeholder {
    background:
        radial-gradient(ellipse at center, color-mix(in srgb, var(--site-brand) 42%, transparent), transparent 44%),
        linear-gradient(180deg, var(--site-surface), var(--site-background));
}

.theme-nocturne .story-section {
    background: linear-gradient(90deg, var(--site-background), var(--site-surface), var(--site-background));
}

.theme-nocturne .story-aside > span,
.theme-nocturne .hero-eyebrow,
.theme-nocturne .principle-heading > span,
.theme-nocturne .home-company-strip > span {
    color: var(--site-accent);
}

.theme-nocturne .markdown-body blockquote {
    border-color: var(--site-accent);
    color: var(--site-accent);
}

.theme-nocturne .home-company-strip {
    background: var(--site-surface);
}

.theme-nocturne .site-footer {
    border-top: 1px solid color-mix(in srgb, var(--site-accent) 28%, transparent);
    background: color-mix(in srgb, var(--site-background) 84%, black);
}

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

    .hero-visual {
        min-height: 650px;
    }

    .story-section,
    .home-principles,
    .contact-section {
        gap: 60px;
        grid-template-columns: 1fr;
    }

    .story-aside {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .story-aside b {
        margin: 0;
    }

    .story-aside i {
        width: 100px;
        height: 1px;
        margin: 0;
    }

    .home-company-strip,
    .site-footer-lead {
        grid-template-columns: 1fr;
    }

    .theme-boardroom .site-hero {
        grid-template-columns: 1fr;
    }

    .theme-boardroom .story-section {
        grid-template-columns: 1fr;
    }

    .theme-terroir .story-section {
        grid-template-columns: 1fr;
    }

    .theme-salon .site-hero {
        grid-template-columns: 1fr;
    }

    .theme-salon .hero-visual {
        min-height: 720px;
    }

    .theme-poster .site-hero {
        grid-template-columns: 1fr;
    }

    .theme-poster .story-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .site-header {
        min-height: 76px;
        padding: 12px 18px;
    }

    .site-identity img {
        max-width: 110px;
        height: 40px;
    }

    .site-name small {
        display: none;
    }

    .site-menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        z-index: 40;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 18px 20px;
        border-bottom: 1px solid var(--site-line);
        background: var(--site-background);
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

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

    .site-nav a {
        padding: 14px 5px;
        border-bottom: 1px solid var(--site-line);
        font-size: 12px;
    }

    .site-hero {
        min-height: auto;
    }

    .hero-copy {
        min-height: 560px;
        padding: 95px 22px 70px;
    }

    .hero-copy h1,
    .page-about .hero-copy h1,
    .page-history .hero-copy h1,
    .page-portfolio .hero-copy h1,
    .page-contact .hero-copy h1 {
        font-size: clamp(57px, 18vw, 86px);
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-placeholder > span {
        font-size: 190px;
    }

    .story-section,
    .home-principles,
    .contact-section {
        min-height: auto;
        padding: 80px 22px;
    }

    .markdown-body h1 {
        font-size: 42px;
    }

    .markdown-body h2 {
        margin-top: 60px;
    }

    .principle-grid article {
        gap: 10px;
        grid-template-columns: 35px 1fr;
    }

    .principle-grid p {
        grid-column: 2;
    }

    .home-company-strip {
        padding: 70px 22px;
    }

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

    .contact-form .field-wide,
    .contact-form button {
        grid-column: auto;
    }

    .site-footer {
        padding: 75px 22px 25px;
    }

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

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .theme-terroir .site-header {
        min-height: 76px;
    }

    .theme-terroir .site-nav {
        background: color-mix(in srgb, var(--site-background) 96%, black);
        color: var(--site-text);
    }

    .theme-terroir .site-menu-toggle {
        border-color: rgba(255,255,255,.4);
        color: #fff;
    }

    .theme-terroir .hero-copy {
        min-height: 100vh;
        padding: 150px 22px 70px;
    }

    .theme-terroir .hero-copy h1 {
        font-size: clamp(64px, 20vw, 100px);
    }

    .theme-salon .site-header {
        min-height: 84px;
    }

    .theme-salon .site-identity {
        flex-direction: row;
        align-items: center;
    }

    .theme-salon .site-hero {
        padding: 0 22px 80px;
    }

    .theme-salon .hero-copy {
        min-height: 500px;
        padding: 80px 0 40px;
    }

    .theme-salon .hero-visual {
        min-height: 540px;
    }

    .theme-salon .story-section,
    .theme-salon .home-company-strip {
        margin-right: 12px;
        margin-left: 12px;
    }

    .theme-salon .home-company-strip {
        border-radius: 70px;
    }

    .theme-poster .site-header {
        border-width: 3px;
    }

    .theme-poster .site-hero,
    .theme-poster .story-section,
    .theme-poster .home-principles,
    .theme-poster .home-company-strip,
    .theme-poster .contact-section {
        border-right-width: 3px;
        border-bottom-width: 3px;
        border-left-width: 3px;
    }

    .theme-poster .hero-copy {
        min-height: 600px;
        padding: 70px 18px;
    }

    .theme-poster .hero-copy h1 {
        font-size: clamp(70px, 24vw, 110px);
    }

    .theme-poster .hero-visual {
        min-height: 500px;
        margin: 22px;
        border-width: 3px;
        box-shadow: 10px 10px 0 var(--site-text);
    }

    .theme-nocturne .hero-visual {
        min-height: 510px;
        margin: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
