@charset "UTF-8";

:root {
    --ink: #3d3935;
    --muted: #756e67;
    --brown: #655447;
    --brown-dark: #453a32;
    --greige: #b8aea3;
    --sand: #e8e0d6;
    --ivory: #f7f3ed;
    --paper: #fcfaf6;
    --white: #fff;
    --line: #dcd3c9;
    --serif: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
    --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.8; }
img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    width: min(1440px, 100%);
    height: 104px;
    padding: 0 clamp(24px, 5vw, 76px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
}
.wordmark { display: inline-flex; flex-direction: column; text-decoration: none; font-family: Georgia, serif; font-size: 2rem; line-height: 1; letter-spacing: .05em; }
.wordmark span, .wordmark small { margin-top: 8px; font-family: var(--sans); font-size: .55rem; letter-spacing: .24em; }
.site-nav { margin-left: auto; display: flex; gap: clamp(18px, 3vw, 42px); }
.site-nav a { position: relative; font-size: .78rem; letter-spacing: .12em; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .25s; }
.site-nav a:hover::after { right: 0; }
.header-reserve { margin-left: 10px; min-width: 126px; padding: 12px 22px; text-align: center; color: var(--white); background: var(--brown); border-radius: 999px; font-size: .8rem; letter-spacing: .14em; text-decoration: none; }

.hero { position: relative; min-height: 780px; height: 100svh; max-height: 980px; display: grid; grid-template-columns: minmax(360px, 45%) 1fr; padding: 104px clamp(22px, 5vw, 76px) 46px; background: var(--ivory); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 34vw; height: 34vw; border: 1px solid #d7cdc133; border-radius: 50%; left: -15vw; bottom: -13vw; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 600px; padding: 34px clamp(10px, 3vw, 46px) 60px 0; }
.eyebrow { margin: 0 0 22px; color: #8a7c70; font-size: .68rem; font-weight: 700; letter-spacing: .28em; }
.hero h1, .section h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: .08em; line-height: 1.5; }
.hero h1 { font-size: clamp(2.8rem, 5.2vw, 5.4rem); }
.hero h1 span { display: block; }
.hero-lead { margin: 32px 0 0; color: var(--muted); font-family: var(--serif); font-size: clamp(.96rem, 1.2vw, 1.1rem); line-height: 2.2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; min-width: 210px; padding: 15px 22px; border: 1px solid var(--brown); text-decoration: none; font-size: .84rem; letter-spacing: .08em; transition: .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 24px #493b3020; }
.button-primary { color: var(--white); background: var(--brown); }
.button-ghost { background: transparent; }
.hero-info { display: flex; gap: 32px; margin: 42px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-info div { min-width: 135px; }
.hero-info dt { color: #97897c; font-size: .6rem; letter-spacing: .2em; }
.hero-info dd { margin: 3px 0 0; font-size: .78rem; }
.hero-image-wrap { position: relative; min-height: 540px; overflow: hidden; }
.hero-image { height: 100%; object-fit: cover; object-position: right center; filter: saturate(.78) contrast(.95); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, #3d332719 0%, transparent 45%, #fff3 100%); pointer-events: none; }
.hero-image-caption { position: absolute; z-index: 2; right: 18px; bottom: 12px; margin: 0; color: #fff; font-family: Georgia, serif; font-size: .7rem; font-style: italic; letter-spacing: .12em; text-shadow: 0 1px 8px #0008; }
.scroll-hint { position: absolute; z-index: 3; left: clamp(22px, 5vw, 76px); bottom: 26px; display: flex; align-items: center; gap: 14px; color: #83776d; font-size: .55rem; letter-spacing: .22em; text-decoration: none; }
.scroll-hint i { display: block; width: 48px; height: 1px; background: #998d82; }

.section { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: clamp(88px, 11vw, 150px) 0; }
.section-heading h2 { font-size: clamp(2rem, 3.7vw, 3.5rem); }
.section-heading > p:not(.eyebrow), .split-heading > p { max-width: 650px; margin: 30px auto 0; color: var(--muted); line-height: 2.1; }
.section-heading-center { text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; background: var(--line); border: 1px solid var(--line); }
.value-card { position: relative; min-height: 285px; padding: 40px; background: var(--paper); }
.value-number { color: #a99d91; font-family: Georgia, serif; font-size: .75rem; }
.value-card h3 { margin: 38px 0 18px; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: .06em; }
.value-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.menu-section { width: 100%; padding-left: max(22px, calc((100vw - 1180px) / 2)); padding-right: max(22px, calc((100vw - 1180px) / 2)); background: #e9e2d9; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.split-heading > p { margin: 0; }
.menu-portal { min-height: 150px; margin-top: 64px; padding: 30px clamp(24px, 4vw, 48px); display: flex; align-items: center; gap: 30px; color: inherit; background: #f7f3ed; border: 1px solid #c9beb2; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.menu-portal:hover { transform: translateY(-3px); background: #fcfaf6; box-shadow: 0 16px 36px #493b3016; }
.menu-portal-copy { min-width: 0; display: flex; flex-direction: column; }
.menu-portal-copy small { color: #8a7c70; font-size: .6rem; font-weight: 700; letter-spacing: .24em; }
.menu-portal-copy strong { margin-top: 7px; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.8rem); font-weight: 500; letter-spacing: .08em; }
.menu-portal-copy > span { margin-top: 5px; color: var(--muted); font-size: .76rem; }
.menu-portal > b { width: 52px; height: 52px; margin-left: auto; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--brown); border-radius: 50%; font-size: 1rem; font-weight: 400; }
.section-action { margin: 42px 0 0; text-align: right; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .82rem; text-decoration: none; }

.story-section { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.story-image { height: 680px; }
.story-image img { object-position: 42% 22%; }
.image-frame { position: relative; overflow: hidden; background: #ded7cd; }
.image-frame img { height: 100%; object-fit: cover; filter: saturate(.74) contrast(.96) sepia(.06); transition: transform .7s ease; }
.image-frame:hover img { transform: scale(1.018); }
.story-copy h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.story-copy > p:not(.eyebrow) { margin: 30px 0 0; color: var(--muted); }
.signature { display: block; margin-top: 40px; color: #7c6d61; font-family: Georgia, serif; font-size: 1.8rem; font-style: italic; }

.styles-section { width: 100%; padding-left: max(22px, calc((100vw - 1180px) / 2)); padding-right: max(22px, calc((100vw - 1180px) / 2)); background: #f1ece5; }
.styles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 38px 18px; margin-top: 68px; }
.style-card { margin: 0; }
.style-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #d8d0c7; }
.style-photo img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(.98); transition: transform .5s ease, filter .5s ease; }
.style-card:hover img { transform: scale(1.035); filter: saturate(.98) contrast(1); }
.style-photo span { position: absolute; left: 10px; bottom: 8px; color: #fff; font-family: Georgia, serif; font-size: .65rem; letter-spacing: .12em; text-shadow: 0 1px 7px #000b; }
.style-card figcaption { margin-top: 13px; font-family: var(--serif); font-size: .84rem; line-height: 1.5; }

.stylist-section { min-height: 750px; display: grid; grid-template-columns: .82fr 1.18fr; background: #d8d0c7; }
.stylist-copy { align-self: center; max-width: 620px; padding: 80px clamp(36px, 8vw, 130px); }
.stylist-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 500; letter-spacing: .1em; }
.stylist-role { margin: 10px 0 38px !important; color: #88796d !important; font-family: Georgia, serif; font-size: .7rem !important; letter-spacing: .2em; }
.stylist-copy > p:not(.eyebrow):not(.stylist-role) { margin: 22px 0 0; color: var(--muted); }
.stylist-copy .text-link { margin-top: 38px; }
.stylist-photo { min-height: 750px; margin: 0; }
.stylist-photo img { object-position: center 28%; }

.space-section { padding-top: 40px; }
.space-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 520px; gap: 18px; margin-top: 60px; }
.space-grid figure { margin: 0; }
.space-grid figcaption { position: absolute; left: 20px; bottom: 14px; z-index: 2; color: #fff; font-size: .58rem; letter-spacing: .2em; text-shadow: 0 2px 8px #000a; }
.photo-crop-top img { object-position: center 18%; transform: scale(1.07); }
.photo-crop-top:hover img { transform: scale(1.09); }

.access-section { display: grid; grid-template-columns: 1.05fr .95fr; width: 100%; padding: 0; background: #ddd5cc; }
.access-photo { min-height: 610px; }
.access-photo img { object-position: center 44%; }
.access-copy { align-self: center; max-width: 540px; padding: 70px clamp(34px, 7vw, 100px); }
.access-copy h2 { font-family: Georgia, serif; font-size: 3rem; letter-spacing: .08em; }
.access-list { margin: 36px 0; }
.access-list div { display: grid; grid-template-columns: 90px 1fr; padding: 18px 0; border-top: 1px solid #c4b9ae; }
.access-list div:last-child { border-bottom: 1px solid #c4b9ae; }
.access-list dt { color: #786d63; font-size: .75rem; }
.access-list dd { margin: 0; font-size: .9rem; }
.access-list small { color: var(--muted); }

.button-light { color: var(--brown-dark); background: #f6f1ea; border-color: #f6f1ea; }

.site-footer { padding: 70px max(22px, calc((100vw - 1180px) / 2)) 28px; background: #f0eae3; }
.footer-brand { display: flex; justify-content: space-between; align-items: end; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand p { margin: 0; color: var(--muted); font-family: var(--serif); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 15px 30px; padding: 28px 0; }
.site-footer nav a { color: var(--muted); font-size: .72rem; text-decoration: none; }
.copyright { margin: 0; color: #9a9087; font-size: .62rem; letter-spacing: .1em; }
.mobile-reserve { display: none; }

@media (max-width: 920px) {
    .site-header { position: relative; height: 78px; padding: 0 22px; background: var(--ivory); }
    .site-nav { display: none; }
    .header-reserve { margin-left: auto; min-width: 104px; padding: 10px 15px; }
    .hero { height: auto; min-height: 0; grid-template-columns: 1fr; padding: 0 0 70px; }
    .hero-copy { order: 2; padding: 48px 24px 0; }
    .hero-image-wrap { order: 1; min-height: 0; height: min(78vw, 560px); }
    .hero-image { object-position: 52% 46%; }
    .scroll-hint { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { min-height: auto; }
    .split-heading, .story-section, .access-section, .stylist-section { grid-template-columns: 1fr; }
    .split-heading { gap: 30px; }
    .story-image { height: min(115vw, 650px); }
    .styles-grid { grid-template-columns: repeat(3, 1fr); }
    .stylist-copy { order: 2; max-width: none; }
    .stylist-photo { order: 1; min-height: 680px; height: 82vw; }
    .access-photo { min-height: 430px; }
    .access-copy { max-width: none; }
}

@media (max-width: 620px) {
    body { padding-bottom: 66px; }
    .wordmark { font-size: 1.65rem; }
    .header-reserve { display: none; }
    .hero-copy { padding-top: 40px; }
    .hero h1 { font-size: clamp(2.35rem, 11.5vw, 3.5rem); letter-spacing: .06em; }
    .hero h1 span { white-space: nowrap; }
    .hero-lead br { display: none; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .hero-info { display: grid; gap: 14px; }
    .hero-info div { display: grid; grid-template-columns: 70px 1fr; }
    .section { width: min(100% - 36px, 1180px); padding: 86px 0; }
    .section-heading > p:not(.eyebrow) br { display: none; }
    .values-grid { margin-top: 44px; }
    .value-card { padding: 32px 26px; }
    .menu-section { width: 100%; padding-left: 18px; padding-right: 18px; }
    .menu-portal { min-height: 0; margin-top: 42px; padding: 25px 22px; }
    .menu-portal-copy > span { max-width: 240px; }
    .story-section { gap: 46px; }
    .story-image { height: 112vw; }
    .styles-section { width: 100%; padding-left: 18px; padding-right: 0; overflow: hidden; }
    .styles-grid { display: flex; gap: 12px; margin-top: 42px; padding: 0 18px 18px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
    .style-card { flex: 0 0 56vw; scroll-snap-align: start; }
    .stylist-section { min-height: 0; }
    .stylist-photo { min-height: 0; height: 132vw; }
    .stylist-copy { padding: 58px 24px 72px; }
    .space-section { padding-top: 10px; }
    .space-grid { grid-template-columns: 1fr; grid-template-rows: repeat(2, 78vw); gap: 10px; }
    .access-photo { min-height: 82vw; }
    .access-copy { padding: 58px 24px 70px; }
    .footer-brand { display: block; }
    .footer-brand p { margin-top: 18px; }
    .site-footer nav { display: grid; grid-template-columns: repeat(2, 1fr); }
    .mobile-reserve { position: fixed; z-index: 50; left: 10px; right: 10px; bottom: 10px; height: 56px; display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; background: #5c4b3eeb; border: 1px solid #ffffff38; border-radius: 7px; box-shadow: 0 8px 30px #31271f42; backdrop-filter: blur(8px); font-weight: 700; letter-spacing: .08em; text-decoration: none; }
    .mobile-reserve span { font-size: .68rem; font-weight: 500; }
    .mobile-reserve b { position: absolute; right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
