@charset "utf-8";
/* =================================================================
   GOLD PARKING - THE TRUE MASTER CSS (FINAL COMPLETE EDITION)
   Verified by Google Supreme Advisor
   ================================================================= */

:root {
    /* --- COLOR PALETTE --- */
    --c-black: #050505;       /* 純黒に近いリッチブラック */
    --c-bg: #121212;          /* 視認性用ダークグレー */
    --c-surface: #1e1e1e;     /* コンポーネント背景 */
    --c-surface-hover: #252525;
    
    --c-text-main: #ffffff;   /* メイン文字 */
    --c-text-sub: #d1d1d1;    /* サブ文字 */
    --c-text-muted: #888888;  /* 補足文字 */
    
    /* --- BRANDING --- */
    --c-gold: #d4af37;        /* 標準ゴールド */
    --c-gold-bright: #fcd34d; /* 発光ゴールド */
    --c-gold-grad: linear-gradient(135deg, #fce38a 0%, #d4af37 100%);
    
    /* --- UTILITY --- */
    --c-border: #333333;
    --c-border-light: #444444;
    
    /* --- TYPOGRAPHY --- */
    --font-en: "Cormorant Garamond", serif;
    --font-jp: "Shippori Mincho", serif;
}

/* =================================================================
   1. GLOBAL RESET & BASE
   ================================================================= */
body {
    background-color: var(--c-black) !important;
    color: var(--c-text-main);
    font-family: var(--font-jp);
    margin: 0;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#content, .l-main, .l-container { padding: 0 !important; max-width: 100% !important; }
.c-pageTitle { display: none; }

a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.gp-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.gp-container--narrow { max-width: 800px; }
.gp-section { padding: 120px 0; position: relative; }

/* --- COMMON BUTTONS --- */
.gp-btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 16px 40px; border-radius: 4px;
    font-family: sans-serif; font-weight: 800; letter-spacing: 0.1em;
    font-size: 1rem; cursor: pointer; text-decoration: none;
}
.gp-btn--gold, .gp-btn--glow {
    background: var(--c-gold-grad);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
    border: 1px solid #fff;
}
.gp-btn--gold:hover, .gp-btn--glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(212,175,55,0.7);
    background: #fff;
}
.gp-btn--glass {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff; backdrop-filter: blur(5px);
}
.gp-btn--glass:hover {
    background: rgba(255,255,255,0.25); border-color: #fff;
    transform: translateY(-3px);
}

/* --- Section Headers (Common) --- */
.gp-section-header { text-align: center; margin-bottom: 80px; }
.gp-section-header .en {
    display: block; font-family: var(--font-en); font-size: 1.3rem;
    color: var(--c-gold); letter-spacing: 0.2em; margin-bottom: 10px;
}
.gp-section-header .ja {
    font-size: 2.5rem; font-weight: 500; margin: 0; color: #fff;
}
.gp-section-header__desc { margin-top: 25px; color: var(--c-text-muted); font-size: 1rem; }


/* =================================================================
   2. TOP PAGE COMPONENTS
   ================================================================= */

/* --- Hero (Video) --- */
.gp-hero {
    position: relative; height: 100vh; min-height: 600px; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.gp-hero__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.gp-hero__video {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.7;
}
.gp-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(5,5,5,0.9) 100%);
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 4px 4px; z-index: 1;
}
.gp-hero__container {
    position: relative; z-index: 2; text-align: center; margin-top: 20px; width: 100%;
}
.gp-hero__logo {
    margin: 0 auto 30px; width: 180px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.8));
}
.gp-hero__sub {
    font-family: sans-serif; letter-spacing: 0.4em; font-size: 0.9rem;
    color: var(--c-gold); margin-bottom: 20px; text-transform: uppercase;
}
.gp-hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.2; font-weight: 500;
    margin-bottom: 40px; text-shadow: 0 10px 40px rgba(0,0,0,1); color: #fff;
}
.gp-hero__desc {
    font-size: 1rem; line-height: 2; color: #ddd; margin-bottom: 50px;
}
.gp-hero__btns {
    display: flex; gap: 20px; justify-content: center;
}

/* Scroll Indicator */
.gp-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; z-index: 2; opacity: 0.8;
}
.gp-scroll-indicator span {
    font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 10px; color: #fff;
}
.gp-scroll-indicator__line {
    width: 1px; height: 60px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden;
}
.gp-scroll-indicator__line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: #fff; animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* --- Trust Numbers --- */
.gp-trust { border-bottom: 1px solid var(--c-border); background: #0a0a0a; }
.gp-trust__grid {
    display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap;
}
.gp-trust__item { text-align: center; }
.gp-trust__item .num {
    font-size: 3.5rem; font-family: var(--font-en); color: var(--c-gold);
    line-height: 1; font-weight: bold;
}
.gp-trust__item .unit { font-size: 1rem; margin-left: 5px; color: #fff; }
.gp-trust__item .lbl {
    font-size: 0.8rem; color: var(--c-text-muted); margin-top: 10px; letter-spacing: 0.1em;
}
.gp-trust__line { width: 1px; height: 40px; background: var(--c-border); }

/* --- Bento Grid --- */
.gp-bento-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;
}
.gp-bento-card {
    background: var(--c-surface); border: 1px solid var(--c-border);
    border-radius: 4px; overflow: hidden; display: flex; flex-direction: column;
    transition: 0.4s; position: relative;
}
.gp-bento-card:hover { border-color: var(--c-gold); transform: translateY(-5px); }
.gp-bento-card__img { height: 200px; position: relative; background: #000; overflow: hidden; }
.gp-bento-card__img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gp-bento-card:hover .gp-bento-card__img img { transform: scale(1.05); }
.gp-bento-card__num {
    position: absolute; top: 10px; right: 15px; font-family: var(--font-en);
    font-size: 3rem; color: rgba(255,255,255,0.05); line-height: 1; font-weight: bold; pointer-events: none;
}
.gp-bento-card__body { padding: 30px; flex-grow: 1; }
.gp-bento-card__body h3 {
    font-size: 1.25rem; margin-bottom: 15px; line-height: 1.4; color: #fff;
}
.gp-bento-card__body p { font-size: 0.9rem; color: var(--c-text-sub); line-height: 1.8; margin: 0; }

/* --- Timeline --- */
.gp-timeline { position: relative; margin: 60px 0; }
.gp-timeline__line {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
    background: var(--c-border); transform: translateX(-50%);
}
.gp-timeline__step {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 100px; position: relative;
}
.gp-timeline__media, .gp-timeline__content { width: 45%; }
.gp-timeline__media {
    height: 300px; background: #111; border: 1px solid var(--c-border);
    border-radius: 4px; overflow: hidden;
}
.gp-timeline__media img { width: 100%; height: 100%; object-fit: cover; }
.gp-timeline__dot {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; background: var(--c-black);
    border: 1px solid var(--c-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 2;
}
.gp-timeline__dot span { color: var(--c-gold); font-family: var(--font-en); font-weight: bold; }
.gp-timeline__content { padding: 20px; }
.gp-timeline__tag {
    display: inline-block; background: var(--c-surface); color: var(--c-gold);
    padding: 5px 15px; font-size: 0.8rem; border-radius: 20px;
    margin-bottom: 15px; border: 1px solid var(--c-border);
}
.gp-timeline__title { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.gp-timeline__text { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.8; }
.gp-timeline__step--reverse { flex-direction: row-reverse; }

/* --- Simulator Box (Top Page) --- */
.gp-simulator-box {
    background: var(--c-surface); border: 1px solid var(--c-border);
    padding: 50px; border-radius: 4px; max-width: 900px; margin: 0 auto;
}
.gp-sim-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px;
}
.gp-sim-input label { display: block; margin-bottom: 10px; color: var(--c-gold); font-size: 0.9rem; }
.gp-sim-input input, .gp-sim-input select {
    width: 100%; background: #000; border: 1px solid #444; color: #fff;
    padding: 15px; border-radius: 2px; font-family: sans-serif;
}
.gp-sim-result {
    text-align: center; margin-bottom: 40px; padding: 30px;
    background: #000; border: 1px solid var(--c-border);
}
.gp-sim-result .price { font-size: 3rem; font-family: var(--font-en); color: #fff; line-height: 1; }
.gp-sim-action { text-align: center; }

/* --- Reviews (Top Page) --- */
.gp-reviews__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.gp-review-card {
    background: var(--c-surface); padding: 40px 30px; border: 1px solid var(--c-border);
    border-radius: 4px; transition: 0.3s;
}
.gp-review-card:hover { border-color: var(--c-border-light); background: var(--c-surface-hover); }
.gp-review-card__stars { color: var(--c-gold); margin-bottom: 20px; letter-spacing: 0.2em; font-size: 0.8rem; }
.gp-review-card__text {
    font-size: 0.95rem; line-height: 1.8; color: var(--c-text-sub); margin-bottom: 30px;
    height: 80px; overflow: hidden;
}
.gp-review-card__author { display: flex; align-items: center; gap: 15px; }
.gp-review-card__author .avatar {
    width: 40px; height: 40px; background: #333; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: bold; font-family: var(--font-en);
}
.gp-review-card__author .meta { display: block; font-size: 0.75rem; color: #777; margin-top: 2px; }

/* --- FAQ (Top Page) --- */
.gp-faq__item { border-bottom: 1px solid var(--c-border); margin-bottom: 0; }
.gp-faq__q {
    padding: 25px 0; font-size: 1.1rem; cursor: pointer; color: #fff; font-weight: bold;
    display: flex; justify-content: space-between; align-items: center; list-style: none; transition: 0.3s;
}
.gp-faq__q:hover { color: var(--c-gold); }
.gp-faq__q::-webkit-details-marker { display: none; }
.gp-faq__icon { width: 20px; height: 2px; background: currentColor; position: relative; transition: 0.3s; }
.gp-faq__icon::after {
    content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
    background: currentColor; transform: rotate(90deg); transition: 0.3s;
}
.gp-faq__item[open] .gp-faq__icon { transform: rotate(180deg); }
.gp-faq__item[open] .gp-faq__icon::after { transform: rotate(0deg); opacity: 0; }
.gp-faq__a { padding-bottom: 30px; color: var(--c-text-sub); line-height: 1.9; font-size: 0.95rem; }

/* --- Access & Floating Bar (Top Page) --- */
.gp-access__card {
    display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--c-border);
    border-radius: 4px; overflow: hidden;
}
.gp-access__map {
    min-height: 350px; background: #222;
    filter: grayscale(1) invert(1) contrast(0.8);
}
.gp-access__info { padding: 60px; background: var(--c-surface); }
.gp-access__info dl { margin-bottom: 30px; }
.gp-access__info dt { color: var(--c-gold); font-size: 0.8rem; margin-top: 20px; letter-spacing: 0.1em; }
.gp-access__info dd { font-size: 1.1rem; margin-top: 5px; margin-left: 0; color: #fff; }
.gp-access__tel { color: #fff; font-size: 1.8rem; font-family: var(--font-en); font-weight: bold; }

.gp-float-bar {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: rgba(20,20,20,0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 30px; border-radius: 50px;
    display: flex; align-items: center; gap: 30px;
    z-index: 900; transition: 0.5s; width: 90%; max-width: 500px; justify-content: space-between;
}
.gp-float-bar.is-visible { transform: translateX(-50%) translateY(0); }
.gp-float-bar .price { font-size: 1.2rem; font-weight: bold; font-family: var(--font-en); color: #fff; }
.gp-float-bar .btn {
    background: var(--c-gold-grad); color: #000; padding: 10px 25px; border-radius: 30px;
    font-weight: bold; font-size: 0.9rem; text-decoration: none;
}


/* =================================================================
   3. PRICE PAGE COMPONENTS
   ================================================================= */

/* Hero (Static) */
.gp-price-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 50% 0%, #2a2200, var(--c-bg) 70%);
    text-align: center; border-bottom: 1px solid var(--c-border);
}
.gp-title-split {
    display: flex; flex-direction: column; align-items: center;
}
.gp-title-split .en {
    font-family: var(--font-en); font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--c-gold); line-height: 1.1; letter-spacing: 0.05em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.gp-title-split .ja {
    font-size: 1.2rem; color: var(--c-text-main);
    margin-top: 20px; letter-spacing: 0.2em; font-weight: 500;
}

/* UI Grid */
.gp-pricing-ui { background: var(--c-bg); padding-bottom: 120px; }
.gp-ui-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}

/* Calculator (Advanced) */
.gp-calculator {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-gold);
    border-radius: 8px; padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: sticky; top: 40px;
}
.gp-calc-header h3 {
    color: var(--c-text-main); font-size: 1.4rem; margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
}
.gp-calc-header p { color: var(--c-text-sub); font-size: 0.9rem; margin-bottom: 30px; }

.gp-input-group { margin-bottom: 20px; }
.gp-input-group label {
    display: flex; justify-content: space-between;
    color: var(--c-text-main); font-size: 0.95rem; margin-bottom: 8px; font-weight: bold;
}
.gp-input-group .req {
    background: var(--c-gold); color: #000; font-size: 0.7rem; padding: 2px 6px; border-radius: 2px;
}
.gp-input {
    width: 100%; background: #000; border: 1px solid #666;
    color: #fff; padding: 12px; border-radius: 4px; font-size: 1.1rem; font-family: sans-serif;
}
.gp-input:focus { border-color: var(--c-gold); outline: 2px solid rgba(212,175,55,0.5); }

.gp-calc-options {
    background: #151515; padding: 20px; border-radius: 4px; margin-bottom: 30px;
    border: 1px solid #444;
}
.opt-label { font-size: 0.9rem; color: var(--c-text-sub); margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 5px; }
.gp-checkbox {
    display: flex; align-items: center; cursor: pointer; margin-bottom: 10px;
    color: var(--c-text-main); font-size: 1rem;
}
.gp-checkbox input { display: none; }
.gp-checkbox .box {
    width: 20px; height: 20px; border: 2px solid #888; border-radius: 3px;
    margin-right: 10px; position: relative; background: #000;
}
.gp-checkbox input:checked + .box { background: var(--c-gold); border-color: var(--c-gold); }
.gp-checkbox .prc { margin-left: auto; color: var(--c-gold-bright); font-family: var(--font-en); font-weight: bold; }

.gp-calc-result {
    background: #000; border: 1px solid var(--c-gold);
    border-radius: 8px; padding: 25px; text-align: center; margin-bottom: 30px;
}
.gp-calc-result .label { display: block; color: var(--c-text-sub); font-size: 0.9rem; margin-bottom: 5px; }
.gp-calc-result .price-display {
    color: #fff; font-size: 3rem; font-family: var(--font-en); font-weight: bold; line-height: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.gp-calc-result .currency { font-size: 1.5rem; color: var(--c-gold); margin-right: 5px; }
.gp-calc-result .days-display { color: var(--c-text-sub); font-size: 0.9rem; margin-top: 10px; }

/* Matrix Table */
.gp-matrix-header { margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--c-border); }
.gp-matrix-header h2 { font-size: 1.8rem; color: #fff; margin-bottom: 5px; }
.gp-matrix-header p { color: var(--c-text-sub); font-size: 0.95rem; }

.gp-matrix-list { display: flex; flex-direction: column; margin-bottom: 40px; border: 1px solid var(--c-border); border-radius: 4px; overflow: hidden; }
.gp-matrix-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 30px; background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
}
.gp-matrix-row:last-child { border-bottom: none; }
.gp-matrix-row:nth-child(even) { background: #252525; }

.gp-matrix-row .days { color: var(--c-text-main); font-size: 1.1rem; }
.gp-matrix-row .days .d { font-size: 1.4rem; font-weight: bold; margin: 0 3px; }
.gp-matrix-row .price { color: var(--c-gold-bright); font-size: 1.6rem; font-family: var(--font-en); font-weight: bold; }

.gp-matrix-row--special {
    background: linear-gradient(90deg, #2a2200, #1a1a1a) !important;
    border-left: 4px solid var(--c-gold);
}
.gp-matrix-row--special .badge {
    background: var(--c-gold); color: #000; font-size: 0.75rem; 
    padding: 3px 10px; border-radius: 20px; font-weight: bold; margin-left: 10px; vertical-align: middle;
}

/* Accordion */
.gp-details {
    background: var(--c-surface); border: 1px solid var(--c-border);
    margin-bottom: 15px; border-radius: 4px;
}
.gp-details summary {
    padding: 18px 20px; color: var(--c-text-main); cursor: pointer; list-style: none;
    font-size: 1rem; font-weight: bold; transition: 0.3s;
    display: flex; justify-content: space-between; align-items: center;
}
.gp-details summary::after { content: '+'; color: var(--c-gold); font-weight: bold; }
.gp-details[open] summary::after { content: '-'; }
.gp-details summary:hover { background: #2a2a2a; }

.gp-details-content { padding: 0 20px 20px; color: var(--c-text-sub); font-size: 0.95rem; line-height: 1.8; }
.gp-list-dots { list-style: none; padding: 0; }
.gp-list-dots li { padding: 5px 0; border-bottom: 1px dashed #444; display: flex; justify-content: space-between; }
.gp-list-dots li strong { color: #fff; }
.alert-text { color: #ff8080; font-weight: bold; background: rgba(255,107,107,0.15); padding: 12px; border-radius: 4px; }


/* =================================================================
   4. QUALITY & CLOSING (COMMON)
   ================================================================= */
.gp-quality {
    position: relative; padding: 140px 0; background: #000; overflow: hidden;
}
.gp-quality-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0.4;
}
.gp-quality-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.6) 100%); z-index: 1;
}
.gp-quality-box {
    position: relative; z-index: 2; max-width: 700px;
    padding: 0 40px; border-left: 5px solid var(--c-gold);
}
.gp-quality-title {
    font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 30px; line-height: 1.3;
    text-shadow: 2px 2px 10px #000;
}
.gp-quality-text { font-size: 1.1rem; color: #f5f5f5; line-height: 2; font-weight: 500; }

.gp-closing {
    padding: 100px 0; background: #121212; border-top: 1px solid var(--c-border);
}
.gp-closing-box {
    max-width: 800px; margin: 0 auto; text-align: center;
    background: #1e1e1e; padding: 60px 40px; border-radius: 8px;
    border: 1px solid var(--c-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gp-closing-title { font-size: 2.2rem; color: #fff; margin-bottom: 20px; }
.gp-closing-desc { color: var(--c-text-sub); margin-bottom: 40px; line-height: 1.8; font-size: 1rem; }

.gp-closing-btns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px;
}
.gp-btn-line {
    background: #06c755; color: #fff; padding: 18px;
    border-radius: 4px; text-decoration: none; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.gp-btn-line:hover { background: #05b54d; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(6,199,85,0.3); }

.gp-btn-reserve-lg, .gp-btn--glow {
    background: linear-gradient(135deg, #fce38a 0%, #d4af37 100%);
    color: #000 !important;
    padding: 18px; border-radius: 4px; text-decoration: none; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; box-shadow: 0 0 25px rgba(212,175,55,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}
.gp-btn-reserve-lg:hover, .gp-btn--glow:hover {
    transform: translateY(-3px); box-shadow: 0 0 40px rgba(212,175,55,0.8);
    background: #fff;
}

.btn-inner { display: flex; align-items: center; text-align: left; }
.icon-l { font-size: 1.5rem; font-weight: bold; margin-right: 15px; }
.icon-w { font-size: 1.5rem; font-weight: bold; margin-right: 15px; opacity: 1; }
.txt-group .s { display: block; font-size: 0.75rem; opacity: 0.9; margin-bottom: 2px; color: inherit; }
.txt-group .m { display: block; font-size: 1.1rem; font-weight: bold; color: inherit; }

.gp-payment-info {
    background: #151515; padding: 25px; border-radius: 4px; border: 1px solid #444;
}
.pay-row {
    display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 10px; font-size: 1.1rem;
}
.pay-label { color: var(--c-gold); font-size: 0.9rem; }
.pay-val { color: #fff; font-weight: bold; }
.card-icons-row { margin-bottom: 10px; color: #ddd; font-family: var(--font-en); letter-spacing: 1px; }
.card-icons-row span { margin: 0 5px; border-bottom: 1px solid #666; padding-bottom: 2px; }
.gp-payment-info .note { color: #ff8080; font-size: 0.9rem; }


/* =================================================================
   5. FOOTER (STRUCTURED)
   ================================================================= */
.gp-footer { background: #000; padding: 80px 0 30px; border-top: 1px solid var(--c-border); color: #ccc; }
.gp-footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 60px;
    align-items: start;
}
.gp-ft-head {
    color: #fff; font-size: 1rem; margin-bottom: 20px;
    border-left: 4px solid var(--c-gold); padding-left: 15px;
    font-weight: bold; letter-spacing: 0.1em;
}
.gp-ft-logo { font-family: var(--font-en); font-size: 1.8rem; color: var(--c-gold); margin-bottom: 15px; }
.gp-ft-slogan { font-size: 0.9rem; color: #ddd; line-height: 1.6; margin-bottom: 20px; }
.gp-ft-permit { font-size: 0.8rem; border: 1px solid #444; padding: 15px; display: inline-block; color: #aaa; font-style: normal; }

.gp-ft-nav { list-style: none; padding: 0; }
.gp-ft-nav li { margin-bottom: 12px; }
.gp-ft-nav a { color: #ccc; text-decoration: none; font-size: 0.95rem; transition: 0.3s; display: block; }
.gp-ft-nav a:hover { color: var(--c-gold); transform: translateX(5px); }

.gp-ft-box {
    display: flex; gap: 15px; padding: 20px; border-radius: 6px;
    background: #151515; border: 1px solid #444;
}
.gp-ft-box .icon { font-size: 1.8rem; }
.gp-ft-box .txt { font-size: 0.95rem; line-height: 1.6; color: #eee; font-style: normal; }
.gp-ft-box .txt strong { display: block; color: #fff; font-size: 1.2rem; margin-bottom: 5px; }
.gp-ft-box .floor { font-size: 0.9rem; color: var(--c-gold); font-weight: bold; }

.main-box {
    border: 1px solid var(--c-gold);
    background: linear-gradient(135deg, #2a2200, #121212);
    box-shadow: 0 5px 20px rgba(212,175,55,0.1);
}
.sub-box { opacity: 0.9; }

.gp-ft-note { font-size: 0.8rem; color: #888; margin-top: 10px; }

.gp-footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 30px; font-size: 0.75rem; color: #666; }


/* =================================================================
   6. RESPONSIVE
   ================================================================= */
@media screen and (max-width: 1024px) {
    .gp-footer-top { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 768px) {
    /* Hero */
    .gp-hero__title { font-size: 2.8rem; }
    
    /* Bento & Timeline (Fixing Previous Issues) */
    .gp-bento-grid { grid-template-columns: 1fr; }
    .gp-message__inner, .gp-trust__grid, .gp-access__card, .gp-sim-grid { grid-template-columns: 1fr; }
    
    .gp-timeline__step, .gp-timeline__step--reverse {
        flex-direction: column; align-items: flex-start; margin-left: 40px; margin-bottom: 60px;
    }
    .gp-timeline__media, .gp-timeline__content { width: 100%; }
    .gp-timeline__line { left: 15px; }
    .gp-timeline__dot { left: 15px; width: 30px; height: 30px; transform: translate(-50%, 0); top: 0; }
    .gp-timeline__tag { margin-bottom: 10px; }

    /* UI & Footer */
    .gp-ui-grid { grid-template-columns: 1fr; gap: 40px; }
    .gp-calculator { order: 1; margin-bottom: 50px; position: relative; top: 0; }
    .gp-ui-right { order: 2; }
    
    .gp-closing-btns { grid-template-columns: 1fr; }
    .pay-row { flex-direction: column; gap: 5px; }
    
    .gp-footer-top { grid-template-columns: 1fr; gap: 50px; }
    .gp-ft-col { text-align: left; }
    .gp-price-hero { padding: 140px 0 60px; }
}