/* FUJI RICE - Main Stylesheet */
:root {
  --fuji-blue: #2C5F8D;
  --fuji-blue-dark: #1e4266;
  --fuji-blue-light: #3a7ab5;
  --gold: #D4A843;
  --gold-dark: #b8922e;
  --offwhite: #FAFAF7;
  --offwhite-dark: #f0f0ea;
  --ink: #1A1A1A;
  --ink-light: #444444;
  --ink-muted: #888888;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Playfair Display', serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-sans);color:var(--ink);background:var(--offwhite);line-height:1.8;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--fuji-blue);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--gold)}
h1,h2,h3,h4,h5,h6{font-family:var(--font-serif);font-weight:700;line-height:1.4;color:var(--ink)}
h1{font-size:clamp(1.8rem,4vw,2.8rem)}
h2{font-size:clamp(1.4rem,3vw,2rem)}
h3{font-size:clamp(1.2rem,2.5vw,1.5rem)}
p{margin-bottom:1.2em}
.section-title{font-family:var(--font-serif);font-size:clamp(1.6rem,3vw,2.2rem);color:var(--fuji-blue);text-align:center;margin-bottom:.5em;position:relative}
.section-title::after{content:'';display:block;width:60px;height:3px;background:var(--gold);margin:.5em auto 0}
.section-subtitle{text-align:center;color:var(--ink-muted);font-size:.95rem;margin-bottom:3em}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.container-narrow{max-width:800px;margin:0 auto;padding:0 1.5rem}
section{padding:5rem 0}
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(250,250,247,.95);backdrop-filter:blur(10px);border-bottom:1px solid rgba(44,95,141,.1);transition:var(--transition)}
.site-header.scrolled{box-shadow:var(--shadow-sm)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem;max-width:1200px;margin:0 auto}
.site-logo{display:flex;align-items:center;gap:.75rem;font-family:var(--font-serif);font-size:1.3rem;font-weight:700;color:var(--fuji-blue);text-decoration:none}
.site-logo img{height:40px;width:auto}
.logo-text{line-height:1.2}
.logo-sub{display:block;font-size:.6rem;font-weight:400;color:var(--ink-muted);letter-spacing:.1em;font-family:var(--font-sans)}
.main-nav{display:flex;align-items:center;gap:.5rem}
.nav-link{padding:.5rem .75rem;font-size:.9rem;font-weight:500;color:var(--ink);border-radius:var(--radius-sm);transition:var(--transition)}
.nav-link:hover{color:var(--fuji-blue);background:rgba(44,95,141,.08)}
.nav-purchase{background:var(--gold);color:var(--white)!important;padding:.5rem 1.25rem;border-radius:50px;font-weight:700}
.nav-purchase:hover{background:var(--gold-dark);transform:translateY(-1px)}
.nav-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.5rem;background:none;border:none}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--ink);transition:var(--transition)}
.hero{position:relative;height:100vh;min-height:600px;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--fuji-blue-dark) 0%,var(--fuji-blue) 50%,#1a3d5e 100%);z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.4}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(28,50,75,.5) 0%,rgba(28,50,75,.8) 100%);z-index:1}
.hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;padding:0 2rem;text-align:center;color:var(--white)}
.hero-badge{display:inline-block;background:var(--gold);color:var(--white);font-size:.8rem;font-weight:700;letter-spacing:.15em;padding:.3em 1em;border-radius:50px;margin-bottom:1.5rem}
.hero-title{font-family:var(--font-serif);font-size:clamp(2rem,5vw,3.5rem);font-weight:700;line-height:1.3;margin-bottom:1rem;color:var(--white);text-shadow:0 2px 20px rgba(0,0,0,.3)}
.hero-subtitle{font-size:clamp(.95rem,2vw,1.15rem);opacity:.9;margin-bottom:2.5rem;font-weight:300;line-height:1.8}
.hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 2rem;border-radius:50px;font-weight:700;font-size:1rem;transition:var(--transition);cursor:pointer;border:none;text-decoration:none;white-space:nowrap}
.btn-primary{background:var(--gold);color:var(--white);box-shadow:0 4px 20px rgba(212,168,67,.4)}
.btn-primary:hover{background:var(--gold-dark);transform:translateY(-2px);color:var(--white)}
.btn-outline{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.6)}
.btn-outline:hover{background:rgba(255,255,255,.15);border-color:var(--white);color:var(--white)}
.btn-line{background:#06C755;color:var(--white);box-shadow:0 4px 20px rgba(6,199,85,.3)}
.btn-line:hover{background:#05a547;transform:translateY(-2px);color:var(--white)}
.hero-scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:.5rem;color:rgba(255,255,255,.7);font-size:.75rem;letter-spacing:.15em;animation:bounce 2s infinite}
.hero-scroll::after{content:'';display:block;width:1px;height:40px;background:rgba(255,255,255,.5)}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(-8px)}}
.features-strip{background:var(--fuji-blue);color:var(--white);padding:2rem 0}
.features-strip .container{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}
.feature-item{display:flex;align-items:center;gap:1rem;padding:.75rem}
.feature-icon{font-size:2rem;flex-shrink:0}
.feature-text strong{display:block;font-family:var(--font-serif);font-size:1rem;margin-bottom:.2rem}
.feature-text span{font-size:.8rem;opacity:.8}
.posts-section{background:var(--offwhite)}
.posts-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}
.post-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);transition:var(--transition);display:flex;flex-direction:column}
.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.post-card-image{position:relative;overflow:hidden;aspect-ratio:16/10;background:var(--offwhite-dark)}
.post-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.post-card:hover .post-card-image img{transform:scale(1.05)}
.post-card-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--fuji-blue) 0%,var(--fuji-blue-light) 100%);font-size:3rem}
.post-card-category{position:absolute;top:1rem;left:1rem;background:var(--gold);color:var(--white);font-size:.75rem;font-weight:700;padding:.25em .75em;border-radius:50px}
.post-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.post-card-meta{display:flex;align-items:center;gap:1rem;font-size:.8rem;color:var(--ink-muted);margin-bottom:.75rem}
.post-card-title{font-family:var(--font-serif);font-size:1.1rem;font-weight:700;line-height:1.5;margin-bottom:.75rem;color:var(--ink)}
.post-card-title a{color:inherit}
.post-card-title a:hover{color:var(--fuji-blue)}
.post-card-excerpt{font-size:.88rem;color:var(--ink-light);line-height:1.7;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.post-card-footer{margin-top:1.25rem;padding-top:1rem;border-top:1px solid var(--offwhite-dark);display:flex;justify-content:flex-end}
.read-more{font-size:.85rem;font-weight:700;color:var(--fuji-blue);display:flex;align-items:center;gap:.25rem}
.read-more::after{content:'→';transition:transform .2s}
.post-card:hover .read-more::after{transform:translateX(4px)}
.cta-section{background:linear-gradient(135deg,var(--fuji-blue) 0%,var(--fuji-blue-dark) 100%);color:var(--white);text-align:center;padding:6rem 0}
.cta-section .section-title{color:var(--white)}
.cta-section .section-subtitle{color:rgba(255,255,255,.8)}
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:2rem}
.line-section{background:var(--offwhite-dark);text-align:center}
.line-card{max-width:600px;margin:0 auto;background:var(--white);border-radius:var(--radius-lg);padding:3rem 2rem;box-shadow:var(--shadow-md);border-top:4px solid #06C755}
.line-icon{font-size:3.5rem;margin-bottom:1rem}
.line-id{font-family:var(--font-display);font-size:1.4rem;color:#06C755;font-weight:700;margin:.5rem 0 1.5rem}
.post-hero{width:100%;aspect-ratio:16/7;max-height:500px;overflow:hidden;position:relative;margin-top:70px}
.post-hero img{width:100%;height:100%;object-fit:cover}
.post-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 60%,rgba(0,0,0,.5) 100%)}
.post-header{padding:3rem 0 2rem}
.post-category-badge{display:inline-block;background:var(--fuji-blue);color:var(--white);font-size:.8rem;font-weight:700;padding:.3em 1em;border-radius:50px;margin-bottom:1rem}
.post-title{font-family:var(--font-serif);font-size:clamp(1.6rem,3.5vw,2.5rem);line-height:1.4;margin-bottom:1rem}
.post-meta{display:flex;align-items:center;gap:1.5rem;color:var(--ink-muted);font-size:.88rem;flex-wrap:wrap}
.post-meta .divider{width:1px;height:14px;background:var(--ink-muted);opacity:.3}
.post-content{padding:2rem 0 4rem}
.post-content p,.post-content ul,.post-content ol{margin-bottom:1.5em;font-size:1.05rem;line-height:1.9}
.post-content h2{font-family:var(--font-serif);font-size:1.6rem;color:var(--fuji-blue);margin:2.5em 0 .75em;padding-bottom:.5em;border-bottom:2px solid var(--gold)}
.post-content h3{font-size:1.25rem;margin:2em 0 .5em}
.post-content img{border-radius:var(--radius-md);margin:2rem auto;box-shadow:var(--shadow-md)}
.post-content blockquote{border-left:4px solid var(--gold);padding:1rem 1.5rem;margin:2rem 0;background:var(--offwhite-dark);border-radius:0 var(--radius-md) var(--radius-md) 0;font-style:italic;color:var(--ink-light)}
.post-nav{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;padding:3rem 0;border-top:1px solid var(--offwhite-dark)}
.post-nav-item{padding:1.5rem;background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);transition:var(--transition);text-decoration:none;color:var(--ink)}
.post-nav-item:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);color:var(--ink)}
.post-nav-item.next{text-align:right}
.post-nav-label{font-size:.75rem;color:var(--ink-muted);margin-bottom:.5rem;display:block}
.post-nav-title{font-family:var(--font-serif);font-size:.95rem;font-weight:700;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.share-section{text-align:center;padding:2rem 0}
.share-label{font-size:.85rem;color:var(--ink-muted);margin-bottom:1rem;font-weight:700;letter-spacing:.1em}
.share-buttons{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}
.share-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.6rem 1.25rem;border-radius:50px;font-size:.85rem;font-weight:700;transition:var(--transition);color:var(--white)}
.share-btn:hover{transform:translateY(-2px);color:var(--white)}
.share-btn.twitter{background:#1DA1F2}
.share-btn.facebook{background:#1877F2}
.share-btn.line{background:#06C755}
.page-hero{background:linear-gradient(135deg,var(--fuji-blue) 0%,var(--fuji-blue-dark) 100%);color:var(--white);padding:8rem 0 4rem;text-align:center}
.page-hero h1{font-family:var(--font-serif);font-size:clamp(2rem,4vw,3rem);color:var(--white);margin-bottom:.5rem}
.page-hero p{color:rgba(255,255,255,.8);font-size:1rem;margin:0}
.pagination{display:flex;justify-content:center;align-items:center;gap:.5rem;margin-top:3rem;flex-wrap:wrap}
.page-item{display:inline-flex}
.page-link{display:flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:var(--radius-sm);font-size:.9rem;font-weight:500;color:var(--ink);background:var(--white);border:1px solid var(--offwhite-dark);transition:var(--transition)}
.page-link:hover,.page-link.active{background:var(--fuji-blue);color:var(--white);border-color:var(--fuji-blue)}
.site-footer{background:var(--ink);color:rgba(255,255,255,.8);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand{font-family:var(--font-serif);font-size:1.3rem;color:var(--white);margin-bottom:1rem}
.footer-desc{font-size:.88rem;opacity:.7;line-height:1.8;margin-bottom:1.5rem}
.footer-social{display:flex;gap:.75rem}
.social-link{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.1);color:var(--white);transition:var(--transition)}
.social-link:hover{background:var(--gold);color:var(--white);transform:translateY(-2px)}
.footer-nav-title{font-weight:700;color:var(--white);font-size:.9rem;letter-spacing:.05em;margin-bottom:1rem}
.footer-nav-list{list-style:none}
.footer-nav-list li{margin-bottom:.5rem}
.footer-nav-list a{color:rgba(255,255,255,.6);font-size:.88rem;transition:var(--transition)}
.footer-nav-list a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;font-size:.8rem;opacity:.6}
.footer-purchase{margin-top:1.5rem}
.text-center{text-align:center}
.mt-6{margin-top:3rem}
.tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:2rem}
.tag{display:inline-block;background:var(--offwhite-dark);color:var(--ink-light);font-size:.8rem;padding:.25em .75em;border-radius:50px;transition:var(--transition)}
.tag:hover{background:var(--fuji-blue);color:var(--white)}
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){section{padding:3.5rem 0}.main-nav{display:none;position:fixed;top:70px;left:0;right:0;background:var(--offwhite);padding:1.5rem;flex-direction:column;box-shadow:var(--shadow-md)}.main-nav.open{display:flex}.nav-link{width:100%;text-align:center;padding:.75rem}.nav-toggle{display:flex}.posts-grid{grid-template-columns:1fr}.post-nav{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr;gap:2rem}.hero-actions{flex-direction:column;align-items:center}}
@media(max-width:480px){.hero-title{font-size:1.8rem}.btn{padding:.75rem 1.5rem;font-size:.9rem}.container,.container-narrow{padding:0 1rem}}
@keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
img[loading="lazy"] {opacity: 1;transition:opacity .3s}
img[loading="lazy"].loaded{opacity:1}


/* ================================================
   REDESIGNED HOMEPAGE (rh-*)  - Premium Dark Design
   ================================================ */

/* HERO */
.rh-hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#0a0a0a}
.rh-hero-bg{position:absolute;inset:0;z-index:0}
.rh-hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.rh-hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(10,10,10,.88) 0%,rgba(10,10,10,.55) 50%,rgba(10,10,10,.3) 100%)}
.rh-hero-content{position:relative;z-index:1;text-align:center;max-width:820px;padding:0 2rem}
.rh-hero-eyebrow{font-size:.72rem;letter-spacing:.28em;color:#c8a96e;text-transform:uppercase;margin-bottom:1.5rem;display:block;font-family:var(--font-sans)}
.rh-hero-heading{font-family:var(--font-serif);font-size:clamp(2.2rem,5.5vw,4.8rem);font-weight:900;color:#f8f5f0;line-height:1.3;margin-bottom:1.5rem}
.rh-hero-heading em{font-style:normal;color:#c8a96e}
.rh-hero-sub{font-size:clamp(.88rem,1.4vw,1.05rem);color:rgba(248,245,240,.72);line-height:2.1;margin-bottom:2.8rem;font-family:var(--font-sans)}
.rh-hero-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.rh-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:4px;font-size:.9rem;font-weight:700;text-decoration:none;transition:all .25s;letter-spacing:.05em}
.rh-btn-gold{background:#c8a96e;color:#0a0a0a}
.rh-btn-gold:hover{background:#d4b87e;transform:translateY(-2px);box-shadow:0 8px 24px rgba(200,169,110,.4)}
.rh-btn-line-hero{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.5)}
.rh-btn-line-hero:hover{border-color:#06C755;color:#06C755;transform:translateY(-2px)}
.rh-scroll-hint{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:8px;z-index:1;color:rgba(248,245,240,.45);font-size:.62rem;letter-spacing:.25em}
.rh-scroll-line{width:1px;height:48px;background:linear-gradient(to bottom,rgba(200,169,110,.9),transparent);animation:rh-scroll 1.6s ease-in-out infinite}
@keyframes rh-scroll{0%,100%{opacity:0;transform:scaleY(0) translateY(0)}50%{opacity:1;transform:scaleY(1) translateY(0)}}

/* STORY */
.rh-story{display:flex;min-height:70vh;background:#0d0d0d}
.rh-story-text{width:45%;display:flex;flex-direction:column;justify-content:center;padding:80px 6%}
.rh-story-label{font-size:.64rem;letter-spacing:.32em;color:#c8a96e;text-transform:uppercase;margin-bottom:1.2rem;font-family:var(--font-sans)}
.rh-story-title{font-family:var(--font-serif);font-size:clamp(1.9rem,3vw,3rem);color:#f8f5f0;font-weight:700;margin-bottom:2rem;line-height:1.3}
.rh-story-body{font-size:.88rem;line-height:2.3;color:rgba(248,245,240,.62);margin-bottom:2.5rem;font-family:var(--font-sans)}
.rh-link-arrow{display:inline-flex;align-items:center;gap:10px;color:#c8a96e;text-decoration:none;font-size:.83rem;letter-spacing:.12em;padding-bottom:4px;border-bottom:1px solid rgba(200,169,110,.35);transition:gap .2s,border-color .2s}
.rh-link-arrow:hover{gap:18px;border-color:#c8a96e}
.rh-story-photo{width:55%;overflow:hidden}
.rh-story-photo img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .7s ease}
.rh-story-photo:hover img{transform:scale(1.04)}

/* FEATURES */
.rh-features{display:flex;background:#111;border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05)}
.rh-feature{flex:1;padding:44px 24px;display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;border-right:1px solid rgba(255,255,255,.05)}
.rh-feature:last-child{border-right:none}
.rh-feature-icon{font-size:1.9rem;margin-bottom:4px}
.rh-feature strong{color:#f8f5f0;font-size:.84rem;font-weight:600;letter-spacing:.06em}
.rh-feature span{color:rgba(248,245,240,.42);font-size:.74rem}

/* POSTS */
.rh-posts{background:#0a0a0a;padding:100px 0}
.rh-posts-inner{max-width:860px;margin:0 auto;padding:0 2rem}
.rh-section-head{margin-bottom:3rem}
.rh-section-label{display:block;font-size:.64rem;letter-spacing:.32em;color:#c8a96e;text-transform:uppercase;margin-bottom:.8rem;font-family:var(--font-sans)}
.rh-section-title{font-family:var(--font-serif);font-size:1.9rem;color:#f8f5f0;font-weight:700}
.rh-post-list{display:flex;flex-direction:column}
.rh-post-item{display:flex;align-items:center;gap:20px;padding:22px 16px;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.06);transition:background .2s,padding-left .2s;border-radius:4px}
.rh-post-item:first-child{border-top:1px solid rgba(255,255,255,.06)}
.rh-post-item:hover{background:rgba(200,169,110,.06);padding-left:26px}
.rh-post-item-img{width:80px;height:60px;flex-shrink:0;border-radius:3px;overflow:hidden;background:#1a1a1a}
.rh-post-item-img img{width:100%;height:100%;object-fit:cover}
.rh-post-no-img{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.5rem}
.rh-post-item-body{flex:1}
.rh-post-date{display:block;font-size:.7rem;color:rgba(200,169,110,.72);margin-bottom:5px;letter-spacing:.1em;font-family:var(--font-sans)}
.rh-post-title-text{font-size:.92rem;color:#f8f5f0;font-weight:500;margin:0;line-height:1.5}
.rh-post-arr{color:rgba(200,169,110,.45);font-size:1.5rem;transition:color .2s}
.rh-post-item:hover .rh-post-arr{color:#c8a96e}
.rh-posts-cta{text-align:center;margin-top:3rem}
.rh-btn-outline{display:inline-block;padding:13px 36px;border:1px solid rgba(200,169,110,.4);color:#c8a96e;text-decoration:none;font-size:.82rem;letter-spacing:.16em;border-radius:4px;transition:all .25s;font-family:var(--font-sans)}
.rh-btn-outline:hover{border-color:#c8a96e;background:rgba(200,169,110,.08)}

/* BUY CTA */
.rh-cta{background:#c8a96e;padding:80px 2rem;text-align:center}
.rh-cta-inner{max-width:600px;margin:0 auto}
.rh-cta-label{display:block;font-size:.68rem;letter-spacing:.22em;color:rgba(10,10,10,.58);margin-bottom:1rem;text-transform:uppercase}
.rh-cta-title{font-family:var(--font-serif);font-size:clamp(1.5rem,3vw,2.3rem);color:#0a0a0a;font-weight:900;margin-bottom:.8rem}
.rh-cta-sub{font-size:.84rem;color:rgba(10,10,10,.6);margin-bottom:2rem}
.rh-btn-gold-lg{display:inline-flex;align-items:center;gap:10px;padding:16px 40px;background:#0a0a0a;color:#c8a96e;font-size:.95rem;font-weight:700;border-radius:4px;text-decoration:none;letter-spacing:.06em;transition:all .25s}
.rh-btn-gold-lg:hover{background:#1a1a1a;transform:translateY(-2px);box-shadow:0 10px 30px rgba(0,0,0,.35)}

/* LINE */
.rh-line{background:#0d0d0d;padding:80px 2rem;text-align:center;border-top:1px solid rgba(6,199,85,.12)}
.rh-line-inner{max-width:480px;margin:0 auto}
.rh-line-icon{font-size:3rem;margin-bottom:1rem}
.rh-line-title{font-family:var(--font-serif);font-size:1.6rem;color:#f8f5f0;margin-bottom:.8rem;font-weight:700}
.rh-line-sub{font-size:.87rem;color:rgba(248,245,240,.52);margin-bottom:1.2rem;line-height:1.9}
.rh-line-id{font-size:1.1rem;font-weight:700;color:#06C755;margin-bottom:1.8rem;letter-spacing:.06em}
.rh-btn-line-lg{display:inline-flex;align-items:center;gap:10px;padding:15px 36px;background:#06C755;color:#fff;font-size:.94rem;font-weight:700;border-radius:4px;text-decoration:none;transition:all .25s}
.rh-btn-line-lg:hover{background:#05b34b;transform:translateY(-2px);box-shadow:0 8px 24px rgba(6,199,85,.32)}

/* RESPONSIVE */
@media(max-width:768px){
  .rh-story{flex-direction:column}
  .rh-story-text{width:100%;padding:60px 5%}
  .rh-story-photo{width:100%;height:60vw}
  .rh-features{flex-wrap:wrap}
  .rh-feature{width:50%;flex:none}
  .rh-hero-btns{flex-direction:column;align-items:center}
  .rh-btn{width:100%;max-width:300px;justify-content:center}
}
