:root{
  --bg:#f7f7f5;
  --white:#ffffff;
  --soft:#f6f2f3;
  --soft-2:#f2ebed;
  --text:#222222;
  --muted:#666369;
  --line:rgba(34,34,34,.08);
  --accent:#d6a5b3;
  --accent-deep:#c48f9e;
  --accent-soft:#f3d9e0;
  --shadow:0 20px 50px rgba(0,0,0,.06);
  --shadow-soft:0 12px 28px rgba(0,0,0,.05);
  --shadow-light:0 12px 30px rgba(0,0,0,.04);
  --radius-xl:36px;
  --radius-lg:24px;
  --radius-md:18px;
  --container:1180px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Noto Sans JP",sans-serif;
  color:var(--text);
  background:#f2f2f2;
  line-height:1.8;
  letter-spacing:.03em;
}

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

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

button{
  font:inherit;
}

ul{
  padding-left:18px;
}

.container{
  width:min(var(--container),calc(100% - 40px));
  margin:0 auto;
}

.serif{
  font-family:"Cormorant Garamond","Times New Roman",serif;
  letter-spacing:.04em;
}

.accent{
  color:var(--accent-deep);
}

.section{
  padding:120px 0;
}

.section-head{
  text-align:center;
  margin-bottom:40px;
}

.section-head h1,
.section-head h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1.2;
  font-weight:600;
  margin-bottom:18px;
}

.section-head p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:16px;
  line-height:2;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent-deep);
  margin-bottom:18px;
}

.eyebrow::before,
.eyebrow::after{
  content:"";
  width:28px;
  height:1px;
  background:rgba(196,143,158,.35);
}

/* =========================
   LOGO
========================= */

.brand-logo{
  text-align:left;
  margin-bottom:36px;
}

.brand-logo img{
  width:220px;
  max-width:100%;
  opacity:.95;
  transition:transform .4s ease, opacity .4s ease;
}

.brand-logo img:hover{
  opacity:1;
  transform:scale(1.02);
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:600;
  letter-spacing:.04em;
  transition:all .3s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  min-height:56px;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn:active{
  transform:scale(.98);
}

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 12px 24px rgba(196,143,158,.18);
}

.btn-primary:hover{
  background:var(--accent-deep);
}

.btn-secondary{
  background:transparent;
  border-color:rgba(196,143,158,.55);
  color:var(--accent-deep);
}

.btn-secondary:hover{
  background:rgba(214,165,179,.08);
}

.btn-primary::after,
.btn-secondary::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform:translateX(-120%);
  transition:transform .65s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after{
  transform:translateX(120%);
}

.text-link{
  font-size:14px;
  color:var(--accent-deep);
  border-bottom:1px solid rgba(196,143,158,.35);
  padding-bottom:2px;
}

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

.hero{
  min-height:auto;
  display:flex;
  align-items:center;
  padding:40px 0 60px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 15%, rgba(255,255,255,.75), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(214,165,179,.12), transparent 18%),
    radial-gradient(circle at 82% 84%, rgba(214,165,179,.10), transparent 20%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
  position:relative;
  z-index:1;
}

.hero-grid > div:first-child{
  background:#ffffff;
  border-radius:28px;
  padding:56px;
  box-shadow:0 20px 60px rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.03);
  min-height:760px;
  position:relative;
}

.hero-title{
  font-size:52px;
  line-height:1.05;
  font-weight:600;
  letter-spacing:1px;
  margin:0 0 24px;
}

.page-title{
  font-size:clamp(40px,4.5vw,64px);
}

.hero-copy{
  font-size:40px;
  line-height:1.7;
  font-weight:400;
  margin-bottom:18px;
}

.hero-lead{
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
  max-width:720px;
  margin:0;
}

.hero-lead-sub{
  margin-top:-10px;
  margin-bottom:18px;
  font-size:14px;
  letter-spacing:.08em;
  color:var(--accent-deep);
  opacity:.8;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-sub-actions{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-visual{
  min-height:760px;
  border-radius:28px;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.04);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.95), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(214,165,179,.16), transparent 20%),
    radial-gradient(circle at 70% 80%, rgba(214,165,179,.12), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#faf7f8 100%);
  border:1px solid rgba(0,0,0,.03);
  padding:40px;
  display:flex;
  align-items:flex-end;
}

.hero-visual::before{
  content:"";
  position:absolute;
  inset:28px;
  border-radius:22px;
  border:1px solid rgba(196,143,158,.16);
  pointer-events:none;
}

.hero-visual::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  top:-70px;
  right:-40px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(214,165,179,.16), transparent 68%);
  pointer-events:none;
}

.hero-visual-inner{
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:100%;
}

.hero-quote-card{
  margin-top:auto;
  padding:34px 32px;
  border-radius:22px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  border:1px solid rgba(196,143,158,.34);
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.hero-quote-label{
  display:inline-block;
  margin-bottom:14px;
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--accent-deep);
}

.hero-quote-card h2{
  font-family:"Cormorant Garamond","Times New Roman",serif;
  font-size:clamp(30px,3vw,46px);
  line-height:1.15;
  font-weight:600;
  margin-bottom:14px;
}

.hero-quote-card p{
  color:var(--muted);
  font-size:15px;
  line-height:1.95;
}

.hero-mini-note{
  position:absolute;
  top:8px;
  left:6px;
  display:flex;
  align-items:center;
  gap:12px;
  opacity:.72;
}

.hero-mini-line{
  width:46px;
  height:1px;
  background:rgba(196,143,158,.45);
}

.hero-mini-note p{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent-deep);
}

.hero-cta-note{
  margin-top:16px;
  font-size:13px;
  color:#777;
  line-height:1.8;
}

.cta-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.cta-trust span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(34,34,34,.06);
}

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

.hero-actions-main{
  align-items:stretch;
}

.btn-cta{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:240px;
  padding:18px 28px;
  gap:4px;
  box-shadow:0 16px 34px rgba(196,143,158,.22);
}

.btn-cta-sub{
  font-size:12px;
  font-weight:500;
  opacity:.9;
  letter-spacing:.03em;
}

.btn-ghost{
  min-width:220px;
  opacity:.92;
}

#contact .btn-cta,
#contact .btn-ghost{
  width:100%;
}

.btn-primary.btn-cta{
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  border:none;
}

.btn-primary.btn-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(196,143,158,.24);
}

.btn-secondary.btn-ghost{
  background:rgba(255,255,255,.7);
}

.hero-actions .btn-primary:not(.btn-cta){
  background:rgba(214,165,179,.25);
  color:var(--accent-deep);
  box-shadow:none;
}

.hero-actions .btn-cta,
.hero-actions .btn-ghost{
  width:260px;
  height:64px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================
   SCROLL CUE
========================= */

.scroll-cue{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:32px;
  opacity:.6;
}

.scroll-line{
  width:40px;
  height:1px;
  background:rgba(196,143,158,.45);
}

.scroll-text{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent-deep);
}

/* =========================
   HOME ENTRY
========================= */

.entry-section{
  padding:40px 0 100px;
}

.entry-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:28px;
}

.entry-card{
  position:relative;
  padding:36px;
  min-height:420px;
  border-radius:var(--radius-xl);
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:all .35s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.entry-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 54px rgba(0,0,0,.08);
  border-color:rgba(196,143,158,.28);
}

.entry-card::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  right:-90px;
  bottom:-110px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(214,165,179,.18), transparent 66%);
  pointer-events:none;
}

.entry-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:.22em;
  color:var(--accent-deep);
  text-transform:uppercase;
  margin-bottom:12px;
}

.entry-card h3{
  margin:0 0 14px;
  font-size:clamp(30px,3vw,42px);
  line-height:1.14;
  font-weight:600;
}

.entry-card p{
  color:var(--muted);
  font-size:15px;
  max-width:95%;
}

.entry-cta{
  margin-top:28px;
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  color:#4e4a50;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(34,34,34,.08);
}

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

.page-hero{
  padding:72px 0 40px;
}

.page-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:stretch;
}

.page-hero-card{
  padding:44px;
  border-radius:36px;
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.visual-box{
  min-height:420px;
  border-radius:30px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(214,165,179,.20), transparent 24%),
    radial-gradient(circle at 26% 70%, rgba(214,165,179,.18), transparent 22%),
    linear-gradient(140deg,#f6f2f3 0%,#ffffff 45%,#efe6e8 100%);
  border:1px solid rgba(34,34,34,.06);
  box-shadow:var(--shadow);
}

.visual-box::after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:22px;
  border:1px solid rgba(196,143,158,.22);
}

/* =========================
   CARDS / FEATURES
========================= */

.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.info-card{
  padding:34px;
  border-radius:26px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  box-shadow:var(--shadow-light);
  transition:all .3s ease;
}

.info-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 60px rgba(0,0,0,.08);
}

.info-card h4{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
}

.price{
  font-family:"Cormorant Garamond","Times New Roman",serif;
  font-size:44px;
  line-height:1;
  margin:12px 0 8px;
  color:var(--accent-deep);
}

.sub{
  color:var(--muted);
  font-size:14px;
}

.info-card ul{
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.9;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.feature-card{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  box-shadow:var(--shadow-light);
  transition:all .3s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 60px rgba(0,0,0,.08);
}

.feature-card h5{
  font-size:18px;
  margin-bottom:8px;
}

.feature-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}

/* =========================
   CTA / NOTICE / CONTACT
========================= */

.cta-box,
.notice-box,
.contact-card{
  padding:60px;
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,242,243,.92));
  border:1px solid rgba(34,34,34,.07);
  box-shadow:var(--shadow-light);
}

.cta-box h3,
.notice-box h3{
  font-size:clamp(30px,3.6vw,44px);
  font-weight:600;
  margin-bottom:12px;
}

.cta-box p,
.notice-box p{
  max-width:780px;
  margin:0 auto 22px;
  color:var(--muted);
}

.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.contact-grid > div{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(34,34,34,.06);
  box-shadow:var(--shadow-soft);
}

.contact-grid h4{
  font-size:22px;
  margin-bottom:10px;
}

.contact-grid p{
  margin-bottom:18px;
  color:var(--muted);
  font-size:14px;
}

.contact-emphasis{
  margin-top:10px;
  font-size:14px;
  color:var(--accent-deep);
  font-weight:500;
}

/* =========================
   NOT FOR YOU
========================= */

.not-for-you{
  margin-top:24px;
  padding-left:20px;
  line-height:2;
  color:#555;
}

.note{
  margin-top:20px;
  font-size:14px;
  color:#888;
  text-align:center;
}

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

.concept-section{
  padding-top:60px;
}

.concept-intro{
  text-align:center;
  margin-bottom:14px;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-deep);
  opacity:.7;
}

.concept-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}

.concept-text,
.concept-visual{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(34,34,34,.05);
  border-radius:28px;
  box-shadow:0 20px 60px rgba(0,0,0,.04);
}

.concept-text{
  padding:42px;
}

.concept-text h3{
  font-size:clamp(30px,3vw,42px);
  line-height:1.2;
  margin-bottom:18px;
  font-weight:600;
}

.concept-text p{
  color:var(--muted);
  font-size:15px;
  line-height:1.9;
}

.concept-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:26px;
}

.concept-visual{
  position:relative;
  overflow:hidden;
  padding:32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.95), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(214,165,179,.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #faf7f8 100%);
}

.concept-visual::before{
  content:"";
  position:absolute;
  inset:20px;
  border-radius:24px;
  border:1px solid rgba(196,143,158,.14);
  pointer-events:none;
}

.concept-visual::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  right:-60px;
  bottom:-60px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(214,165,179,.14), transparent 68%);
  pointer-events:none;
}

.concept-visual-inner{
  position:relative;
  z-index:2;
  height:100%;
  min-height:280px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.concept-label{
  display:inline-block;
  align-self:flex-start;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent-deep);
  opacity:.55;
}

.concept-card{
  width:100%;
  min-height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(196,143,158,.28);
  border-radius:24px;
  background:rgba(255,255,255,.60);
  backdrop-filter:blur(8px);
  padding:28px 22px;
  box-shadow:0 10px 24px rgba(0,0,0,.03);
}

.concept-mini{
  text-align:center;
  font-family:"Cormorant Garamond","Times New Roman",serif;
  font-size:clamp(24px,2.2vw,36px);
  line-height:1.7;
  letter-spacing:.04em;
  color:#c08d9b;
}

.concept-bottom-note{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:flex-end;
  margin-top:18px;
  opacity:.55;
}

.concept-note-line{
  width:40px;
  height:1px;
  background:rgba(196,143,158,.45);
}

.concept-bottom-note p{
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent-deep);
}

/* =========================
   PHILOSOPHY PAGE
========================= */

.philosophy-hero-copy{
  font-size:clamp(28px,3vw,42px);
  line-height:1.4;
  font-weight:500;
  margin-top:18px;
}

.philosophy-lead{
  max-width:720px;
  margin:18px auto 0;
  color:var(--muted);
  font-size:16px;
  line-height:2;
}

.philosophy-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.philosophy-panel{
  padding:40px;
  border-radius:28px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(34,34,34,.06);
  box-shadow:0 18px 48px rgba(0,0,0,.05);
}

.philosophy-panel h3{
  font-size:clamp(28px,3vw,40px);
  line-height:1.2;
  margin-bottom:16px;
  font-weight:600;
}

.philosophy-panel p{
  color:var(--muted);
  line-height:1.95;
  font-size:15px;
}

.philosophy-quote{
  padding:38px;
  border-radius:24px;
  border:1px solid rgba(196,143,158,.5);
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(246,242,243,.95));
  box-shadow:var(--shadow-soft);
}

.philosophy-quote h3{
  font-size:clamp(30px,3.4vw,44px);
  line-height:1.2;
  margin-bottom:14px;
  font-weight:600;
}

.philosophy-quote p{
  color:var(--muted);
  line-height:1.9;
  font-size:15px;
}

.philosophy-number-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.philosophy-number-card{
  position:relative;
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(34,34,34,.06);
  box-shadow:var(--shadow-soft);
}

.philosophy-number{
  width:38px;
  height:38px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background:var(--accent-soft);
  color:var(--accent-deep);
  font-size:14px;
  font-weight:700;
}

.philosophy-number-card h4{
  font-size:22px;
  margin-bottom:10px;
  font-weight:600;
}

.philosophy-number-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}

.philosophy-final{
  text-align:center;
}

.philosophy-final h2{
  font-size:clamp(34px,4vw,54px);
  line-height:1.15;
  margin-bottom:18px;
  font-weight:600;
}

.philosophy-final p{
  max-width:820px;
  margin:0 auto;
  color:var(--muted);
  font-size:16px;
  line-height:1.95;
}

.philosophy-last-copy{
  margin-top:16px;
  font-weight:600;
  font-size:18px;
  letter-spacing:.05em;
  color:var(--accent-deep);
}

/* =========================
   COMPANY SECTION (TOP)
========================= */

.company-section{
  margin-top:100px;
  padding:80px 20px;
  text-align:center;
}

.company-label{
  font-size:12px;
  letter-spacing:.2em;
  color:var(--accent);
  margin-bottom:10px;
}

.company-title{
  font-size:32px;
  margin-bottom:20px;
}

.company-text{
  font-size:14px;
  color:#666;
  max-width:500px;
  margin:0 auto 30px;
  line-height:1.8;
}

.company-btn{
  display:inline-block;
  padding:12px 30px;
  border:1px solid var(--accent-deep);
  border-radius:30px;
  text-decoration:none;
  color:var(--accent-deep);
  transition:.3s;
}

.company-btn:hover{
  background:var(--accent-deep);
  color:#fff;
}

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

.company-hero{
  padding:72px 0 24px;
}

.company-hero-card{
  text-align:center;
}

.company-card{
  padding:40px;
  background:rgba(255,255,255,.88);
  border-radius:28px;
  border:1px solid rgba(34,34,34,.05);
  box-shadow:0 20px 60px rgba(0,0,0,.04);
}

.company-row{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid rgba(34,34,34,.06);
}

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

.company-row span{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-deep);
  opacity:.8;
}

.company-row p{
  font-size:15px;
  line-height:1.9;
  color:var(--text);
}

.company-row p a{
  color:var(--accent-deep);
  border-bottom:1px solid rgba(196,143,158,.35);
  padding-bottom:2px;
}

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

.footer-nav-section{
  padding:80px 20px 40px;
  border-top:1px solid rgba(0,0,0,0.05);
  background:#fff;
}

.footer-nav-grid{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.footer-col{
  text-align:left;
}

.footer-nav-label{
  font-size:12px;
  letter-spacing:.2em;
  color:var(--accent);
  margin-bottom:20px;
}

.footer-nav-grid a{
  display:block;
  font-size:14px;
  color:#555;
  text-decoration:none;
  margin-bottom:12px;
  transition:.3s;
}

.footer-nav-grid a:hover{
  color:var(--accent-deep);
  transform:translateX(3px);
}

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

.footer{
  padding:28px 0 44px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

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

.footer-links a{
  color:var(--muted);
}

.footer-links a:last-child{
  opacity:.72;
}

/* =========================
   SCROLL ANIMATION
========================= */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all 1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

.delay-1{ transition-delay:.2s; }
.delay-2{ transition-delay:.4s; }
.delay-3{ transition-delay:.6s; }

/* =========================
   FLOATING LINE
========================= */

.floating-line{
  display:none;
}

/* =========================
   SPACING ADJUST
========================= */

.section + .section,
.entry-section + .section,
.section + .entry-section{
  padding-top:40px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:980px){
  .hero{
    padding:60px 0 40px;
  }

  .hero-grid,
  .page-grid,
  .entry-grid,
  .cards-3,
  .feature-grid,
  .contact-grid,
  .concept-box,
  .philosophy-split,
  .philosophy-number-grid,
  .footer-nav-grid{
    grid-template-columns:1fr;
  }

  .hero-grid > div:first-child,
  .hero-visual{
    min-height:auto;
    padding:32px;
  }

  .hero-visual,
  .visual-box{
    min-height:340px;
  }

  .hero-title{
    font-size:clamp(40px,8vw,58px);
  }

  .page-title{
    font-size:clamp(34px,7vw,52px);
  }

  .hero-copy{
    font-size:clamp(24px,6vw,40px);
  }

  .brand-logo{
    text-align:center;
  }

  .brand-logo img{
    width:200px;
  }

  .page-hero-card,
  .cta-box,
  .notice-box,
  .contact-card,
  .concept-text,
  .philosophy-panel,
  .philosophy-quote,
  .company-card{
    padding:30px;
  }

  .concept-card{
    min-height:220px;
  }

  .footer-col{
    text-align:center;
  }
}

@media (max-width:768px){
  .company-row{
    grid-template-columns:1fr;
    gap:8px;
    padding:16px 0;
  }

  .company-row span{
    font-size:11px;
  }
}

@media (max-width:640px){
  .container{
    width:min(var(--container),calc(100% - 28px));
  }

  .section{
    padding:80px 0;
  }

  .hero-actions,
  .hero-sub-actions,
  .cta-actions,
  .concept-actions{
    gap:12px;
  }

  .concept-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .entry-card{
    min-height:auto;
    padding:28px;
  }

  .footer-inner{
    justify-content:center;
  }

  .hero-actions-main{
    flex-direction:column;
  }

  .btn-cta,
  .btn-ghost{
    width:100%;
    min-width:100%;
  }

  .hero-cta-note{
    text-align:center;
  }

  .concept-visual{
    padding:22px;
  }

  .concept-card{
    min-height:200px;
    padding:24px 18px;
  }

  .concept-mini{
    font-size:30px;
    line-height:1.5;
  }

  .concept-bottom-note{
    justify-content:center;
  }

  .philosophy-final p,
  .philosophy-panel p,
  .philosophy-quote p{
    font-size:14px;
  }

  .floating-line{
    display:flex;
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    height:54px;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.04em;
    box-shadow:0 14px 30px rgba(196,143,158,.28);
    z-index:999;
  }

  body{
    padding-bottom:80px;
  }
}