
:root{
  --ink:#1f2937;
  --deep:#2f2414;
  --brown:#6b4f1d;
  --gold:#b89b5e;
  --paper:#fffaf0;
  --sand:#f7f4ee;
  --line:#ead8b7;
  --muted:#6b7280;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Mincho ProN","Yu Mincho","Hiragino Sans","Yu Gothic","Meiryo",serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left,rgba(184,155,94,.22),transparent 34%),
    linear-gradient(180deg,#fbf7ed 0%,#f7f4ee 42%,#efe6d5 100%);
  line-height:1.9;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.28) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.22) 1px,transparent 1px);
  background-size:38px 38px;
  opacity:.35;
  z-index:-1;
}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,250,240,.92);
  border-bottom:1px solid rgba(184,155,94,.35);
  backdrop-filter:blur(12px);
}
.nav{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:13px 20px;
}
.logo{
  text-decoration:none;
  font-weight:900;
  color:var(--deep);
  letter-spacing:.12em;
  font-size:20px;
}
.logo span{
  display:block;
  font-size:11px;
  color:var(--brown);
  letter-spacing:.08em;
  font-weight:700;
  line-height:1.2;
}
.menu{display:flex;gap:7px;flex-wrap:wrap;justify-content:flex-end}
.menu a{
  text-decoration:none;
  color:#553f16;
  font-weight:800;
  font-size:14px;
  padding:8px 11px;
  border-radius:999px;
}
.menu a:hover{background:#efe2c8}
.hero{
  min-height:86vh;
  display:flex;
  align-items:flex-end;
  position:relative;
  padding:34px 20px;
  background:
    linear-gradient(90deg,rgba(20,15,9,.72) 0%,rgba(20,15,9,.42) 45%,rgba(20,15,9,.22) 100%),
    linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.58) 100%),
    url("images/photo1.jpg") center/cover no-repeat;
  color:#fff;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-180px;
  width:520px;
  height:520px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  box-shadow:0 0 0 36px rgba(255,255,255,.05),0 0 0 80px rgba(255,255,255,.03);
}
.hero-inner{
  width:100%;
  max-width:1180px;
  margin:0 auto 34px;
  position:relative;
  z-index:1;
  text-shadow:0 2px 24px rgba(0,0,0,.45);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:7px 16px;
  border:1px solid rgba(255,255,255,.75);
  border-radius:999px;
  background:rgba(0,0,0,.24);
  font-size:14px;
  margin-bottom:18px;
  backdrop-filter:blur(5px);
}
.eyebrow:before{content:"";width:8px;height:8px;background:#d9c28b;border-radius:50%}
h1{
  margin:0;
  font-size:clamp(48px,10vw,104px);
  letter-spacing:.14em;
  line-height:1.02;
  font-weight:900;
}
.subtitle{
  margin:14px 0 0;
  font-size:clamp(18px,4vw,29px);
  font-weight:900;
}
.hero-text{
  max-width:780px;
  margin:20px 0 28px;
  font-size:clamp(16px,2.6vw,19px);
}
.buttons{display:flex;flex-wrap:wrap;gap:13px;margin-top:24px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  text-decoration:none;
  padding:13px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,#78591f,#4f3914);
  color:#fff;
  font-weight:900;
  min-width:220px;
  text-align:center;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.18);
}
.button.secondary{
  background:rgba(255,255,255,.94);
  color:#5a4217;
  border:1px solid rgba(184,155,94,.55);
}
.button.ghost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
}
.quick-info{
  max-width:1180px;
  margin:-42px auto 0;
  padding:0 20px;
  position:relative;
  z-index:3;
}
.quick-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.quick-card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(184,155,94,.32);
  box-shadow:0 16px 36px rgba(47,36,20,.12);
  border-radius:22px;
  padding:20px;
}
.quick-card strong{
  display:block;
  color:var(--brown);
  font-size:14px;
  margin-bottom:4px;
}
.quick-card span{font-weight:900;color:var(--deep)}
.page-title{
  padding:72px 20px 48px;
  background:
    linear-gradient(135deg,rgba(255,250,240,.92),rgba(238,226,200,.92)),
    url("images/photo6.jpg") center/cover no-repeat;
  text-align:center;
}
.page-title h1{
  color:var(--deep);
  text-shadow:none;
  font-size:clamp(36px,8vw,68px);
}
.page-title p{
  max-width:780px;
  margin:18px auto 0;
  font-weight:900;
  color:#4f3914;
}
section{padding:70px 20px}
.container{max-width:1180px;margin:0 auto}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}
.section-kicker{
  color:var(--brown);
  font-weight:900;
  letter-spacing:.12em;
  font-size:13px;
}
.card{
  background:rgba(255,255,255,.96);
  border-radius:26px;
  padding:34px 26px;
  box-shadow:0 16px 38px rgba(47,36,20,.10);
  border:1px solid rgba(184,155,94,.25);
}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
h2{
  margin:0 0 18px;
  color:var(--deep);
  font-size:clamp(28px,5.6vw,44px);
  letter-spacing:.04em;
  line-height:1.32;
}
h3{margin:22px 0 8px;color:#5a4217;font-size:22px}
.lead{font-size:19px;font-weight:900;margin:0 0 16px;color:#332615}
.info{display:grid;gap:12px;margin-top:24px}
.info-row{
  padding:17px;
  border-radius:18px;
  background:var(--paper);
  border:1px solid var(--line);
}
.info-row strong{display:block;color:var(--brown);margin-bottom:4px}
.list{padding-left:1.2em}
.list li{margin:.45em 0}
.photo{
  width:100%;
  height:270px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 12px 28px rgba(47,36,20,.13);
  background:#ddd;
}
.photo.tall{height:430px}
.photo-frame{
  position:relative;
}
.photo-frame:before{
  content:"";
  position:absolute;
  inset:18px -12px -12px 18px;
  border:1px solid rgba(184,155,94,.42);
  border-radius:24px;
  z-index:-1;
}
.gallery{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:14px;
  margin-top:24px;
}
.gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 24px rgba(47,36,20,.11);
  background:#ddd;
}
.gallery img:first-child{
  grid-row:span 2;
  height:494px;
}
.service-list{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:20px}
.service-box{
  padding:22px 18px;
  border-radius:22px;
  background:linear-gradient(180deg,#fff,#fffaf0);
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(47,36,20,.08);
}
.service-box strong{display:block;color:var(--brown);font-size:18px;margin-bottom:7px}
.faq{display:grid;gap:14px;margin-top:18px}
.faq-item{
  padding:20px;
  border-radius:18px;
  background:#fffaf0;
  border:1px solid #ead8b7;
}
.faq-item h3{margin:0 0 6px;font-size:19px}
.breadcrumbs{font-size:13px;color:var(--muted);margin-bottom:14px}
.map-wrap{
  margin-top:24px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(47,36,20,.16);
  background:#ddd;
  border:1px solid rgba(184,155,94,.3);
}
.map-wrap iframe{display:block;width:100%;height:460px;border:0}
.notice{font-size:14px;color:var(--muted);margin-top:20px}
.cta{
  background:
    linear-gradient(135deg,rgba(47,36,20,.94),rgba(86,63,22,.94)),
    url("images/photo5.jpg") center/cover no-repeat;
  color:#fff;
  text-align:center;
}
.cta h2{color:#fff}
.cta .container{max-width:900px}
footer{
  padding:34px 20px;
  background:#20180d;
  color:#fff;
  text-align:center;
  font-size:14px;
}
@media(max-width:880px){
  .nav{align-items:flex-start;flex-direction:column}
  .menu{justify-content:flex-start}
  .hero{min-height:76vh}
  .quick-grid,.grid,.grid-3{grid-template-columns:1fr}
  .service-list{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .gallery img:first-child{grid-row:auto;height:220px}
  .gallery img{height:180px}
  .button{width:100%}
  .photo.tall{height:300px}
}
@media(max-width:520px){
  .service-list{grid-template-columns:1fr}
  .quick-info{margin:-28px auto 0}
  section{padding:56px 16px}
  .card{padding:26px 20px}
  .gallery{grid-template-columns:1fr}
  .gallery img,.gallery img:first-child{height:220px}
  .map-wrap iframe{height:330px}
}
