*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
overflow-x:hidden;
width:100%;
}

body{
font-family:"Noto Serif JP",serif;
background:#121212;
color:#fff;
line-height:2;
letter-spacing:.05em;
overflow-x:hidden;
width:100%;
max-width:100vw;
}

a{
text-decoration:none;
color:inherit;
}

img{
width:100%;
display:block;
object-fit:cover;
}

/* =========================
HEADER
========================= */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 5%;
background:transparent;
color:#fff;
transition:transform .35s ease, background .35s ease;
}

.header.hide{
transform:translateY(-120%);
}

@supports (animation-timeline: scroll()){
.header{
animation:headerAutoHide linear both;
animation-timeline:scroll(root);
animation-range:120px 240px;
}

@keyframes headerAutoHide{
from{
transform:translateY(0);
}
to{
transform:translateY(-120%);
}
}
}

.logo{
font-family:"Bebas Neue",sans-serif;
font-size:58px;
font-weight:400;
letter-spacing:.08em;
line-height:1;
white-space:nowrap;
display:flex;
flex-direction:column;
align-items:flex-start;
width:260px;
max-width:26vw;
overflow:hidden;
flex-shrink:0;
}

.logo-image-crop{
display:block;
width:260px;
height:50px;
max-width:100%;
overflow:hidden;
position:relative;
}

.logo-mark{
width:360px;
max-width:none;
height:auto;
object-fit:contain;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-45%);
}

.logo > span:not(.logo-image-crop){
display:block;
font-family:"Noto Serif JP",serif;
font-size:11px;
font-weight:400;
color:#b8a46a;
margin-top:10px;
letter-spacing:.12em;
}

.nav{
display:flex;
gap:28px;
font-size:13px;
letter-spacing:.11em;
}

.menu-toggle{
display:none;
width:44px;
height:44px;
align-items:center;
justify-content:center;
flex-direction:column;
gap:6px;
border:1px solid rgba(255,255,255,.26);
background:rgba(0,0,0,.22);
color:#fff;
cursor:pointer;
position:relative;
z-index:1001;
}

.menu-toggle span{
display:block;
width:20px;
height:1px;
background:#fff;
transition:.3s;
}

.menu-toggle.open span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2){
opacity:0;
}

.menu-toggle.open span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

.nav a{
position:relative;
transition:.3s;
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:1px;
background:#b8a46a;
transition:.3s;
}

.nav a:hover{
color:#b8a46a;
}

.nav a:hover::after{
width:100%;
}

.tel{
font-size:25px;
font-weight:500;
letter-spacing:.04em;
white-space:nowrap;
}

/* =========================
HERO
========================= */

.hero{
min-height:100vh;
position:relative;
display:flex;
align-items:center;
padding:140px 5% 80px;
overflow:hidden;
color:#fff;
}

.hero::before{
content:"";
position:absolute;
inset:0;
background:
linear-gradient(
90deg,
rgba(0,0,0,.82) 0%,
rgba(0,0,0,.62) 32%,
rgba(0,0,0,.32) 60%,
rgba(0,0,0,.12) 82%,
rgba(0,0,0,.02) 100%
),
url("main.jpg") center/cover no-repeat;
transform:scale(1.04);
animation:zoom 13s ease-in-out infinite alternate;
}

@keyframes zoom{
from{transform:scale(1.04);}
to{transform:scale(1.1);}
}

.hero-inner{
position:relative;
z-index:2;
max-width:720px;
}

.hero-sub{
font-size:14px;
color:#e0e0e0;
letter-spacing:.14em;
margin-bottom:28px;
}

.hero-line{
width:90px;
height:1px;
background:rgba(255,255,255,.72);
margin-bottom:38px;
}

.hero h1{
font-size:clamp(34px,4.2vw,60px);
font-weight:500;
line-height:1.55;
letter-spacing:.03em;
margin-bottom:34px;
}

.hero p{
font-size:16px;
color:#d8d8d8;
line-height:2.3;
margin-bottom:48px;
}

/* =========================
BUTTON
========================= */

.buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 36px;
border:1px solid rgba(255,255,255,.26);
background:rgba(255,255,255,.035);
font-size:13px;
letter-spacing:.12em;
transition:.35s;
min-width:200px;
color:#fff;
cursor:pointer;
}

.btn.primary{
background:#fff;
color:#111;
border-color:#fff;
}

.btn:hover{
background:#b8a46a;
color:#111;
border-color:#b8a46a;
transform:translateY(-2px);
}

/* =========================
SECTION
========================= */

.section{
position:relative;
padding:125px 5%;
background:linear-gradient(180deg,#1c1c1c,#171717);
color:#fff;
}

.section::before{
content:"";
position:absolute;
top:0;
left:5%;
right:5%;
height:1px;
background:linear-gradient(90deg,transparent,rgba(184,164,106,.35),transparent);
}

.section-title{
text-align:center;
margin-bottom:78px;
}

.section-title small{
display:block;
font-size:13px;
letter-spacing:.32em;
color:#b8a46a;
margin-bottom:16px;
}

.section-title h2{
font-size:38px;
font-weight:500;
letter-spacing:.12em;
}

/* =========================
CARD
========================= */

.grid-4{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:26px;
}

.card{
background:linear-gradient(145deg,#2c2c2c,#181818);
border:1px solid rgba(255,255,255,.11);
padding:0 0 36px;
transition:.4s;
overflow:hidden;
box-shadow:0 24px 70px rgba(0,0,0,.32);
border-radius:6px;
}

.card:hover{
transform:translateY(-8px);
border-color:rgba(184,164,106,.75);
}

.card img{
height:220px;
margin-bottom:28px;
filter:brightness(.94);
transition:1s;
}

.card:hover img{
filter:brightness(1);
transform:scale(1.04);
}

.card h3{
font-size:21px;
font-weight:500;
margin:0 28px 16px;
}

.card p{
font-size:14px;
color:#d4d4d4;
line-height:2.1;
margin:0 28px;
}

/* =========================
SERVICE
========================= */

.service-list{
display:flex;
flex-direction:column;
gap:96px;
}

.service-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:64px;
align-items:center;
color:inherit;
}

.service-row.reverse .service-image{
order:2;
}

.service-row.reverse .service-text{
order:1;
padding-left:80px;
}

.service-image{
overflow:hidden;
height:285px;
background:#111;
border:1px solid rgba(255,255,255,.1);
border-radius:6px;
box-shadow:0 24px 70px rgba(0,0,0,.28);
}

.service-image img{
width:100%;
height:100%;
transition:1s;
filter:brightness(.94);
}

.service-row:hover .service-image img{
transform:scale(1.05);
filter:brightness(1);
}

.service-text h3{
font-size:34px;
font-weight:500;
margin-bottom:22px;
letter-spacing:.05em;
}

.service-text p{
font-size:15px;
line-height:2.4;
color:#d4d4d4;
}

/* =========================
PAGE HERO
========================= */

.page-hero{
min-height:420px;
position:relative;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:140px 5% 80px;
overflow:hidden;
color:#fff;
}

.page-hero::before{
content:"";
position:absolute;
inset:0;
background:
linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.76)),
url("main.jpg") center/cover no-repeat;
transform:scale(1.04);
}

.company-hero::before{
background:
linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.78)),
url("exterior.jpg") center/cover no-repeat;
}

.page-hero small,
.page-hero h1{
position:relative;
z-index:1;
}

.page-hero small{
display:block;
font-size:14px;
letter-spacing:.32em;
color:#b8a46a;
margin-bottom:18px;
}

.page-hero h1{
font-size:clamp(38px,5vw,64px);
font-weight:500;
letter-spacing:.14em;
}

/* =========================
COMPANY
========================= */

.company-section{
background:#f5f2eb;
color:#111;
padding:110px 5% 120px;
}

.company-section::before{
display:none;
}

.company-intro{
max-width:980px;
margin:0 auto 70px;
text-align:center;
}

.company-intro small{
display:block;
font-size:13px;
letter-spacing:.3em;
color:#b8a46a;
margin-bottom:20px;
}

.company-intro h2{
font-size:38px;
font-weight:500;
line-height:1.8;
letter-spacing:.08em;
margin-bottom:32px;
}

.company-intro p{
font-size:15px;
line-height:2.45;
color:#444;
margin-bottom:20px;
}

.company-table{
max-width:980px;
margin:0 auto;
background:#fff;
border:1px solid #e2dacd;
box-shadow:0 18px 48px rgba(0,0,0,.08);
}

.company-row{
display:grid;
grid-template-columns:220px 1fr;
border-bottom:1px solid #e8e0d3;
}

.company-row:last-child{
border-bottom:none;
}

.company-head{
display:flex;
align-items:center;
padding:24px 28px;
background:#201f1d;
color:#b8a46a;
font-size:14px;
font-weight:600;
letter-spacing:.12em;
}

.company-data{
padding:24px 34px;
font-size:15px;
line-height:2.1;
color:#222;
background:#fff;
}

/* =========================
CONTACT
========================= */

.contact-section{
background:#f5f2eb;
color:#111;
padding:105px 5% 115px;
}

.contact-section::before{
display:none;
}

.contact-intro{
max-width:920px;
margin:0 auto 56px;
text-align:center;
}

.contact-intro h2{
font-size:36px;
font-weight:500;
line-height:1.75;
letter-spacing:.06em;
margin-bottom:24px;
}

.contact-intro p{
font-size:15px;
line-height:2.3;
color:#444;
}

.contact-wrap{
max-width:1120px;
margin:0 auto;
display:grid;
grid-template-columns:.82fr 1.18fr;
gap:28px;
align-items:start;
}

.contact-info,
.contact-form{
background:#fff;
border:1px solid #e2dacd;
box-shadow:0 18px 48px rgba(0,0,0,.08);
border-radius:6px;
}

.contact-info{
padding:38px 36px;
}

.contact-info h3{
font-size:24px;
font-weight:500;
letter-spacing:.06em;
margin-bottom:18px;
}

.contact-info p{
font-size:14px;
line-height:2.1;
color:#444;
}

.contact-tel{
display:block;
font-size:34px;
line-height:1.4;
letter-spacing:.06em;
color:#111;
margin:22px 0 12px;
}

.contact-time{
color:#777;
}

.contact-form{
padding:34px 36px 38px;
display:grid;
gap:22px;
}

.contact-form label{
display:grid;
gap:9px;
font-size:14px;
font-weight:500;
letter-spacing:.08em;
color:#222;
}

.contact-form input,
.contact-form textarea{
width:100%;
border:1px solid #d8cfbf;
background:#fbfaf7;
padding:14px 16px;
font:inherit;
font-size:15px;
line-height:1.7;
color:#111;
border-radius:4px;
outline:none;
transition:.25s;
}

.contact-form textarea{
min-height:170px;
resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#b8a46a;
background:#fff;
box-shadow:0 0 0 3px rgba(184,164,106,.14);
}

.contact-submit{
display:flex;
justify-content:flex-end;
}

/* =========================
CONCEPT
========================= */

.concept-section{
position:relative;
padding:135px 5%;
background:linear-gradient(180deg,#181818,#202020);
text-align:center;
color:#fff;
}

.concept-section::before{
content:"";
position:absolute;
top:0;
left:5%;
right:5%;
height:1px;
background:linear-gradient(90deg,transparent,rgba(184,164,106,.35),transparent);
}

.concept-inner{
max-width:920px;
margin:0 auto;
}

.concept-inner small{
display:block;
font-size:13px;
letter-spacing:.32em;
color:#b8a46a;
margin-bottom:22px;
}

.concept-inner h2{
font-size:38px;
font-weight:500;
letter-spacing:.08em;
line-height:1.8;
margin-bottom:34px;
}

.concept-inner p{
font-size:15px;
color:#d4d4d4;
line-height:2.65;
margin-bottom:28px;
}

/* =========================
WORKS
========================= */

.works-section{
background:linear-gradient(180deg,#242424,#181818);
overflow:hidden;
}

.works-slider{
overflow-x:auto;
padding-bottom:12px;
}

.works-slider::-webkit-scrollbar{
height:6px;
}

.works-slider::-webkit-scrollbar-thumb{
background:rgba(255,255,255,.25);
border-radius:10px;
}

.works-track{
display:flex;
gap:28px;
width:max-content;
animation:worksScroll 45s linear infinite;
}

.works-slider:hover .works-track{
animation-play-state:paused;
}

@keyframes worksScroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-45%);
}
}

.works-slide{
width:420px;
background:linear-gradient(145deg,#303030,#1c1c1c);
border:1px solid rgba(255,255,255,.12);
overflow:hidden;
box-shadow:0 22px 65px rgba(0,0,0,.3);
flex-shrink:0;
border-radius:6px;
}

.works-slide img{
height:300px;
transition:1s;
filter:brightness(.9);
}

.works-slide:hover img{
transform:scale(1.06);
filter:brightness(1);
}

.works-slide h3{
font-size:21px;
font-weight:500;
margin:24px 24px 10px;
}

.works-slide p{
font-size:14px;
color:#d4d4d4;
line-height:2;
margin:0 24px 28px;
}

/* =========================
WORKS PAGE
========================= */

.works-hero::before{
background:
linear-gradient(rgba(0,0,0,.56),rgba(0,0,0,.78)),
url("mansion-ldk-01-after.jpg") center/cover no-repeat;
}

.works-lead{
background:#f5f2eb;
color:#111;
padding:92px 5% 82px;
}

.works-lead-inner{
max-width:980px;
margin:0 auto;
}

.works-lead small,
.works-note span,
.feature-work-copy span,
.case-category,
.finish-card span{
display:block;
font-size:12px;
letter-spacing:.24em;
color:#b8a46a;
margin-bottom:14px;
}

.works-lead h2{
font-size:38px;
font-weight:500;
line-height:1.75;
letter-spacing:.06em;
margin-bottom:24px;
}

.works-lead p{
font-size:15px;
line-height:2.4;
color:#444;
}

.works-feature{
display:grid;
grid-template-columns:1.25fr 1fr;
grid-auto-rows:330px;
gap:22px;
padding:0 5% 110px;
background:#f5f2eb;
}

.feature-work{
position:relative;
overflow:hidden;
border-radius:6px;
background:#111;
color:#fff;
box-shadow:0 24px 70px rgba(0,0,0,.16);
}

.feature-work-large{
grid-row:span 2;
}

.feature-work img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.78);
transition:1s;
}

.feature-work:hover img{
transform:scale(1.04);
filter:brightness(.92);
}

.feature-work-copy{
position:absolute;
left:0;
right:0;
bottom:0;
padding:34px;
background:linear-gradient(180deg,transparent,rgba(0,0,0,.82));
}

.feature-work-copy h2{
font-size:36px;
font-weight:500;
letter-spacing:.06em;
line-height:1.45;
margin-bottom:12px;
}

.feature-work-copy p{
font-size:14px;
line-height:2;
color:#e0e0e0;
}

.works-catalog,
.works-gallery-section{
background:linear-gradient(180deg,#1c1c1c,#151515);
padding:120px 5%;
color:#fff;
}

.works-gallery-section{
padding-top:0;
}

.case-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:28px;
}

.case-card{
background:linear-gradient(145deg,#2a2a2a,#181818);
border:1px solid rgba(255,255,255,.1);
border-radius:6px;
overflow:hidden;
box-shadow:0 24px 70px rgba(0,0,0,.32);
}

.ba-pair{
display:grid;
grid-template-columns:1fr 1fr;
gap:1px;
background:rgba(255,255,255,.08);
}

.ba-pair figure{
position:relative;
height:260px;
overflow:hidden;
background:#0f0f0f;
}

.ba-pair figure span{
position:absolute;
top:14px;
left:14px;
z-index:2;
display:inline-flex;
align-items:center;
justify-content:center;
min-width:78px;
height:28px;
padding:0 12px;
background:rgba(0,0,0,.68);
border:1px solid rgba(255,255,255,.18);
font-size:11px;
letter-spacing:.16em;
color:#fff;
}

.ba-pair img{
height:100%;
object-fit:cover;
transition:.8s;
}

.case-card:hover .ba-pair img{
transform:scale(1.035);
}

.case-body{
padding:28px 30px 34px;
}

.case-body h3{
font-size:24px;
font-weight:500;
letter-spacing:.06em;
margin-bottom:14px;
}

.case-body p{
font-size:14px;
line-height:2.15;
color:#d4d4d4;
}

.finish-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:24px;
}

.finish-card{
background:linear-gradient(145deg,#292929,#171717);
border:1px solid rgba(255,255,255,.1);
border-radius:6px;
overflow:hidden;
box-shadow:0 24px 70px rgba(0,0,0,.28);
transition:.35s;
}

.finish-card:hover{
transform:translateY(-6px);
border-color:rgba(184,164,106,.56);
}

.finish-card-wide{
grid-column:span 2;
}

.finish-card img{
height:260px;
object-fit:cover;
filter:brightness(.94);
}

.finish-card div{
padding:24px 26px 30px;
}

.finish-card h3{
font-size:22px;
font-weight:500;
letter-spacing:.06em;
margin-bottom:12px;
}

.finish-card p{
font-size:13px;
line-height:2;
color:#d4d4d4;
}

.works-note{
display:grid;
grid-template-columns:1fr 1.1fr;
gap:46px;
align-items:center;
padding:105px 5%;
background:#f5f2eb;
color:#111;
}

.works-note h2{
font-size:34px;
font-weight:500;
line-height:1.7;
letter-spacing:.06em;
margin-bottom:20px;
}

.works-note p{
font-size:14px;
line-height:2.3;
color:#444;
}

.note-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:14px;
}

.note-gallery img{
height:210px;
border-radius:6px;
object-fit:cover;
box-shadow:0 18px 48px rgba(0,0,0,.12);
}

/* =========================
INSTAGRAM
========================= */

.instagram-text{
font-size:15px;
color:#d4d4d4;
line-height:2.2;
margin-bottom:28px;
letter-spacing:.05em;
}

.instagram-text{
font-size:0;
}

.instagram-text::before{
content:"施工事例や日々の工事風景を";
display:block;
font-size:15px;
line-height:2.2;
}

.instagram-text::after{
content:"でもご紹介しています。";
display:inline-block;
min-height:26px;
padding-left:38px;
background:url("Instagramlogo.jpg") left center/34px 34px no-repeat;
font-size:15px;
line-height:2.2;
}

.instagram-button{
display:inline-flex;
align-items:center;
gap:12px;
padding:16px 32px;
border:1px solid #b8a46a;
color:#fff;
text-decoration:none;
font-size:15px;
letter-spacing:.08em;
transition:.3s;
}

.instagram-button > img{
display:none;
}

.instagram-button::before{
content:"";
display:inline-block;
width:28px;
height:28px;
border-radius:8px;
background:url("Instagramlogo.jpg") center/134% 134% no-repeat;
flex-shrink:0;
overflow:hidden;
}

.instagram-logo{
width:auto;
height:24px;
max-width:112px;
object-fit:contain;
display:inline-block;
vertical-align:middle;
}

.instagram-wordmark{
display:inline-flex;
align-items:center;
vertical-align:middle;
margin:0 4px;
}

.instagram-wordmark img{
width:auto;
height:24px;
max-width:116px;
object-fit:contain;
display:block;
}

.instagram-button:hover{
background:#b8a46a;
color:#111;
transform:translateY(-2px);
}

/* =========================
CTA
========================= */

.cta{
padding:145px 5%;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.82)),
url("main.jpg") center/cover no-repeat;
color:#fff;
}

.cta h2{
font-size:42px;
font-weight:500;
line-height:1.7;
letter-spacing:.08em;
margin-bottom:28px;
}

.cta-nowrap{
white-space:nowrap;
}

.cta p{
font-size:16px;
color:#d0d0d0;
margin-bottom:40px;
}

.cta .buttons{
justify-content:center;
}

/* =========================
FOOTER
========================= */

.footer{
position:relative;
background:
radial-gradient(circle at 14% 0%,rgba(184,164,106,.18),transparent 36%),
linear-gradient(135deg,#0b0b0b 0%,#17140f 52%,#080808 100%);
border-top:1px solid rgba(184,164,106,.28);
color:#fff;
overflow:hidden;
}

.footer::after{
content:"";
position:absolute;
left:0;
right:0;
top:0;
height:1px;
background:linear-gradient(90deg,transparent,rgba(184,164,106,.7),transparent);
}

.footer-inner{
position:relative;
max-width:1220px;
margin:0 auto;
padding:64px 5%;
display:grid;
grid-template-columns:minmax(0,1.3fr) minmax(240px,.7fr);
align-items:start;
gap:46px;
}

.footer-logo{
font-family:"Bebas Neue",sans-serif;
font-size:56px;
font-weight:400;
letter-spacing:.08em;
margin-bottom:16px;
line-height:1;
width:min(430px,100%);
height:58px;
position:relative;
overflow:hidden;
}

.footer-brand p,
.footer-lead{
font-size:13px;
line-height:2.1;
color:#d0d0d0;
}

.footer-brand::after{
content:"住宅リフォーム / 店舗内装 / リノベーション / 外構工事";
display:inline-flex;
margin-top:22px;
border:1px solid rgba(184,164,106,.28);
background:rgba(255,255,255,.04);
color:#cdbd88;
font-size:11px;
letter-spacing:.08em;
line-height:1.8;
padding:8px 12px;
}

.footer-tags{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-top:22px;
}

.footer-tags span{
border:1px solid rgba(184,164,106,.28);
background:rgba(255,255,255,.04);
color:#cdbd88;
font-size:11px;
letter-spacing:.08em;
padding:7px 11px;
}

.footer-links h3,
.footer-contact-label{
display:block;
margin-bottom:18px;
font-family:"Bebas Neue",sans-serif;
font-size:24px;
font-weight:400;
letter-spacing:.14em;
color:#b8a46a;
line-height:1;
}

.footer-nav{
display:grid;
gap:11px;
}

.footer-nav a{
color:#d8d8d8;
font-size:13px;
letter-spacing:.06em;
text-decoration:none;
transition:.25s;
}

.footer-nav a:hover{
color:#b8a46a;
transform:translateX(3px);
}

.footer-contact{
display:flex;
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.footer-contact p{
margin:0;
font-size:12px;
line-height:1.8;
letter-spacing:.06em;
color:#a5a5a5;
}

.footer-tel{
font-size:30px;
letter-spacing:.08em;
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-tel:hover{
opacity:.7;
}

.footer-instagram{
display:inline-flex;
align-items:center;
gap:10px;
margin-top:2px;
padding:10px 14px;
border:1px solid rgba(184,164,106,.36);
background:rgba(255,255,255,.035);
font-size:14px;
letter-spacing:.08em;
color:#b8a46a;
text-decoration:none;
transition:.3s;
font-size:0;
}

.footer-instagram img,
.footer-instagram span{
display:none;
}

.footer-instagram::before{
content:"";
display:inline-block;
width:28px;
height:28px;
border-radius:8px;
background:url("Instagramlogo.jpg") center/134% 134% no-repeat;
flex-shrink:0;
overflow:hidden;
}

.footer-instagram::after{
content:"@rhhome_yamato";
font-size:14px;
letter-spacing:.08em;
color:#b8a46a;
}

.footer-instagram:hover{
background:rgba(184,164,106,.13);
transform:translateY(-2px);
}

.footer-bottom{
position:relative;
border-top:1px solid rgba(255,255,255,.07);
padding:18px 5%;
text-align:center;
font-size:11px;
letter-spacing:.12em;
color:#8f8466;
background:rgba(0,0,0,.32);
font-size:0;
}

.footer-bottom::after{
content:"© RHHOME All Rights Reserved.";
font-size:11px;
}

/* =========================
MOBILE
========================= */

@media(max-width:1100px){

.tel{
display:none;
}

.header{
padding:18px 5%;
}

.menu-toggle{
display:flex;
margin-left:auto;
}

.nav{
display:none;
position:absolute;
top:74px;
left:5%;
right:5%;
flex-direction:column;
gap:0;
padding:14px 0;
background:rgba(18,18,18,.96);
border:1px solid rgba(255,255,255,.16);
box-shadow:0 22px 60px rgba(0,0,0,.38);
backdrop-filter:blur(12px);
}

.nav.open{
display:flex;
}

.nav a{
display:block;
padding:14px 22px;
font-size:14px;
letter-spacing:.12em;
}

.nav a::after{
display:none;
}

.logo{
font-size:42px;
width:270px;
max-width:72vw;
}

.logo-image-crop{
width:220px;
height:40px;
}

.logo-mark{
width:300px;
}

.logo > span:not(.logo-image-crop){
font-size:9px;
}

.hero{
padding:120px 5% 70px;
}

.hero h1{
font-size:29px;
}

.hero p{
font-size:13px;
}

.section{
padding:90px 5%;
}

.grid-4{
grid-template-columns:1fr;
}

.service-row{
grid-template-columns:1fr;
gap:30px;
}

.service-row.reverse .service-image,
.service-row.reverse .service-text{
order:initial;
padding-left:0;
}

.service-image{
height:220px;
}

.service-text h3{
font-size:24px;
}

.service-text p{
font-size:13px;
line-height:2.1;
}

.page-hero{
min-height:330px;
padding:120px 5% 65px;
}

.page-hero h1{
font-size:38px;
}

.company-section{
padding:80px 5% 90px;
}

.company-intro{
text-align:left;
margin-bottom:46px;
}

.company-intro h2{
font-size:26px;
line-height:1.75;
}

.company-intro p{
font-size:13px;
line-height:2.2;
}

.company-table{
box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.company-row{
grid-template-columns:1fr;
}

.company-head{
padding:16px 20px;
}

.company-data{
padding:18px 20px 22px;
font-size:14px;
line-height:2;
}

.concept-section{
padding:90px 5%;
}

.concept-inner h2{
font-size:26px;
line-height:1.7;
}

.concept-inner p{
font-size:13px;
line-height:2.2;
}

.works-slide{
width:82vw;
}

.works-slide img{
height:220px;
}

.works-slide h3{
font-size:20px;
}

.works-slide p{
font-size:13px;
}

.cta{
padding:100px 5%;
}

.cta h2{
font-size:25px;
line-height:1.65;
letter-spacing:.04em;
}

.footer-inner{
grid-template-columns:1fr;
align-items:flex-start;
padding:48px 5%;
gap:34px;
}

.footer-contact{
align-items:flex-start;
}

.footer-nav{
grid-template-columns:repeat(2,minmax(0,1fr));
column-gap:28px;
}

.footer-logo{
font-size:42px;
width:300px;
max-width:82vw;
height:46px;
}

.footer-lead br{
display:none;
}

.footer-tel{
font-size:24px;
}

.instagram-logo,
.instagram-wordmark img{
height:22px;
max-width:104px;
}

.section-title h2{
font-size:26px;
letter-spacing:.02em;
white-space:nowrap;
}

.works-lead{
padding:74px 5% 58px;
}

.works-lead h2{
font-size:25px;
line-height:1.75;
}

.works-lead p{
font-size:13px;
line-height:2.15;
}

.works-feature{
grid-template-columns:1fr;
grid-auto-rows:auto;
padding:0 5% 78px;
}

.feature-work,
.feature-work-large{
grid-row:auto;
height:360px;
}

.feature-work-copy{
padding:24px;
}

.feature-work-copy h2{
font-size:25px;
}

.feature-work-copy p{
font-size:13px;
line-height:1.9;
}

.works-catalog,
.works-gallery-section{
padding:84px 5%;
}

.works-gallery-section{
padding-top:0;
}

.case-grid,
.finish-grid,
.works-note{
grid-template-columns:1fr;
}

.ba-pair{
grid-template-columns:1fr;
}

.ba-pair figure{
height:250px;
}

.case-body{
padding:24px 22px 28px;
}

.case-body h3,
.finish-card h3{
font-size:20px;
}

.finish-card-wide{
grid-column:auto;
}

.finish-card img{
height:245px;
}

.works-note{
padding:76px 5%;
gap:28px;
}

.works-note h2{
font-size:24px;
}

.note-gallery{
grid-template-columns:1fr;
}

.note-gallery img{
height:230px;
}

.contact-section{
padding:76px 5% 88px;
}

.contact-intro{
text-align:left;
margin-bottom:34px;
}

.contact-intro h2{
font-size:25px;
line-height:1.7;
}

.contact-intro p{
font-size:13px;
line-height:2.1;
}

.contact-wrap{
grid-template-columns:1fr;
gap:22px;
}

.contact-info,
.contact-form{
padding:26px 22px 30px;
}

.contact-info h3{
font-size:20px;
}

.contact-tel{
font-size:28px;
}

.contact-form{
gap:18px;
}

.contact-form input,
.contact-form textarea{
font-size:16px;
padding:13px 14px;
}

.contact-submit{
justify-content:stretch;
}

.contact-submit .btn{
width:100%;
}

}
