/* gpt-style.css — GPT版のビジュアルトーンに寄せた新デザイン用スタイル */

:root {
	--gold: #cb9738;
	--gold-light: #e4bf5f;
	--cream: #f5f0e6;
	--dark: #121011;
	--dark2: #2b2622;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); }

/* ============ NAV ============ */
.gpt-nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: linear-gradient(to bottom, rgba(8,8,7,.55), rgba(8,8,7,0));
	padding: 48px 0 22px;
	border-bottom: none;
}
.gpt-nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gpt-nav .logo {
	color: var(--gold-light);
	font-family: 'Libre Baskerville', serif;
	font-size: .78em;
	letter-spacing: .12em;
	line-height: 1.4;
}
.gpt-nav .logo .sub {
	display: block;
	font-size: .72em;
	color: rgba(245,240,230,.5);
	letter-spacing: .18em;
	margin-top: 2px;
}
.gpt-nav .links {
	display: flex;
	align-items: center;
	gap: 34px;
}
.gpt-nav .links a {
	color: rgba(245,240,230,.85);
	text-decoration: none;
	font-size: .78em;
	letter-spacing: .1em;
}
.gpt-nav .links .apply {
	border: 1px solid var(--gold);
	color: var(--gold-light);
	padding: 9px 22px;
	letter-spacing: .12em;
}
.logo-img {
	height: 68px;
	width: auto;
	display: block;
}
@media (max-width: 767px) {
	.gpt-nav .links a:not(.apply) { display: none; }
	.gpt-nav { padding: 24px 0; }
	.logo-img { height: 40px; }
}

/* ============ HERO ============ */
.gpt-hero {
	position: relative;
	overflow: hidden;
	padding: 180px 0 130px;
	color: #fff;
}
.gpt-hero .hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.gpt-hero .hero-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: heroFade 14s infinite;
}
.gpt-hero .hero-media img:nth-child(1) { animation-delay: 0s; }
.gpt-hero .hero-media img:nth-child(2) { animation-delay: 7s; }
.gpt-hero .hero-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(8,8,7,.88) 0%, rgba(8,8,7,.58) 48%, rgba(8,8,7,.12) 100%), linear-gradient(rgba(0,0,0,0) 50%, rgba(10,10,8,.7));
}
.gpt-hero .container {
	position: relative;
	z-index: 2;
}
@keyframes heroFade {
	0% { opacity: 1; }
	46% { opacity: 1; }
	50% { opacity: 0; }
	96% { opacity: 0; }
	100% { opacity: 1; }
}
.gpt-hero .eyebrow {
	color: var(--gold-light);
	font-size: .85em;
	letter-spacing: .2em;
	margin-bottom: 22px;
}
.gpt-hero .jp-sub {
	font-size: 1.25em;
	color: rgba(255,255,255,.85);
	margin-bottom: 10px;
	letter-spacing: .04em;
}
.gpt-hero h1 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 3.8em;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 26px;
	text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.gpt-hero .lead {
	max-width: 600px;
	font-size: 1.2em;
	line-height: 2;
	color: rgba(255,255,255,.88);
	margin-bottom: 40px;
}
.gpt-hero .cta-row {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.gpt-hero .btn-gold {
	background: var(--gold);
	color: #fff;
	padding: 15px 34px;
	text-decoration: none;
	font-size: .9em;
	letter-spacing: .06em;
}
.gpt-hero .btn-text {
	color: #fff;
	text-decoration: none;
	font-size: .9em;
	letter-spacing: .04em;
	border-bottom: 1px solid rgba(255,255,255,.5);
	padding-bottom: 3px;
}
.gpt-hero .badge-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: -40px;
}
.gpt-hero .limited-badge {
	width: 132px;
	height: 132px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	box-shadow: 0 0 0 5px rgba(228,191,95,.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--gold-light);
	font-family: 'Libre Baskerville', serif;
}
.gpt-hero .limited-badge .l1 { font-size: .62em; letter-spacing: .15em; }
.gpt-hero .limited-badge .l2 { font-size: 1.7em; font-weight: 700; line-height: 1.1; margin: 4px 0; }
.gpt-hero .limited-badge .l3 { font-size: .55em; letter-spacing: .1em; color: rgba(245,240,230,.7); }
@media (max-width: 767px) {
	.gpt-hero { padding: 140px 0 80px; }
	.gpt-hero h1 { font-size: 1.9em; }
	.gpt-hero .badge-wrap { justify-content: center; margin-top: 30px; }
}

/* ============ ART OF AGING ============ */
.section-aoa {
	background: var(--cream);
	padding: 100px 0;
	text-align: center;
}
.section-aoa .container.d-lg-flex {
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.section-aoa .eyebrow {
	color: var(--gold);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 18px;
	text-align: center;
}
.section-aoa h2 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 2.1em;
	font-weight: 800;
	line-height: 1.5;
	color: #2a2620;
	max-width: 420px;
	margin: 0 auto;
	text-align: center;
}
.section-aoa .body-text {
	max-width: 560px;
	margin: 0 auto;
}
.section-aoa .body-text p {
	margin-bottom: 1.6em;
	line-height: 2;
	color: #4a463f;
	font-size: .95em;
}
.section-aoa .quote-block {
	border-top: 1px solid #d8cfb8;
	padding-top: 26px;
	margin-top: 30px;
}
.section-aoa .quote-block p {
	font-style: italic;
	font-size: 1.05em;
	color: #2a2620;
	line-height: 1.8;
	margin-bottom: 12px;
}
.section-aoa .quote-block .attr {
	font-size: .78em;
	color: #8a8065;
	font-style: normal;
}

/* ============ CELLAR PHOTO STRIP ============ */
.cellar-photo {
	height: 380px;
	background: url(images/gpt/art-of-aging-cellar.jpg) center / cover no-repeat;
}
@media (max-width: 767px) { .cellar-photo { height: 220px; } }

/* ============ CELLAR SELECTION (3-up) ============ */
.section-cellar-sel {
	background: var(--cream);
	padding: 80px 0;
}
.section-cellar-sel .lead {
	text-align: center;
	color: #8a8065;
	font-size: .85em;
	letter-spacing: .05em;
	margin-bottom: 60px;
}
.cellar-sel-grid {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}
.cellar-sel-grid > div { flex: 1 1 260px; }
.cellar-sel-grid .photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 22px;
}
.cellar-sel-grid .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cellar-sel-grid .num {
	color: var(--gold);
	font-size: .8em;
	letter-spacing: .1em;
	margin-bottom: 8px;
}
.cellar-sel-grid h3 {
	font-family: 'Libre Baskerville', serif;
	font-size: 1.15em;
	color: #2a2620;
	margin-bottom: 12px;
	font-weight: 700;
}
.cellar-sel-grid p {
	color: #6b6558;
	font-size: .88em;
	line-height: 1.9;
}

/* ============ OLD WINE (photo split, dark) ============ */
.section-oldwine-v2 {
	background: var(--dark);
	color: #fff;
	padding: 0;
}
.section-oldwine-v2 .row2 {
	display: flex;
	flex-wrap: wrap;
}
.section-oldwine-v2 .photo {
	flex: 1 1 420px;
	min-height: 480px;
	background: url(images/gpt/sanmi-wine-table.jpg) center / cover no-repeat;
}
.section-oldwine-v2 .text {
	flex: 1 1 420px;
	padding: 80px 60px;
}
.section-oldwine-v2 .eyebrow {
	color: var(--gold-light);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 18px;
}
.section-oldwine-v2 h2 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 1.9em;
	line-height: 1.5;
	margin-bottom: 26px;
}
.section-oldwine-v2 p {
	color: rgba(255,255,255,.78);
	font-size: .92em;
	line-height: 2;
	margin-bottom: 1.3em;
}
.section-oldwine-v2 .signoff {
	color: rgba(228,191,95,.7);
	font-size: .72em;
	letter-spacing: .1em;
	margin-top: 30px;
}
@media (max-width: 767px) {
	.section-oldwine-v2 .photo { min-height: 240px; }
	.section-oldwine-v2 .text { padding: 50px 24px; }
}

/* ============ LINE UP / GRAND VIN (dark) ============ */
.section-lineup-v2 {
	background: var(--dark);
	color: #fff;
	padding: 80px 0;
}
.section-lineup-v2 .eyebrow {
	text-align: center;
	color: var(--gold-light);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 14px;
}
.section-lineup-v2 h2 {
	text-align: center;
	font-family: 'Libre Baskerville', serif;
	font-size: 1.7em;
	font-weight: 400;
	color: #fff;
	margin-bottom: 14px;
}
.section-lineup-v2 .intro {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 50px;
	color: rgba(255,255,255,.65);
	font-size: .88em;
	line-height: 1.9;
}
.wine-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}
.wine-grid > div {
	flex: 1 1 260px;
	max-width: 300px;
	text-align: center;
}
.wine-grid .img {
	height: 350px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 18px;
}
.wine-grid .img img { max-height: 100%; width: auto; margin: 0 auto; }
.wine-grid p { font-size: .85em; color: rgba(255,255,255,.85); line-height: 1.6; }
.section-lineup-v2 .disclaimer {
	text-align: center;
	max-width: 720px;
	margin: 50px auto 0;
	color: rgba(255,255,255,.4);
	font-size: .72em;
	line-height: 1.9;
}
.section-lineup-v2 .divider {
	border: none;
	border-top: 1px solid rgba(228,191,95,.2);
	margin: 70px 0;
}
.section-lineup-v2 .tag-premium {
	text-align: center;
	color: var(--gold);
	font-size: .8em;
	letter-spacing: .2em;
	margin-bottom: 10px;
}

/* ============ MEMBERSHIP v2 ============ */
.section-membership-v2 {
	background: var(--cream);
	padding: 100px 0;
}
.section-membership-v2 .eyebrow {
	text-align: center;
	color: var(--gold);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 14px;
}
.section-membership-v2 h2 {
	text-align: center;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 2em;
	color: #2a2620;
	margin-bottom: 14px;
}
.section-membership-v2 .intro {
	text-align: center;
	color: #6b6558;
	font-size: .9em;
	margin-bottom: 60px;
}
.membership-v2-grid {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
}
.membership-v2-grid .card {
	flex: 1 1 440px;
	background: #fff;
	border: 1px solid #e0d9c5;
	padding: 40px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.membership-v2-grid .card-actions {
	margin-top: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.membership-v2-grid .card.premium {
	background: var(--dark2);
	color: var(--cream);
	border-color: var(--gold);
}
.membership-v2-grid .badge-rec {
	position: absolute;
	top: 40px;
	right: 40px;
	background: var(--gold);
	color: #fff;
	font-size: .68em;
	letter-spacing: .08em;
	padding: 4px 10px;
}
.membership-v2-grid .tag {
	color: var(--gold);
	font-size: .78em;
	letter-spacing: .12em;
	margin-bottom: 10px;
}
.membership-v2-grid .name {
	font-family: 'Libre Baskerville', serif;
	font-size: 1.6em;
	margin-bottom: 18px;
}
.membership-v2-grid .price {
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 4px;
}
.membership-v2-grid .card.premium .price { color: var(--gold-light); }
.membership-v2-grid .price small { font-size: .5em; font-weight: 400; margin-left: .3em; }
.membership-v2-grid .price-sub {
	font-size: .82em;
	color: #918a76;
	margin-bottom: 26px;
}
.membership-v2-grid .card.premium .price-sub { color: rgba(245,240,230,.55); }
.membership-v2-grid .desc {
	font-size: .9em;
	line-height: 1.9;
	margin-bottom: 22px;
	color: #4a463f;
}
.membership-v2-grid .card.premium .desc { color: rgba(245,240,230,.85); }
.membership-v2-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.membership-v2-grid ul li {
	padding: 9px 0;
	border-bottom: 1px solid rgba(0,0,0,.08);
	font-size: .85em;
	color: #4a463f;
}
.membership-v2-grid .card.premium ul li {
	border-bottom-color: rgba(255,255,255,.1);
	color: rgba(245,240,230,.85);
}

/* comparison table reuses .plan-compare-table from plan-section.css */
.membership-v2-compare { max-width: 900px; margin: 60px auto 0; }

/* ============ MEMBERS ONLY split ============ */
.section-members-split {
	display: flex;
	flex-wrap: wrap;
}
.section-members-split .photo {
	flex: 1 1 420px;
	min-height: 440px;
	background: url(images/gpt/sanmi-atelier.jpg) center / cover no-repeat;
}
.section-members-split .text {
	flex: 1 1 420px;
	background: var(--cream);
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.section-members-split .eyebrow {
	color: var(--gold);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 18px;
}
.section-members-split h2 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 1.9em;
	color: #2a2620;
	line-height: 1.5;
	margin-bottom: 24px;
}
.section-members-split p.lead {
	color: #6b6558;
	font-size: .9em;
	line-height: 1.9;
	margin-bottom: 26px;
}
.section-members-split ul {
	list-style: none;
	padding: 0;
	margin: 0 0 26px;
}
.section-members-split ul li {
	padding: 10px 0;
	border-bottom: 1px solid #e0d9c5;
	font-size: .88em;
	color: #2a2620;
}
.section-members-split a.perk-link-v2 {
	color: var(--gold);
	text-decoration: underline;
	font-size: .9em;
}
@media (max-width: 767px) {
	.section-members-split .photo { min-height: 220px; }
	.section-members-split .text { padding: 50px 24px; }
}

/* ============ VOICE v2 ============ */
.section-voice-v2 {
	background: var(--cream);
	padding: 90px 0;
}
.section-voice-v2 .eyebrow {
	text-align: center;
	color: var(--gold);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 14px;
}
.section-voice-v2 h2 {
	text-align: center;
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-size: 1.6em;
	color: #2a2620;
	margin-bottom: 50px;
}
.voice-v2-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}
.voice-v2-grid > div {
	flex: 1 1 440px;
	background: #fff;
	border: 1px solid #e0d9c5;
	padding: 28px 30px;
	font-size: .88em;
	line-height: 1.9;
	color: #4a463f;
}

/* ============ FINAL CTA ============ */
.section-final-cta {
	position: relative;
	background: linear-gradient(rgba(10,8,6,.6), rgba(10,8,6,.82)), url(images/gpt/hero-sanmi-03.jpg) center / cover no-repeat;
	color: #fff;
	padding: 120px 0;
	text-align: center;
}
.section-final-cta .eyebrow {
	color: var(--gold-light);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 20px;
}
.section-final-cta h2 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 2.1em;
	line-height: 1.5;
	margin-bottom: 20px;
}
.section-final-cta .note {
	color: rgba(255,255,255,.7);
	font-size: .85em;
	letter-spacing: .05em;
	margin-bottom: 34px;
}
.section-final-cta .btn-gold {
	display: inline-block;
	background: var(--gold);
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-size: .9em;
	letter-spacing: .08em;
}

/* ============ OFFICIAL ORDER ============ */
.section-order-v2 {
	background: var(--cream);
	padding: 90px 0;
	text-align: center;
}
.section-order-v2 .eyebrow {
	color: var(--gold);
	font-size: .75em;
	letter-spacing: .2em;
	margin-bottom: 14px;
}
.section-order-v2 h2 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 1.8em;
	color: #2a2620;
	margin-bottom: 16px;
}
.section-order-v2 p {
	color: #6b6558;
	font-size: .9em;
	margin-bottom: 34px;
}
.section-order-v2 .btn-outline {
	display: inline-block;
	border: 1px solid var(--gold);
	color: var(--gold);
	padding: 14px 34px;
	text-decoration: none;
	font-size: .88em;
	letter-spacing: .06em;
	margin-bottom: 26px;
}
.section-order-v2 .law-link {
	display: block;
	color: #8a8065;
	font-size: .82em;
	text-decoration: underline;
}

/* ============ CHECKOUT CARDS ============ */
.checkout-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto 20px;
	text-align: left;
}
.checkout-card {
	flex: 1 1 360px;
	position: relative;
	display: block;
	text-decoration: none;
	background: var(--dark2);
	color: var(--cream);
	padding: 36px 40px;
	transition: opacity .15s;
}
.checkout-card:hover { opacity: .88; }
.checkout-card.premium { background: var(--dark); }
.checkout-card .label {
	color: var(--gold);
	font-size: .78em;
	letter-spacing: .15em;
	margin-bottom: 18px;
}
.checkout-card .price {
	font-family: 'Libre Baskerville', serif;
	font-size: 2.4em;
	color: var(--cream);
	line-height: 1;
	margin-bottom: 14px;
}
.checkout-card .sub {
	font-size: .82em;
	color: rgba(245,240,230,.6);
}
.checkout-card .sub + .sub {
	margin-top: 4px;
}
.checkout-card .arrow {
	position: absolute;
	top: 36px;
	right: 40px;
	color: var(--gold);
	font-size: 1.4em;
}
.checkout-card .pay-options {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 22px;
}
.checkout-card .pay-btn {
	flex: 1 1 auto;
	text-align: center;
	border: 1px solid var(--gold);
	color: var(--gold-light);
	text-decoration: none;
	font-size: .8em;
	padding: 12px 14px;
	white-space: nowrap;
}
.checkout-card .pay-btn:hover { opacity: .8; }
@media (max-width: 767px) {
	.checkout-card { padding: 28px 26px; }
	.checkout-card .price { font-size: 1.9em; }
	.checkout-card .arrow { top: 28px; right: 26px; }
}

/* ============ FOOTER v2 ============ */
.footer-v2 .bar1 {
	background: var(--dark);
	color: rgba(245,240,230,.7);
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	font-size: .78em;
	letter-spacing: .06em;
}
.footer-v2 .bar2 {
	background: var(--gold);
	padding: 18px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-v2 .bar2 a {
	color: #2a1f0f;
	text-decoration: none;
	font-size: .85em;
	letter-spacing: .04em;
}
.footer-v2 .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
