/*
Theme Name: Life ReDesign
Theme URI: https://example.com/
Author: Life Re:Design
Description: Life Re:Design original soft pastel WordPress theme.
Version: 1.0
Text Domain: life-redesign
*/

:root{
  --gold:#c79a46;
  --gold-soft:#e4c88b;
  --brown:#4a2d21;
  --pink:#e7a2ad;
  --pink-deep:#d98292;
  --pink-light:#fff3f5;
  --cream:#fffaf8;
  --line:#f4dfe2;
  --white:#ffffff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--brown);
  font-family:"Hiragino Mincho ProN","Yu Mincho",YuMincho,"Noto Serif JP",serif;
  line-height:1.95;
  background:
    linear-gradient(90deg,rgba(255,255,255,.82),rgba(255,246,248,.85)),
    url("assets/images/bg.png");
  background-size:cover;
  background-attachment:fixed;
}

a{color:inherit}
img{max-width:100%;display:block}

.site-header{
  width:100%;
  height:76px;
  padding:0 54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(244,223,226,.8);
  position:sticky;
  top:0;
  z-index:20;
}

.logo{
  text-decoration:none;
  color:var(--gold);
  font-size:29px;
  letter-spacing:.03em;
  font-weight:400;
}

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

.nav a{
  text-decoration:none;
  opacity:.9;
}

.nav a:hover{color:var(--pink-deep)}

.container{
  max-width:1280px;
  margin:0 auto;
  background:rgba(255,255,255,.68);
  box-shadow:0 0 40px rgba(226,180,190,.10);
}

.hero img,
.visual-banner img{
  width:100%;
  height:auto;
}

.section{
  padding:70px 76px;
  background:rgba(255,255,255,.93);
}

.two-col{
  display:grid;
  grid-template-columns:44% 56%;
  align-items:center;
  gap:0;
}

.about{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:0;
  background:rgba(255,255,255,.92);
}

.about-text{
  padding:64px 70px 64px 84px;
}

.about-img img{
  width:100%;
  height:360px;
  object-fit:cover;
}

h1,h2,h3,p{margin-top:0}

h2{
  font-weight:400;
  letter-spacing:.08em;
  font-size:31px;
  line-height:1.55;
  margin-bottom:24px;
}

.gold{color:var(--gold)}
.lead{
  font-size:17px;
  letter-spacing:.04em;
}

.contents{
  text-align:center;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,246,248,.92));
}

.ornament{
  color:var(--gold);
  margin:-12px 0 32px;
  letter-spacing:.12em;
}

.content-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:28px;
}

.content-card img{
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 12px 28px rgba(190,140,140,.14);
}

.content-card p{
  margin:13px 0 0;
  font-size:14px;
  line-height:1.6;
}

.present{
  display:grid;
  grid-template-columns:48% 52%;
  gap:44px;
  align-items:center;
  background:linear-gradient(90deg,#fff,#fff3f5);
}

.label{
  color:var(--pink-deep);
  font-size:14px;
  letter-spacing:.14em;
  margin-bottom:8px;
}

.button,
.small-button,
.outline-button{
  display:inline-block;
  text-decoration:none;
  border-radius:999px;
  letter-spacing:.08em;
  transition:.2s ease;
}

.button{
  background:linear-gradient(90deg,#e59aa5,#d98592);
  color:white;
  padding:13px 54px;
  margin-top:16px;
  box-shadow:0 12px 24px rgba(217,133,146,.24);
}

.button:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(217,133,146,.3)}

.present-visual{
  min-height:260px;
  border-radius:22px;
  background:
    linear-gradient(rgba(255,255,255,.15),rgba(255,255,255,.15)),
    url("assets/images/hero.png");
  background-size:cover;
  background-position:center;
  box-shadow:0 16px 36px rgba(190,140,140,.14);
}

.profile{
  grid-template-columns:36% 64%;
  gap:44px;
}

.profile-photo{
  width:210px;
  height:210px;
  border-radius:50%;
  object-fit:cover;
  margin:auto;
  box-shadow:0 16px 36px rgba(190,140,140,.18);
  border:8px solid rgba(255,255,255,.8);
}

.sub{color:var(--gold);letter-spacing:.08em}

.small-button{
  background:#e4a0aa;
  color:#fff;
  padding:9px 28px;
  margin-top:12px;
  font-size:13px;
}

.blog{
  background:rgba(255,255,255,.96);
  text-align:center;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  text-align:left;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(190,140,140,.12);
}

.blog-card img{
  aspect-ratio:16/9;
  object-fit:cover;
}

.blog-card div{padding:18px 20px 22px}

.blog-card h3{
  margin:0 0 4px;
  font-weight:400;
  font-size:17px;
  line-height:1.55;
}

.blog-card time{
  color:#b7a09d;
  font-size:12px;
}

.outline-button{
  border:1px solid #e5a0a9;
  color:#d98592;
  padding:12px 56px;
  margin-top:36px;
  background:rgba(255,255,255,.72);
}

.final-cta{
  padding:88px 30px 98px;
  text-align:center;
  background:
    linear-gradient(rgba(255,255,255,.70),rgba(255,255,255,.70)),
    url("assets/images/problem.png");
  background-size:cover;
  background-position:center;
}

.final-cta h2{font-size:28px}

.site-footer{
  max-width:1280px;
  margin:0 auto;
  padding:30px;
  text-align:center;
  background:#e7a2ad;
  color:#fff;
  font-size:12px;
  letter-spacing:.08em;
}

.page-content{
  max-width:860px;
  margin:0 auto;
  padding:70px 24px;
  background:rgba(255,255,255,.94);
}

.post-title{
  font-size:34px;
  color:var(--gold);
  text-align:center;
}

@media(max-width:920px){
  .site-header{
    height:auto;
    padding:18px 22px;
    display:block;
    text-align:center;
  }
  .nav{
    margin-top:10px;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 18px;
  }
  .container{box-shadow:none}
  .section{padding:46px 24px}
  .two-col,.present,.profile{
    grid-template-columns:1fr;
  }
  .about-text{padding:46px 24px}
  .about-img img{height:auto}
  .content-grid,.blog-grid{
    grid-template-columns:1fr;
  }
  h2{font-size:25px}
  .logo{font-size:24px}
  .hero img{min-height:280px;object-fit:cover}
}
