@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --bo-bg:#ffffff;
  --bo-ink:#111111;
  --bo-muted:#757575;
  --bo-soft:#f7f7f5;
  --bo-line:#e8e8e8;
  --bo-gold:#b88a4a;
  --bo-gold-dark:#8f6f44;
  --bo-image:url('/images/bali-otthon-eyecatcher.jpg');
  --bo-pad-x:clamp(18px, 3.8vw, 48px);
  --bo-header-gap:clamp(16px, 2.4vw, 30px);
  --bo-headline:'Playfair Display', Georgia, serif;
  --bo-ui:'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bo-slice-h:clamp(14px, 2.35vh, 22px);
  --bo-bar-h:clamp(8px, 1.2vh, 11px);
}

.bo-shell,
.bo-shell *{box-sizing:border-box}
.bo-shell{
  min-height:100vh;
  background:var(--bo-bg);
  color:var(--bo-ink);
  font-family:var(--bo-ui);
}
.bo-shell a{color:inherit;text-decoration:none}

.bo-site-header{
  display:grid;
  grid-template-columns:minmax(180px, 16%) 1fr;
  gap:var(--bo-header-gap);
  padding:clamp(14px, 2.2vw, 28px) var(--bo-pad-x) 10px;
  align-items:stretch;
  background:#fff;
}

.bo-logo-card{
  height:180px;
  max-height:180px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#fff;
  overflow:hidden;
  transition:transform .25s ease;
}
.bo-logo-card:hover{transform:translateY(-2px)}
.bo-logo-img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:180px;
  object-fit:contain;
}

.bo-header-main{
  display:grid;
  grid-template-rows:1fr auto;
  gap:12px;
  min-width:0;
}

.bo-claim{
  min-height:180px;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:16px clamp(18px, 4vw, 70px);
}
.bo-claim-inner{
  width:min(760px, 78%);
  margin:0 auto;
}
.bo-claim-kicker,
.bo-section-kicker{
  margin:0 0 10px;
  color:#8a7d70;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:11px;
  font-weight:700;
}
.bo-claim-kicker{
  margin-bottom:8px;
  font-size:clamp(10px, 1vw, 12px);
}
.bo-claim h1{
  margin:0;
  font-family:var(--bo-headline);
  font-weight:600;
  font-size:clamp(31px, 4.3vw, 59px);
  line-height:.92;
  letter-spacing:.01em;
}

.bo-nav-toggle{display:none}
.bo-primary-nav{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(18px, 2.8vw, 42px);
  padding:0;
  background:#fff;
  font-size:clamp(11px, 1.2vw, 14px);
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  white-space:nowrap;
}
.bo-primary-nav a{position:relative;color:#222;transition:color .22s ease}
.bo-primary-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-7px;
  height:1px;
  background:var(--bo-gold);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .25s ease;
}
.bo-primary-nav a:hover{color:var(--bo-gold-dark)}
.bo-primary-nav a:hover::after{transform:scaleX(1);transform-origin:left}

.bo-main{display:block;background:#fff}
.bo-eyecatcher{
  position:relative;
  width:100%;
  height:min(52vh, 520px);
  min-height:360px;
  margin-top:8px;
  overflow:hidden;
  isolation:isolate;
}
.bo-scene{
  position:absolute;
  inset:0;
  background-image:var(--bo-image);
  background-size:cover;
  background-position:center center;
}
.bo-scene-color{z-index:0}
.bo-scene-bw{
  position:absolute;
  inset:0;
  z-index:1;
  filter:grayscale(1) brightness(1.28) contrast(.92);
  opacity:.54;
}
.bo-scene-bw::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.38);
}
.bo-scene-bw-top{clip-path:inset(0 0 calc(100% - var(--bo-slice-h)) 0)}
.bo-scene-bw-bottom{clip-path:inset(calc(100% - var(--bo-slice-h)) 0 0 0)}
.bo-scene-bar{
  position:absolute;
  left:0;
  right:0;
  height:var(--bo-bar-h);
  background:rgba(0,0,0,.34);
  z-index:2;
}
.bo-scene-bar-top{top:var(--bo-slice-h)}
.bo-scene-bar-bottom{bottom:var(--bo-slice-h)}
.bo-image-caption{
  position:absolute;
  left:var(--bo-pad-x);
  bottom:calc(var(--bo-slice-h) + var(--bo-bar-h) + clamp(22px, 3.5vw, 38px));
  z-index:3;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:16px 20px;
  display:flex;
  align-items:center;
  gap:18px;
  box-shadow:0 14px 36px rgba(0,0,0,.10);
}
.bo-image-caption p{
  margin:0;
  font-family:var(--bo-headline);
  font-size:clamp(22px, 2.7vw, 34px);
  line-height:1;
}
.bo-image-caption a{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:800;
  border-left:1px solid rgba(0,0,0,.18);
  padding-left:18px;
}

.bo-category-section{
  padding:clamp(34px, 6vw, 70px) var(--bo-pad-x) clamp(28px, 4vw, 52px);
  background:#fff;
}
.bo-section-intro{
  text-align:center;
  max-width:760px;
  margin:0 auto clamp(24px, 3vw, 34px);
}
.bo-section-intro h2{
  margin:0;
  font-family:var(--bo-headline);
  font-size:clamp(30px, 3.4vw, 46px);
  line-height:1.02;
  font-weight:600;
}
.bo-category-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:clamp(16px, 2.2vw, 24px);
  max-width:1200px;
  margin:0 auto;
}
.bo-category-card{
  background:linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
  border:1px solid rgba(0,0,0,.05);
  padding:26px 24px;
  min-height:228px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}
.bo-category-card h3{
  margin:0 0 12px;
  font-family:var(--bo-headline);
  font-size:clamp(24px, 2vw, 30px);
  line-height:1.05;
  font-weight:600;
}
.bo-category-card p{
  margin:0 0 18px;
  color:#666;
  line-height:1.75;
  font-size:14px;
}
.bo-category-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:800;
  color:var(--bo-gold-dark);
}
.bo-category-card a::after{content:"→";font-size:13px;line-height:1}

.bo-story-section{
  padding:clamp(8px, 1.5vw, 14px) var(--bo-pad-x) clamp(54px, 7vw, 86px);
  background:#fff;
}
.bo-story-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:clamp(20px, 3vw, 36px);
  max-width:1200px;
  margin:0 auto;
}
.bo-story-card{
  background:linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  border:1px solid rgba(0,0,0,.05);
  padding:clamp(24px, 3vw, 34px);
  box-shadow:0 10px 25px rgba(0,0,0,.035);
}
.bo-story-card h2{
  margin:0 0 16px;
  font-family:var(--bo-headline);
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.05;
  font-weight:600;
}
.bo-story-card p{
  margin:0 0 14px;
  color:#646464;
  line-height:1.84;
  font-size:15px;
}

.bo-trust-section{
  padding:0 var(--bo-pad-x) clamp(56px, 7vw, 82px);
  background:#fff;
}
.bo-trust-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(14px, 2vw, 20px);
}
.bo-trust-item{
  border-top:1px solid rgba(0,0,0,.08);
  padding-top:18px;
}
.bo-trust-item h3{
  margin:0 0 10px;
  font-family:var(--bo-headline);
  font-size:clamp(22px, 1.9vw, 28px);
  line-height:1.08;
  font-weight:600;
}
.bo-trust-item p{
  margin:0;
  color:#707070;
  font-size:14px;
  line-height:1.72;
}

.bo-site-footer{
  display:flex;
  justify-content:center;
  padding:clamp(28px, 4vw, 48px) var(--bo-pad-x) clamp(26px, 4vw, 42px);
  border-top:1px solid rgba(0,0,0,.05);
  background:#fff;
}
.bo-footer-inner{
  width:min(730px, 100%);
  text-align:center;
  background:#fff;
  padding:14px 22px;
}
.bo-footer-brand{
  margin:0 0 10px;
  font-family:var(--bo-headline);
  font-size:clamp(28px, 3vw, 42px);
  line-height:1;
}
.bo-site-footer nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 24px;
  color:#8a8a8a;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}

@media (max-width: 900px){
  .bo-site-header{
    grid-template-columns:1fr;
    padding-bottom:6px;
  }
  .bo-logo-card,.bo-claim{min-height:120px}
  .bo-logo-card{height:120px;max-height:120px}
  .bo-logo-img{max-height:110px}
  .bo-header-main{grid-template-rows:auto auto}
  .bo-claim-inner{width:min(100%, 720px)}
  .bo-nav-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:40px;
    background:#fff;
    border:0;
    font:700 12px/1 var(--bo-ui);
    letter-spacing:.18em;
    text-transform:uppercase;
  }
  .bo-primary-nav{
    display:none;
    justify-content:center;
    flex-wrap:wrap;
    white-space:normal;
    padding:10px 0 0;
  }
  .bo-primary-nav.is-open{display:flex}
  .bo-eyecatcher{
    height:min(48vh, 470px);
    min-height:320px;
  }
  .bo-image-caption{
    left:18px;
    right:18px;
    bottom:calc(var(--bo-slice-h) + var(--bo-bar-h) + 14px);
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .bo-image-caption a{border-left:0;padding-left:0;border-top:1px solid rgba(0,0,0,.16);padding-top:10px}
  .bo-category-grid{grid-template-columns:repeat(2, minmax(0, 1fr));max-width:820px}
  .bo-category-card{min-height:auto}
  .bo-story-grid{grid-template-columns:1fr;max-width:820px}
  .bo-trust-grid{grid-template-columns:repeat(2, minmax(0, 1fr));max-width:820px}
}

@media (max-width: 560px){
  :root{
    --bo-slice-h:10px;
    --bo-bar-h:8px;
  }
  .bo-site-header{padding-left:12px;padding-right:12px}
  .bo-logo-img{max-width:100%;max-height:110px}
  .bo-claim-inner{width:100%}
  .bo-claim h1{font-size:clamp(31px, 9.2vw, 42px)}
  .bo-claim-kicker{letter-spacing:.14em}
  .bo-eyecatcher{
    height:min(50vh, 420px);
    min-height:300px;
  }
  .bo-scene{background-position:58% center}
  .bo-site-footer{padding-left:12px;padding-right:12px}
  .bo-category-grid{grid-template-columns:1fr;max-width:100%}
  .bo-story-section{padding-top:0;padding-bottom:32px}
  .bo-story-card p{font-size:14px;line-height:1.75}
  .bo-trust-grid{grid-template-columns:1fr;max-width:100%}
  .bo-trust-section{padding-bottom:44px}
}

.bo-primary-nav .bo-submenu,
.bo-skel-nav .bo-submenu{
  position:absolute;
  top:100%;
  left:50%;
  z-index:1001;
  min-width:230px;
  padding:10px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 22px 48px rgba(0,0,0,.14);
  transform:translateX(-50%) translateY(8px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}

.bo-primary-nav .bo-nav-item::after,
.bo-skel-nav .bo-nav-item::after{
  content:"";
  position:absolute;
  left:-12px;
  right:-12px;
  top:100%;
  height:18px;
  display:block;
}

.bo-trust-link{
  color:inherit;
  text-decoration:none;
  display:inline-block;
  transition:color .18s ease, transform .18s ease;
}

.bo-trust-link:hover,
.bo-trust-link:focus-visible{
  color:#8f6f44;
  transform:translateY(-1px);
}
