/* ======================================================
   SOTORIE — area-lp.css（地域LP本文）
   - hero / points / keyline / before-after / works / style
   - service / category / planner / review / area / map
   - faq / wiki / price / flow / reasons / final-cta
====================================================== */

/* ======================================================
   HERO
====================================================== */
.hero{
  position:relative;
  width:100%;
  height:100svh;
  min-height:620px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  padding-bottom:clamp(42px,7vw,110px);
}

.hero-image-wrapper{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
}
.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  animation:hero-kenburns 22s ease-in-out infinite alternate;
  will-change:transform;
}
@keyframes hero-kenburns{
  0%{ transform:scale(1.03); }
  100%{ transform:scale(1.08); }
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.62));
}

.hero-content{
  position:relative;
  z-index:3;
  width:min(92vw,680px);
  color:#fff;

  padding-inline:clamp(16px,5vw,48px);
  padding-bottom:clamp(20px,5vw,54px);

  margin-top:clamp(10vh,16vh,20vh);
}

.hero-label{
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  opacity:0.9;
  margin-bottom:clamp(10px,2.2vw,14px);
  text-shadow:0 2px 8px rgba(0,0,0,0.28);
}

.hero-title{
  display:flex;
  flex-direction:column;
  gap:clamp(3px,0.6vw,10px);

  font-weight:400;
  font-size:clamp(28px,5.6vw,52px);
  line-height:1.28;

  margin:0 0 clamp(14px,3.4vw,22px) 0;
  text-shadow:0 2px 10px rgba(0,0,0,0.28);
}
.hero-line{ white-space:nowrap; }

.hero-lead{
  font-size:clamp(14px,1.85vw,17px);
  line-height:1.85;
  letter-spacing:0.02em;

  max-width:52ch;
  text-wrap:balance;
  margin:0 0 clamp(18px,4vw,26px) 0;

  text-shadow:0 2px 8px rgba(0,0,0,0.26);
}

.hero-actions{
  display:grid;
  gap:10px;
  align-items:start;
}

.hero-sub{
  font-size:13px;
  letter-spacing:0.04em;
  opacity:0.92;
  margin:0;
  text-shadow:0 2px 8px rgba(0,0,0,0.22);
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:fit-content;
  min-width:min(78vw,360px);

  padding:16px 34px;
  border-radius:999px;

  font-size:clamp(14px,1.6vw,16px);
  letter-spacing:0.04em;
  font-weight:500;

  color:#fff;
  border:1.2px solid rgba(255,255,255,0.86);
  background:rgba(255,255,255,0.12);

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  transition:transform .18s ease, background .25s ease, border-color .25s ease;
}
.hero-btn:hover{
  background:rgba(255,255,255,0.20);
  border-color:rgba(255,255,255,1);
  transform:translateY(-1px);
}

@media (min-width:900px){
  .hero-content{
    width:min(90vw,760px);
    margin-top:22vh;
  }
  .hero-lead{
    max-width:60ch;
    line-height:1.7;
  }
}

/* ======================================================
   SECTION — Yokohama Points
====================================================== */
.yp-inner{
  width:min(92%,1100px);
  margin:0 auto;
}

.yp-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:18px;
}

.yp-title{
  font-size:22px;
  line-height:1.65;
  letter-spacing:0.02em;
  margin-bottom:20px;

  max-width:20em;
  text-wrap:balance;
  line-break:strict;
}

.yp-lead{
  font-size:14px;
  line-height:1.95;
  letter-spacing:0.01em;
  color:#444;
  opacity:0.92;
  max-width:62ch;
  margin-bottom:36px;
  line-break:strict;
}
.yp-lead p{ margin:0; }
.yp-lead p + p{ margin-top:14px; }

@media (min-width:768px){
  .yp-lead{ font-size:15px; margin-bottom:80px; max-width:68ch; }
  .yp-lead p + p{ margin-top:16px; }

  .yp-title{
    font-size:26px;
    max-width:520px;
    line-height:1.7;
  }
}

/* SP：カードにしない */
.yp-grid{ display:grid; gap:0; }
.yp-item{
  padding:28px 0;
  border-top:1px solid rgba(0,0,0,0.08);
}
.yp-num{
  font-size:12px;
  letter-spacing:0.22em;
  color:var(--color-accent);
  display:inline-block;
  margin-bottom:8px;
}
.yp-item-title{
  font-size:17px;
  line-height:1.75;
  margin-bottom:10px;
  max-width:22em;
  text-wrap:balance;
  line-break:strict;
}
.yp-item-text{
  font-size:14px;
  line-height:1.95;
  color:#555;
  letter-spacing:0.01em;
}
.yp-item-text + .yp-item-text{ margin-top:10px; }

@media (min-width:768px){
  .yp-grid{
    grid-template-columns:repeat(3,1fr);
    gap:32px;
  }
  .yp-item{
    border-top:none;
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:20px;
    padding:28px;
    box-shadow:0 8px 26px rgba(0,0,0,0.04);
  }
  .yp-item-title{ font-size:18px; max-width:290px; margin-bottom:12px; }
  .yp-item-text{ font-size:14px; line-height:1.9; }
}

/* ======================================================
   Fold system（yp-fold）— 1系統に統合
   - SP：clamp + フェード + “続きを読む”
   - PC：常に全文
====================================================== */
.yp-fold-body p{ margin:0; }
.yp-fold-body p + p{ margin-top:10px; }

.yp-fold{
  --fold-lines:3;
  position:relative;
  border:1px solid rgba(0,0,0,0.07);
  border-radius:18px;
  background:rgba(255,255,255,0.72);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
  padding:14px 14px 40px;
}

/* カード本文内のfoldは少し控えめ */
.yp-item .yp-fold{
  border-radius:16px;
  background:rgba(255,255,255,0.60);
  box-shadow:none;
  padding:12px 12px 40px;
}

@media (max-width:767px){
  .yp-fold[data-collapsed="true"] .yp-fold-body{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    overflow:hidden;
    -webkit-line-clamp:var(--fold-lines,3);
  }

  .yp-fold[data-collapsed="true"]::after{
    content:"";
    position:absolute;
    left:10px; right:10px;
    bottom:34px;
    height:54px;
    z-index:1;
    pointer-events:none;
    background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.92));
    border-radius:0 0 18px 18px;
  }
}

.yp-fold-more{
  position:absolute;
  right:14px;
  bottom:12px;
  z-index:2;
  font-size:12px;
  letter-spacing:0.08em;
  color:var(--color-accent);
  opacity:0.82;
  cursor:pointer;
  user-select:none;
  pointer-events:auto;
  padding-left:22px;
  background:linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.92) 55%);
}
.yp-fold-more:hover{ opacity:1; }

.yp-fold[data-open="true"]::after{ display:none; }
.yp-fold[data-open="true"] .yp-fold-more{ display:none; }

.yp-item-textwrap{ margin-top:12px; }

/* “続きを読む”の連続感を消す（あなたの意図を維持） */
.yokohama-points .yp-grid .yp-fold-more{ display:none !important; }
.yokohama-points .yp-lead.yp-fold .yp-fold-more{ display:block !important; }
#yokohama-keyline .yp-fold-more{ display:none !important; }

@media (min-width:768px){
  .yp-fold{
    border:none;
    background:transparent;
    box-shadow:none;
    padding:0;
  }
  .yp-fold::after{ display:none; }
  .yp-fold-more{ display:none !important; }
  .yp-fold-body{
    display:block !important;
    overflow:visible;
    -webkit-line-clamp:unset;
  }
}

/* ======================================================
   KEY SECTION — Yokohama Keyline
====================================================== */
.yk-section{ background:#fff; }

.yk-inner{
  max-width:1080px;
  margin:0 auto;
  padding-inline:clamp(16px,4vw,32px);
}

.yk-divider{
  width:100%;
  height:1px;
  background:rgba(0,0,0,0.07);
  margin-bottom:clamp(32px,6vw,48px);
}

.yk-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#7a7a7a;
  margin-bottom:20px;
}

.yk-title{
  font-size:clamp(22px,5.2vw,26px);
  line-height:1.75;
  max-width:620px;
  margin-bottom:clamp(16px,3.6vw,24px);
}

.yk-lead{
  font-size:clamp(14px,4vw,16px);
  line-height:1.95;
  max-width:640px;
  color:#444;
  margin-bottom:clamp(34px,8vw,64px);
}

.yk-list{
  display:flex;
  flex-direction:column;
  gap:clamp(40px,9vw,64px);
}

.yk-block{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  align-items:flex-start;
}

.yk-img-wrap{
  width:100%;
  overflow:hidden;
  border-radius:16px;
}

.yk-img{
  width:100%;
  height:auto;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center;
  filter:grayscale(88%) saturate(92%) contrast(1.05) brightness(1.03);
  transition:filter .35s ease, transform .45s ease;
}

@media (max-width:767px){
  .yk-img{ filter:grayscale(70%) saturate(98%) contrast(1.05) brightness(1.05); }
}

@media (min-width:768px){
  .yk-img{ filter:grayscale(82%) saturate(92%) contrast(1.06) brightness(1.02); }
  .yk-img-wrap:hover .yk-img{
    filter:grayscale(0%) saturate(110%) contrast(1.10) brightness(1.04);
    transform:scale(1.02);
  }
}

.yk-num{
  font-size:12px;
  letter-spacing:0.22em;
  color:var(--color-accent);
  margin-bottom:10px;
}

.yk-block-title{
  font-size:clamp(17px,4.4vw,20px);
  line-height:1.7;
  margin-bottom:10px;
}

.yk-kicker{
  font-size:clamp(15px,4.2vw,17px);
  line-height:1.75;
  font-weight:600;
  letter-spacing:0.01em;
  color:#222;

  margin:0 0 14px;
  max-width:56ch;

  padding-left:10px;
  border-left:2px solid rgba(0,0,0,0.10);
}

.yk-text{
  font-size:clamp(13px,3.8vw,15px);
  line-height:1.9;
  color:#444;
  letter-spacing:0.01em;
}
.yk-text + .yk-text{ margin-top:10px; }

@media (min-width:768px){
  .yk-inner{ padding-inline:24px; }
  .yk-title{ font-size:clamp(24px,2.4vw,28px); }
  .yk-lead{ font-size:15px; margin-bottom:clamp(42px,6vw,72px); }
  .yk-list{ gap:clamp(48px,7vw,80px); }

  .yk-block{
    grid-template-columns:1.1fr 1.1fr;
    gap:clamp(32px,5vw,48px);
    align-items:center;
  }
  .yk-block.reverse{ direction:rtl; }
  .yk-block.reverse .yk-textbox{ direction:ltr; }

  .yk-img-wrap{ max-height:360px; }

  .yk-kicker{
    font-size:16px;
    line-height:1.7;
    margin-bottom:14px;
    max-width:54ch;
    border-left-color:rgba(0,0,0,0.12);
  }

  .yk-text{ font-size:14px; max-width:520px; }
}

/* セクション間の“二重余白” */
.yokohama-points.section-gap{ padding-bottom:0 !important; }
.yokohama-points + .yk-section.section-gap{
  padding-top:clamp(28px,6vw,52px) !important;
}

#yokohama-keyline .yk-divider{
  margin-bottom:16px;
  opacity:0.6;
}

/* ======================================================
   BEFORE / AFTER
====================================================== */
br.sp-br{ display:inline; }
br.pc-br{ display:none; }
@media (min-width:768px){
  br.sp-br{ display:none; }
  br.pc-br{ display:inline; }
}

.case-section{ padding:clamp(48px,8vw,72px) 0; }
.case-inner{ width:min(92%,1100px); margin:0 auto; }

.case-title{
  text-align:center;
  font-size:clamp(22px,5.4vw,32px);
  line-height:1.55;
  letter-spacing:.02em;
  max-width:26em;
  margin:0 auto 16px;
  text-wrap:balance;
}

.case-intro,
.case-lead{
  max-width:70ch;
  margin:0 auto;
  color:#444;
  font-size:14px;
  line-height:1.95;
  letter-spacing:.01em;
  text-align:center;
}
.case-intro{ margin-bottom:18px; }
.case-lead{ margin-bottom:26px; }
.case-intro p,
.case-lead p{ margin:0; }
.case-intro p + p,
.case-lead p + p{ margin-top:14px; }

@media (max-width:767px){
  .case-intro,
  .case-lead{ text-align:left; }
}

/* slider wrapper */
.ba-wrapper{
  position:relative;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  user-select:none;
  touch-action:pan-y;
}
.ba-wrapper{ aspect-ratio:16 / 10; }
@media (min-width:768px){ .ba-wrapper{ aspect-ratio:16 / 9; } }

.ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
}
.ba-after{ clip-path:inset(0 0 0 50%); }

.ba-divider{
  position:absolute;
  inset-block:0;
  left:50%;
  width:2px;
  transform:translateX(-50%);
  background:rgba(255,255,255,0.85);
  box-shadow:0 0 0 1px rgba(0,0,0,0.10);
  z-index:15;
}

.ba-handle{
  position:absolute;
  top:50%;
  left:50%;
  width:48px;
  height:48px;
  transform:translate(-50%,-50%);
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(0,0,0,0.10);
  backdrop-filter:blur(8px);
  box-shadow:0 8px 20px rgba(0,0,0,0.14);
  z-index:20;
  cursor:ew-resize;
  transition:transform .15s ease-out;
}
.ba-handle::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:1px;
  height:20px;
  transform:translate(-50%,-50%);
  background:rgba(0,0,0,0.28);
}
.ba-wrapper:hover .ba-handle{
  transform:translate(-50%,-50%) scale(1.03);
}

.case-subtitle{
  text-align:center;
  font-size:clamp(18px,4.8vw,22px);
  line-height:1.7;
  margin:clamp(36px,7vw,56px) auto 18px;
  letter-spacing:.03em;
  max-width:28em;
  text-wrap:balance;
}

.case-points{
  display:grid;
  gap:16px;
  margin-top:16px;
}
.case-point{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,0.08);
}
.case-point-icon{
  width:38px;
  height:38px;
  border-radius:999px;
  background:var(--color-accent, #D3C6A6);
  color:#fff;
  font-size:12px;
  letter-spacing:.14em;
  display:grid;
  place-items:center;
  font-weight:700;
}
.case-point-title{
  font-size:16px;
  line-height:1.75;
  margin:0;
  text-wrap:balance;
}
.case-point-text{
  margin:0;
  font-size:14px;
  line-height:1.95;
  color:#555;
  letter-spacing:.01em;
}

@media (min-width:768px){
  .case-intro,
  .case-lead{ font-size:15px; }

  .case-points{
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:22px;
  }
  .case-point{
    border-top:none;
    padding:22px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:20px;
    box-shadow:0 10px 26px rgba(0,0,0,0.04);
  }
  .case-point-title{ font-size:17px; }
  .case-point-text{ line-height:1.9; }
}

/* ======================================================
   LOCAL WORKS
====================================================== */
.local-works-section{ background:#ffffff; }
.local-works-inner{ width:min(92%,1100px); margin:0 auto; }

.local-works-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:18px;
  text-transform:uppercase;
}

.local-works-title{
  font-size:22px;
  line-height:1.6;
  margin-bottom:16px;
}

.local-works-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin-bottom:28px;
}

.local-works-grid{
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:22px;
}

.local-works-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.local-works-imgwrap img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.local-works-meta{
  padding:14px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.local-works-tag{
  display:inline-block;
  font-size:12px;
  padding:4px 10px;
  background:#f0ede7;
  border-radius:999px;
  color:#333;
}

.local-works-name{
  font-size:16px;
  line-height:1.6;
}

.local-works-more{
  align-self:flex-start;
  padding:7px 14px;
  font-size:12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.25);
  cursor:pointer;
}

@media (min-width:768px){
  .local-works-title{ font-size:26px; }
  .local-works-grid{ grid-template-columns:repeat(3,1fr); gap:24px; }
  .local-works-card:hover img{
    transform:scale(1.04);
    filter:contrast(1.08);
  }
}

/* modal */
.local-works-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:70;
}
.local-works-modal.is-open{ display:block; }
.local-works-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.40);
  backdrop-filter:blur(4px);
}
.local-works-dialog{
  position:absolute;
  inset-inline:16px;
  top:50%;
  transform:translateY(-50%);
  background:#ffffff;
  padding:20px 18px;
  border-radius:18px;
  box-shadow:0 20px 66px rgba(0,0,0,0.3);
  max-height:82vh;
  overflow-y:auto;
}
.local-works-close{
  position:absolute;
  right:12px;
  top:12px;
  width:26px;
  height:26px;
  border-radius:999px;
  background:rgba(0,0,0,0.07);
  border:none;
  cursor:pointer;
}
.local-works-modal-eyebrow{ font-size:11px; color:#888; margin-bottom:6px; }
.local-works-modal-title{ font-size:20px; line-height:1.6; margin-bottom:12px; }
.local-works-modal-body{ font-size:14px; line-height:1.9; color:#444; }
.local-works-modal-cta{
  display:inline-flex;
  margin-top:14px;
  padding:9px 18px;
  border:1px solid #d3c6a6;
  border-radius:999px;
  background:#fff;
  font-size:12px;
}
@media (min-width:768px){
  .local-works-dialog{ max-width:600px; margin:0 auto; padding:26px 32px; }
  .local-works-modal-title{ font-size:22px; }
}
.local-works-detail{
  margin-top:13px;
  font-size:13px;
  line-height:1.85;
  color:#555;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}
.local-works-detail p{ margin:0; }
.local-works-modal-body p{ margin:0; }
.local-works-modal-body p + p{ margin-top:12px; }

/* ======================================================
   STYLE
====================================================== */
.style-section{ background:#faf8f3; }
.style-inner{ width:min(92%,1100px); margin:0 auto; }

.style-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:18px;
  text-transform:uppercase;
}

.style-title{
  font-size:clamp(18px,5vw,22px);
  line-height:1.65;
  letter-spacing:0.03em;
  margin:0 0 18px;
  text-wrap:balance;
  max-width:19em;
}

.style-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  max-width:720px;
  margin-bottom:24px;
}

.style-scroller{
  margin-top:8px;
  padding-bottom:10px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.style-scroller::-webkit-scrollbar{ height:4px; }
.style-scroller::-webkit-scrollbar-track{ background:transparent; }
.style-scroller::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,0.2);
  border-radius:999px;
}

.style-track{ display:flex; gap:14px; padding-bottom:4px; }

.style-card{
  flex:0 0 78%;
  max-width:330px;
  background:#ffffff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.03);
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.style-image-wrap{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(0,0,0,0.05);
}
.style-image-wrap img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  transition:transform .5s ease, filter .5s ease;
}

.style-meta{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.style-name{ font-size:15px; line-height:1.7; }
.style-tagline{ font-size:13px; line-height:1.8; color:#555; }

.style-more-btn{
  margin-top:6px;
  align-self:flex-start;
  padding:7px 14px;
  font-size:12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.2);
  background:#fff;
  cursor:pointer;
  letter-spacing:0.08em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.style-more-btn::after{ content:"›"; font-size:12px; }

@media (min-width:768px){
  .style-title{ font-size:26px; max-width:560px; }
  .style-lead{ font-size:15px; margin-bottom:32px; }
  .style-scroller{ padding-bottom:14px; }
  .style-track{ gap:18px; }

  .style-card{
    flex:0 0 280px;
    max-width:280px;
    border-radius:20px;
    transition:transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
  }
  .style-image-wrap img{ height:190px; }

  .style-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,0.10);
    border-color:rgba(211,198,166,0.75);
  }
  .style-card:hover .style-image-wrap img{
    transform:scale(1.03);
    filter:contrast(1.08) brightness(1.03);
  }

  .style-meta{ padding:16px 16px 18px; }
  .style-name{ font-size:16px; }
  .style-tagline{ font-size:13px; }
  .style-more-btn{ font-size:11px; }
}

/* modal */
.style-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:60;
}
.style-modal.is-open{ display:block; }
.style-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.40);
  backdrop-filter:blur(4px);
}
.style-modal-dialog{
  position:absolute;
  inset-inline:16px;
  top:50%;
  transform:translateY(-50%);
  background:#ffffff;
  border-radius:18px;
  padding:18px 16px 18px;
  box-shadow:0 24px 70px rgba(0,0,0,0.36);
  max-height:80vh;
  overflow-y:auto;
}
.style-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  width:26px;
  height:26px;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,0.06);
  cursor:pointer;
  font-size:14px;
  line-height:1;
}
.style-modal-eyebrow{
  font-size:11px;
  letter-spacing:0.18em;
  color:#8e8e8e;
  margin-bottom:8px;
  text-transform:uppercase;
}
.style-modal-title{ font-size:18px; line-height:1.6; margin-bottom:10px; }
.style-modal-body{ font-size:13px; line-height:1.9; color:#444; }
.style-modal-text{ margin-bottom:10px; }
.style-modal-note{ margin-top:8px; font-size:12px; line-height:1.8; color:#777; }
.style-modal-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  padding:9px 18px;
  border-radius:999px;
  border:1px solid var(--color-accent, #d3c6a6);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  background:#fff;
  color:#333;
}
@media (min-width:768px){
  .style-modal-dialog{
    max-width:640px;
    margin:0 auto;
    padding:22px 26px 24px;
    border-radius:20px;
  }
  .style-modal-title{ font-size:22px; margin-bottom:14px; }
  .style-modal-body{ font-size:14px; }
  .style-modal-note{ font-size:12px; }
  .style-modal-cta{ font-size:12px; }
}
.style-detail{ display:none; }

/* ======================================================
   SERVICE
====================================================== */
.service-inner{ width:min(92%,1100px); margin:0 auto; }
.service-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:18px;
}
.service-title{
  font-size:22px;
  line-height:1.7;
  margin-bottom:18px;
}
.service-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  max-width:640px;
  margin-bottom:32px;
}
.service-grid{ display:grid; gap:18px; }
.service-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.05);
  padding:20px 20px 22px;
  box-shadow:0 8px 22px rgba(0,0,0,0.03);
}
.service-name{ font-size:15px; margin-bottom:6px; }
.service-text{ font-size:13px; line-height:1.9; color:#555; }

@media (min-width:768px){
  .service-title{ font-size:26px; max-width:520px; }
  .service-lead{ font-size:15px; margin-bottom:40px; }
  .service-grid{ grid-template-columns:repeat(4,1fr); gap:22px; }
  .service-card{ padding:24px 24px 26px; }
  .service-name{ font-size:16px; }
}

/* ======================================================
   EXTERIOR CATEGORY
====================================================== */
.ex-inner{ width:min(92%,1100px); margin:0 auto; }

.ex-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:12px;
}
.ex-title{ font-size:24px; margin-bottom:14px; }
.ex-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin-bottom:24px;
}

.ex-acc-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.ex-acc-item{
  border-radius:14px;
  border:1px solid #e5e5e5;
  background:#fff;
  overflow:hidden;
}
.ex-acc-btn{
  width:100%;
  padding:12px 16px;
  border:none;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  font-size:14px;
  color:#222;
}
.ex-acc-btn span:first-child{ text-align:left; }
.ex-acc-icon{ font-size:18px; flex-shrink:0; }

.ex-acc-item.is-open .ex-acc-btn{ background:#faf8f3; }

.ex-acc-content{
  display:none;
  border-top:1px solid #f0f0f0;
  padding:12px 16px 14px;
  background:#fafafa;
}
.ex-acc-item.is-open .ex-acc-content{ display:block; }

.ex-acc-columns{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.ex-acc-col h4{
  font-size:14px;
  margin-bottom:6px;
  font-weight:600;
}

.ex-acc-col ul{ list-style:none; padding:0; margin:0; }

.ex-acc-col li{
  font-size:13px;
  line-height:1.7;
  color:#444;
  padding-left:0.7em;
  position:relative;
}
.ex-acc-col li::before{
  content:"・";
  position:absolute;
  left:0;
}

.ex-acc-note{
  font-size:13px;
  line-height:1.8;
  color:#555;
  margin-bottom:10px;
}

@media (min-width:768px){
  .ex-title{ font-size:28px; }
  .ex-lead{ font-size:15px; margin-bottom:28px; }
  .ex-acc-btn{ padding:14px 18px; font-size:15px; }
  .ex-acc-content{ padding:16px 20px 18px; }
  .ex-acc-columns{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}

/* ======================================================
   PLANNER
====================================================== */
.planner-section{ background:#f5f5f5; }
.planner-inner{ width:min(92%,1100px); margin:0 auto; }

.planner-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:18px;
  text-transform:uppercase;
}
.planner-title{
  font-size:22px;
  line-height:1.7;
  letter-spacing:0.03em;
  margin-bottom:14px;
}
.planner-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin-bottom:24px;
}

.planner-grid{
  display:flex;
  justify-content:center;
}

.planner-card{
  width:100%;
  max-width:720px;
  margin:0 auto;

  background:#ffffff;
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);

  padding:20px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.planner-header{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
}
.planner-photo{
  width:80px;
  height:80px;
  border-radius:999px;
  overflow:hidden;
  flex-shrink:0;
  background:#eee;
}
.planner-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.planner-head-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  text-align:left;
}

.planner-role{
  font-size:11px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:#9ca3af;
  margin:0;
}
.planner-name{ font-size:18px; margin:0; }

.planner-strengths{
  margin:0;
  padding-left:1.2em;
  font-size:13px;
  line-height:1.8;
  color:#444;
}
.planner-strengths li + li{ margin-top:4px; }

.planner-comment{
  font-size:13px;
  line-height:1.85;
  color:#444;
  margin:4px 0 16px;
}

.planner-cta{
  align-self:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 26px;
  border-radius:999px;
  border:1px solid #d3c6a6;
  background:#ffffff;

  font-size:13px;
  letter-spacing:0.08em;
  text-transform:none;
  color:#333;
  text-decoration:none;

  transition:box-shadow .18s ease-out, transform .18s ease-out, background-color .18s ease-out;
}
.planner-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  background:#faf8f3;
}

@media (min-width:768px){
  .planner-card{
    max-width:920px;
    margin:0 auto;
    padding:26px 32px 24px;
    border-radius:28px;
    background:#ffffff;
    box-shadow:0 24px 60px rgba(15,23,42,0.06);

    display:grid;
    grid-template-columns:minmax(0,260px) minmax(0,1fr);
    column-gap:40px;
    row-gap:20px;
  }

  .planner-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    grid-row:1 / span 3;
    align-self:center;
  }

  .planner-photo{
    width:128px;
    height:128px;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:12px;
  }

  .planner-role{ font-size:11px; letter-spacing:0.18em; }
  .planner-name{ font-size:22px; }

  .planner-strengths{
    grid-column:2 / 3;
    grid-row:1;
    margin:0 0 4px;
  }
  .planner-comment{
    grid-column:2 / 3;
    grid-row:2;
    margin:0;
  }
  .planner-cta{
    grid-column:2 / 3;
    grid-row:3;
    justify-self:flex-start;
    margin-top:8px;
  }
}

/* ======================================================
   REVIEW
====================================================== */
.review-section{ background:#ffffff; }
.review-inner{ width:min(92%,1100px); margin:0 auto; }

.review-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:16px;
  text-transform:uppercase;
}
.review-title{
  font-size:22px;
  line-height:1.7;
  letter-spacing:0.03em;
  margin-bottom:14px;
}
.review-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin-bottom:22px;
}

.review-summary{
  padding:16px 14px;
  margin-bottom:22px;
  border-radius:14px;
  background:#faf8f3;
  border:1px solid rgba(0,0,0,0.04);
}
.review-summary-title{
  font-size:16px;
  line-height:1.7;
  margin:0 0 10px;
}
.review-summary-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.review-tag{
  display:inline-block;
  font-size:12px;
  padding:2px 8px;
  border-radius:999px;
  background:#f0ede7;
  color:#333;
  margin-bottom:4px;
}
.review-summary-text{
  font-size:13px;
  line-height:1.8;
  color:#555;
  margin:0;
}

.review-slider{
  margin-top:6px;
  margin-bottom:18px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.review-slider::-webkit-scrollbar{ height:4px; }
.review-slider::-webkit-scrollbar-track{ background:transparent; }
.review-slider::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,0.18);
  border-radius:999px;
}
.review-track{
  display:flex;
  gap:14px;
  padding-bottom:6px;
}
.review-card{
  flex:0 0 86%;
  max-width:86%;
  background:#ffffff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 12px 28px rgba(15,23,42,0.06);
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
}
.review-card-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.review-g-badge{
  width:26px;
  height:26px;
  border-radius:999px;
  background:#4285f4;
  color:#fff;
  font-size:16px;
  line-height:26px;
  text-align:center;
  font-weight:600;
}
.review-meta{ display:flex; flex-direction:column; gap:2px; }
.review-author{ font-size:14px; margin:0; }
.review-case{ font-size:12px; color:#777; margin:0; }

.review-stars{
  font-size:14px;
  color:#f5b300;
  letter-spacing:1px;
  margin-bottom:8px;
}
.review-stars .star{ opacity:0.85; }

.review-body{
  font-size:13px;
  line-height:1.9;
  color:#444;
  margin:0 0 10px;
}
.review-source{ font-size:11px; color:#888; margin:0; }

.review-footer{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.review-more,
.review-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  text-decoration:none;
}
.review-more{
  border:1px solid rgba(0,0,0,0.14);
  color:#333;
  background:#fff;
}
.review-cta{
  border:1px solid #d3c6a6;
  background:#d3c6a6;
  color:#111827;
}

@media (min-width:768px){
  .review-title{ font-size:26px; margin-bottom:16px; }
  .review-lead{ font-size:15px; margin-bottom:26px; }

  .review-summary{
    padding:18px 18px 16px;
    margin-bottom:26px;
  }
  .review-summary-title{ font-size:18px; margin-bottom:12px; }
  .review-summary-list{
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:14px;
  }

  .review-slider{ overflow:visible; }
  .review-track{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:18px;
  }
  .review-card{
    flex:0 0 auto;
    max-width:100%;
    padding:16px 18px 18px;
    border-radius:20px;
    transition:transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
  }
  .review-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(15,23,42,0.08);
    border-color:rgba(211,198,166,0.7);
  }
  .review-body{ font-size:13px; }
  .review-footer{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
  }
  .review-more,
  .review-cta{ font-size:13px; min-width:0; }
}

/* ======================================================
   AREA TAGS
====================================================== */
.area-section{ background:#fff; }
.area-inner{ width:min(92%,1100px); margin:0 auto; }

.area-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:16px;
}
.area-title{
  font-size:clamp(21px,5vw,32px);
  line-height:1.4;
}
.area-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
}

.area-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}

.area-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:13px;
  line-height:1.4;
  text-decoration:none;
  color:#333;
  background:#faf8f3;
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 6px 16px rgba(0,0,0,0.04);
  transition:transform .18s ease-out, box-shadow .18s ease-out, border-color .18s ease-out, background-color .18s ease-out;
  text-align:center;
  white-space:nowrap;
}
.area-tag:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(0,0,0,0.08);
  border-color:rgba(211,198,166,0.8);
  background-color:#f6f1e4;
}
.area-tag:focus-visible{
  outline:2px solid #d3c6a6;
  outline-offset:2px;
}

.area-note{
  margin-top:16px;
  font-size:12px;
  line-height:1.8;
  color:#777;
}

@media (min-width:768px){
  .area-title{ font-size:26px; margin-bottom:18px; }
  .area-lead{ font-size:15px; margin-bottom:24px; max-width:720px; }

  .area-grid{
    grid-template-columns:repeat(5, minmax(0,1fr));
    gap:12px 14px;
    max-width:780px;
  }
  .area-tag{ font-size:13px; padding:8px 12px; }
  .area-note{ margin-top:18px; }
}
@media (min-width:1024px){
  .area-grid{ max-width:1024px; }
}

/* ======================================================
   MAP
====================================================== */
.map-section{ background:#ffffff; }
.map-inner{ width:min(92%,1100px); margin:0 auto; }

.map-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:16px;
  text-align:left;
}
.map-title{
  font-size:22px;
  line-height:1.45;
  margin-bottom:14px;
  text-align:left;
}
.map-lead{
  font-size:14px;
  text-align:left;
  line-height:1.85;
  color:#444;
  margin-bottom:26px;
}

.map-frame{
  width:100%;
  margin-bottom:30px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.map-features{
  background:#faf8f3;
  border:1px solid rgba(211,198,166,0.4);
  border-radius:16px;
  padding:20px 18px;
  margin-bottom:28px;
}
.map-features-title{
  font-size:17px;
  line-height:1.5;
  margin-bottom:12px;
  text-align:left;
}
.map-features-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:10px;
}
.map-features-list li{
  font-size:14px;
  line-height:1.8;
  color:#444;
  text-align:left;
}

.map-access{ margin-bottom:26px; }
.map-access-title{
  font-size:17px;
  margin-bottom:10px;
  text-align:left;
}
.map-access-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:6px;
}
.map-access-list li{
  font-size:14px;
  color:#444;
  line-height:1.7;
  text-align:left;
}

.map-footer{
  text-align:center;
  margin-top:20px;
}
.map-cta{
  display:inline-block;
  padding:10px 22px;
  background:#fff;
  border:1px solid #d3c6a6;
  border-radius:999px;
  font-size:14px;
  color:#333;
  transition:background .2s ease;
}
.map-cta:hover{
  background:#d3c6a6;
  color:#fff;
}

@media (min-width:768px){
  .map-title{ font-size:26px; }
  .map-lead{ font-size:15px; max-width:780px; }
  .map-features-list{ grid-template-columns:repeat(2,1fr); }
}

/* map features fold */
.map-features.is-collapsed .map-features-body{ display:none; }
.map-features-intro p,
.map-features-body p{
  font-size:14px;
  color:#444;
  line-height:1.85;
  margin:0 0 .9em;
}
.map-features-toggle{
  width:100%;
  margin-top:8px;
  padding:10px 0;
  background:none;
  border:none;
  color:#937f57;
  font-size:14px;
  letter-spacing:0.05em;
  cursor:pointer;
  text-align:center;
  transition:opacity .2s ease;
}
.map-features-toggle:hover{ opacity:0.7; }

/* ======================================================
   FAQ
====================================================== */
.faq-inner{ width:min(92%,900px); margin:0 auto; }
.faq-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:14px;
}
.faq-title{
  font-size:22px;
  line-height:1.6;
  margin-bottom:14px;
}
.faq-lead{
  font-size:14px;
  line-height:1.9;
  color:#555;
  text-align:left;
  max-width:640px;
  margin:0 0 24px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.faq-item{
  border-radius:16px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 14px 32px rgba(0,0,0,0.06);
  overflow:hidden;
  transition:box-shadow .26s ease, transform .26s ease, border-color .26s ease;
}
.faq-item.open{
  border-color:rgba(211,198,166,0.9);
  box-shadow:0 18px 46px rgba(0,0,0,0.08);
  transform:translateY(-1px);
}

.faq-q{
  width:100%;
  padding:14px 16px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  column-gap:10px;
  align-items:center;
  background:linear-gradient(to right, rgba(255,255,255,0.96), rgba(248,245,238,0.96));
  border:none;
  cursor:pointer;
}
.faq-q-label{
  font-size:11px;
  letter-spacing:0.18em;
  color:var(--color-accent, #d3c6a6);
}
.faq-q-text{
  font-size:14px;
  line-height:1.6;
  text-align:left;
}
.faq-q-icon{
  width:24px;
  height:24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  border:1px solid rgba(0,0,0,0.2);
  background:#fff;
  transition:transform .24s ease, background .24s ease, color .24s ease;
}
.faq-item.open .faq-q-icon{
  transform:rotate(45deg);
  background:var(--color-accent, #d3c6a6);
  color:#333;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  transition:max-height .28s ease, padding-top .28s ease, padding-bottom .28s ease;
}
.faq-item.open .faq-a{
  padding-top:10px;
  padding-bottom:14px;
}
.faq-a p{
  font-size:13px;
  line-height:1.9;
  color:#444;
  margin:0;
}

@media (min-width:768px){
  .faq-title{ font-size:26px; }
  .faq-lead{ font-size:15px; margin-bottom:28px; }
  .faq-q-text{ font-size:15px; }
  .faq-a p{ font-size:14px; }
}

/* ======================================================
   AREA WIKI
====================================================== */
.area-wiki{ background:#f5f5f3; }
.area-wiki-inner{ width:min(92%,1100px); margin:0 auto; }

.area-wiki-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:16px;
  text-transform:uppercase;
}
.area-wiki-title{
  font-size:22px;
  line-height:1.7;
  letter-spacing:0.03em;
  margin-bottom:16px;
}
.area-wiki-lead{
  font-size:14px;
  line-height:1.9;
  color:#555;
  max-width:720px;
  margin-bottom:28px;
}

.area-wiki-grid{ display:grid; gap:18px; }
.area-wiki-block{
  background:rgba(255,255,255,0.96);
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.area-wiki-head{ display:flex; flex-direction:column; gap:4px; }
.area-wiki-num{
  font-size:11px;
  letter-spacing:0.22em;
  color:var(--color-accent, #d3c6a6);
  text-transform:uppercase;
}
.area-wiki-block-title{
  font-size:15px;
  line-height:1.7;
  text-wrap:balance;
}
.area-wiki-body p{
  font-size:13px;
  line-height:1.9;
  color:#444;
  margin:0 0 .9em;
}
.area-wiki-body p:last-child{ margin-bottom:0; }

@media (min-width:768px){
  .area-wiki-title{
    font-size:26px;
    max-width:520px;
    text-wrap:balance;
  }
  .area-wiki-lead{ font-size:15px; margin-bottom:32px; }
  .area-wiki-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:22px; }
  .area-wiki-block{
    padding:22px 22px 24px;
    border-radius:20px;
    transition:transform .22s ease-out, box-shadow .22s ease-out;
  }
  .area-wiki-block:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
  }
  .area-wiki-block-title{ font-size:16px; }
  .area-wiki-body p{ font-size:14px; }
}

/* ======================================================
   PRICE
====================================================== */
.price-guide{ background:#faf8f5; }
.price-inner{ width:min(92%,1100px); margin:0 auto; }

.price-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:10px;
  text-transform:uppercase;
}
.price-title{
  font-size:22px;
  line-height:1.7;
  margin-bottom:12px;
}
.price-lead{
  font-size:14px;
  color:#555;
  line-height:1.9;
  margin-bottom:18px;
  max-width:720px;
}

.price-simple-note{
  margin-top:6px;
  padding:16px 16px 14px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid rgba(211,198,166,0.45);
}
.price-note-heading{
  font-size:13px;
  font-weight:600;
  margin:0 0 8px;
  color:#333;
}
.price-simple-note ul{
  list-style:disc;
  padding-left:1.2em;
  margin:0;
}
.price-simple-note li{
  font-size:13px;
  line-height:1.8;
  color:#555;
}
.price-bottom-text{
  font-size:13px;
  color:#555;
  line-height:1.9;
  margin-top:22px;
}

@media (min-width:768px){
  .price-title{ font-size:26px; }
  .price-lead{ font-size:15px; margin-bottom:20px; }
  .price-simple-note{
    padding:18px 22px 18px;
    border-radius:20px;
  }
  .price-simple-note ul{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    column-gap:28px;
    row-gap:4px;
    list-style-position:inside;
  }
  .price-bottom-text{
    max-width:720px;
    margin-top:26px;
  }
}

/* ======================================================
   FLOW
====================================================== */
.flow{ background:#ffffff; }
.flow-inner{ width:min(92%,1100px); margin:0 auto; }

.flow-eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  color:#8e8e8e;
  margin-bottom:10px;
}
.flow-title{
  font-size:22px;
  line-height:1.7;
  margin-bottom:10px;
}
.flow-lead{
  font-size:14px;
  color:#555;
  line-height:1.9;
  margin-bottom:22px;
  max-width:720px;
}

.flow-list{
  margin-top:8px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  padding-left:4px;
}
.flow-list::before{
  content:"";
  position:absolute;
  left:24px;
  top:4px;
  bottom:4px;
  width:2px;
  background:rgba(211,198,166,0.45);
}

.flow-step{
  position:relative;
  display:flex;
  gap:12px;
  padding:14px 14px 14px 20px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.03);
}
.flow-step-num{
  position:relative;
  z-index:1;
  flex-shrink:0;
  width:32px;
  height:32px;
  border-radius:999px;
  background:#d3c6a6;
  color:#fff;
  font-size:12px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}
.flow-step-body{ flex:1; }
.flow-step-title{ font-size:16px; margin:2px 0 6px; }
.flow-step-body p{
  font-size:13px;
  line-height:1.8;
  color:#555;
  margin:0;
}

@media (min-width:768px){
  .flow-title{ font-size:26px; }
  .flow-lead{ font-size:15px; margin-bottom:26px; }
  .flow-list{ gap:16px; padding-left:8px; }
  .flow-list::before{ left:30px; }

  .flow-step{
    padding:16px 24px 16px 26px;
    border-radius:18px;
    transition:background .2s ease, box-shadow .2s ease, transform .2s ease;
  }
  .flow-step:hover{
    background:#faf8f5;
    box-shadow:0 14px 32px rgba(0,0,0,0.04);
    transform:translateY(-2px);
  }
  .flow-step-num{ width:34px; height:34px; font-size:12px; }
  .flow-step-title{ font-size:17px; }
  .flow-step-body p{ font-size:14px; }
}

/* ======================================================
   REASONS
====================================================== */
.reason-section{ background:#fff; }
.reason-inner{ width:min(92%,1100px); margin:0 auto; }

.reason-eyebrow{
  font-size:11px;
  letter-spacing:.22em;
  color:#8e8e8e;
  margin-bottom:14px;
  text-transform:uppercase;
}
.reason-title{
  font-size:22px;
  line-height:1.55;
  margin:0 0 12px;
  text-wrap:balance;
}
.reason-lead{
  font-size:14px;
  line-height:1.9;
  color:#555;
  margin:0 0 22px;
  max-width:820px;
}

.reason-grid{ display:grid; gap:12px; }

.reason-item{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px 16px 14px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.reason-item:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 46px rgba(0,0,0,.08);
  border-color:rgba(211,198,166,.55);
}

.reason-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.12em;
  color:#333;
  background:rgba(211,198,166,.22);
  border:1px solid rgba(211,198,166,.55);
  margin-bottom:10px;
}

.reason-item-title{
  font-size:16px;
  line-height:1.55;
  margin:0 0 8px;
  text-wrap:balance;
}

.reason-item-text{
  font-size:13px;
  line-height:1.95;
  color:#444;
  margin:0;
  word-break:break-word;
}

.reason-item-text.is-collapsed{
  max-height:7.8em;
  overflow:hidden;
  position:relative;
}
.reason-item-text.is-collapsed::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:3.6em;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events:none;
}

.reason-more{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  background:transparent;
  color:#333;
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  transition:background .18s ease, transform .18s ease;
}
.reason-more:hover{ background:rgba(211,198,166,.18); }
.reason-more:active{ transform:translateY(1px); }

.reason-more .icon{
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  line-height:1;
  transition:transform .2s ease, background .2s ease;
}
.reason-item.is-open .reason-more .icon{
  transform:rotate(45deg);
  background:rgba(211,198,166,.35);
  border-color:rgba(211,198,166,.7);
}

@media (min-width:768px){
  .reason-title{ font-size:28px; }
  .reason-lead{ font-size:15px; margin-bottom:26px; }
  .reason-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .reason-item{ padding:18px 18px 16px; border-radius:20px; }
  .reason-item-title{ font-size:17px; }
  .reason-item-text{ font-size:14px; }
}
@media (min-width:1024px){
  .reason-grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
}

/* ======================================================
   FINAL CTA
====================================================== */
.cta-final{
  background:linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

.cta-final-inner{
  width:min(92%,980px);
  margin:0 auto;
  padding:26px 18px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,0.06);
  background:rgba(255,255,255,0.92);
  box-shadow:0 18px 48px rgba(0,0,0,0.08);
  backdrop-filter:blur(10px);
}

.cta-final-title{
  font-size:20px;
  line-height:1.55;
  margin:0 0 10px;
  text-wrap:balance;
}

.cta-final-lead{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin:0 0 18px;
  max-width:740px;
}

.cta-btn-wrap{
  display:grid;
  gap:10px;
  margin-top:6px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:12px 16px;
  font-size:14px;
  line-height:1;
  border:1px solid rgba(0,0,0,0.10);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}
.cta-btn.main{
  background:#111827;
  color:#fff;
  border-color:rgba(17,24,39,0.95);
  box-shadow:0 14px 30px rgba(17,24,39,0.18);
}
.cta-btn.main:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(17,24,39,0.24);
}
.cta-btn.sub{
  background:#fff;
  color:#111827;
}
.cta-btn.sub:hover{
  background:rgba(211,198,166,0.18);
  border-color:rgba(211,198,166,0.75);
  transform:translateY(-1px);
}

.cta-final-note{
  margin:14px 0 0;
  font-size:12px;
  line-height:1.8;
  color:#7b7b7b;
}

@media (min-width:768px){
  .cta-final-inner{ padding:34px 34px; }
  .cta-final-title{ font-size:26px; margin-bottom:12px; }
  .cta-final-lead{ font-size:15px; margin-bottom:20px; }

  .cta-btn-wrap{
    grid-template-columns:1.2fr .8fr;
    gap:12px;
    align-items:center;
    max-width:720px;
  }
  .cta-btn{ padding:13px 18px; font-size:15px; }
}

.cta-btn:focus-visible{
  outline:2px solid rgba(211,198,166,0.85);
  outline-offset:3px;
}
